Skip to content

Commit 875738a

Browse files
committed
changes according to referee's comments
1 parent 362a0af commit 875738a

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

src/doc/en/reference/references/index.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1180,6 +1180,9 @@ REFERENCES:
11801180
moduli spaces to Feynman integrals*, in Contemporary Mathematics
11811181
vol 539, pages 27-52, 2011.
11821182
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+
11831186
.. [Bro2016] \A.E. Brouwer,
11841187
Personal communication, 2016.
11851188

src/sage/modular/multiple_zeta.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1083,9 +1083,15 @@ def iterated(self):
10831083
return self.parent().iterated(self)
10841084

10851085
def single_valued(self):
1086-
"""
1086+
r"""
10871087
Return the single-valued version of ``self``.
10881088
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+
10891095
EXAMPLES::
10901096
10911097
sage: M = Multizetas(QQ)

src/sage/modular/multiple_zeta_F_algebra.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,7 @@ def without_f2(self):
716716
717717
sage: from sage.modular.multiple_zeta_F_algebra import F_algebra
718718
sage: F = F_algebra(QQ)
719-
sage: t = 4*F("35")+F("27")
719+
sage: t = 4 * F("35") + F("27")
720720
sage: t.without_f2()
721721
4*f3f5
722722
"""
@@ -731,10 +731,10 @@ def single_valued(self):
731731
732732
sage: from sage.modular.multiple_zeta_F_algebra import F_algebra
733733
sage: F = F_algebra(QQ)
734-
sage: t = 4*F("2")+F("3")
734+
sage: t = 4 * F("2") + F("3")
735735
sage: t.single_valued()
736736
2*f3
737-
sage: t = 4*F("35")+F("27")
737+
sage: t = 4 * F("35") + F("27")
738738
sage: t.single_valued()
739739
8*f3f5 + 8*f5f3
740740
"""

0 commit comments

Comments
 (0)