File tree Expand file tree Collapse file tree 3 files changed +13
-4
lines changed
doc/en/reference/references Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -1180,6 +1180,9 @@ REFERENCES:
1180
1180
moduli spaces to Feynman integrals *, in Contemporary Mathematics
1181
1181
vol 539, pages 27-52, 2011.
1182
1182
1183
+ .. [Bro2013 ] Francis Brown, *Single-valued motivic periods and multiple zeta
1184
+ values *, Forum Math. Sigma 2 (2014), :doi: `10.1017/fms.2014.18 `.
1185
+
1183
1186
.. [Bro2016 ] \A .E. Brouwer,
1184
1187
Personal communication, 2016.
1185
1188
Original file line number Diff line number Diff line change @@ -1083,9 +1083,15 @@ def iterated(self):
1083
1083
return self .parent ().iterated (self )
1084
1084
1085
1085
def single_valued (self ):
1086
- """
1086
+ r """
1087
1087
Return the single-valued version of ``self``.
1088
1088
1089
+ This is the projection map onto the sub-algebra of
1090
+ single-valued motivic multiple zeta values, as defined by
1091
+ F. Brown in [Bro2013]_.
1092
+
1093
+ This morphism of algebras sends in particular `\zeta(2)` to `0`.
1094
+
1089
1095
EXAMPLES::
1090
1096
1091
1097
sage: M = Multizetas(QQ)
Original file line number Diff line number Diff line change @@ -716,7 +716,7 @@ def without_f2(self):
716
716
717
717
sage: from sage.modular.multiple_zeta_F_algebra import F_algebra
718
718
sage: F = F_algebra(QQ)
719
- sage: t = 4* F("35")+ F("27")
719
+ sage: t = 4 * F("35") + F("27")
720
720
sage: t.without_f2()
721
721
4*f3f5
722
722
"""
@@ -731,10 +731,10 @@ def single_valued(self):
731
731
732
732
sage: from sage.modular.multiple_zeta_F_algebra import F_algebra
733
733
sage: F = F_algebra(QQ)
734
- sage: t = 4* F("2")+ F("3")
734
+ sage: t = 4 * F("2") + F("3")
735
735
sage: t.single_valued()
736
736
2*f3
737
- sage: t = 4* F("35")+ F("27")
737
+ sage: t = 4 * F("35") + F("27")
738
738
sage: t.single_valued()
739
739
8*f3f5 + 8*f5f3
740
740
"""
You can’t perform that action at this time.
0 commit comments