Skip to content

Commit

Permalink
changes according to referee's comments
Browse files Browse the repository at this point in the history
  • Loading branch information
fchapoton committed Feb 15, 2023
1 parent f515c7c commit 8471298
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
3 changes: 3 additions & 0 deletions src/doc/en/reference/references/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1180,6 +1180,9 @@ REFERENCES:
moduli spaces to Feynman integrals*, in Contemporary Mathematics
vol 539, pages 27-52, 2011.
.. [Bro2013] Francis Brown, *Single-valued motivic periods and multiple zeta
values*, Forum Math. Sigma 2 (2014), :doi:`10.1017/fms.2014.18`.
.. [Bro2016] \A.E. Brouwer,
Personal communication, 2016.
Expand Down
8 changes: 7 additions & 1 deletion src/sage/modular/multiple_zeta.py
Original file line number Diff line number Diff line change
Expand Up @@ -1083,9 +1083,15 @@ def iterated(self):
return self.parent().iterated(self)

def single_valued(self):
"""
r"""
Return the single-valued version of ``self``.
This is the projection map onto the sub-algebra of
single-valued motivic multiple zeta values, as defined by
F. Brown in [Bro2013]_.
This morphism of algebras sends in particular `\zeta(2)` to `0`.
EXAMPLES::
sage: M = Multizetas(QQ)
Expand Down
6 changes: 3 additions & 3 deletions src/sage/modular/multiple_zeta_F_algebra.py
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,7 @@ def without_f2(self):
sage: from sage.modular.multiple_zeta_F_algebra import F_algebra
sage: F = F_algebra(QQ)
sage: t = 4*F("35")+F("27")
sage: t = 4 * F("35") + F("27")
sage: t.without_f2()
4*f3f5
"""
Expand All @@ -731,10 +731,10 @@ def single_valued(self):
sage: from sage.modular.multiple_zeta_F_algebra import F_algebra
sage: F = F_algebra(QQ)
sage: t = 4*F("2")+F("3")
sage: t = 4 * F("2") + F("3")
sage: t.single_valued()
2*f3
sage: t = 4*F("35")+F("27")
sage: t = 4 * F("35") + F("27")
sage: t.single_valued()
8*f3f5 + 8*f5f3
"""
Expand Down

0 comments on commit 8471298

Please sign in to comment.