Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit 63695d7

Browse files
committed
more fine-tuning details in MZV
1 parent 7661288 commit 63695d7

File tree

2 files changed

+7
-12
lines changed

2 files changed

+7
-12
lines changed

src/sage/modular/multiple_zeta.py

-1
Original file line numberDiff line numberDiff line change
@@ -2614,7 +2614,6 @@ def rho_inverse(elt):
26142614
sage: from sage.modular.multiple_zeta_F_algebra import F_algebra
26152615
sage: A = F_algebra(QQ)
26162616
sage: f = A.custom_gen
2617-
sage: W = A.basis().keys()
26182617
sage: rho_inverse(f(3))
26192618
ζ(3)
26202619
sage: rho_inverse(f(9))

src/sage/modular/multiple_zeta_F_algebra.py

+7-11
Original file line numberDiff line numberDiff line change
@@ -312,11 +312,11 @@ def one_basis(self):
312312

313313
def product_on_basis(self, pw1, pw2):
314314
r"""
315-
Return the product of basis elements ``w1`` and ``w2``.
315+
Return the product of basis elements ``pw1`` and ``pw2``.
316316
317317
INPUT:
318318
319-
- ``w1``, ``w2`` -- basis elements
319+
- ``pw1``, ``pw2`` -- basis elements
320320
321321
EXAMPLES::
322322
@@ -333,13 +333,13 @@ def product_on_basis(self, pw1, pw2):
333333

334334
def half_product_on_basis(self, pw1, pw2):
335335
r"""
336-
Return the half product of basis elements ``w1`` and ``w2``.
336+
Return the half product of basis elements ``pw1`` and ``pw2``.
337337
338338
This is an extension of the zinbiel product of the shuffle algebra.
339339
340340
INPUT:
341341
342-
- ``w1``, ``w2`` -- Basis elements
342+
- ``pw1``, ``pw2`` -- Basis elements
343343
344344
EXAMPLES::
345345
@@ -408,7 +408,7 @@ def custom_gen(self, i):
408408
409409
INPUT:
410410
411-
- ``i`` -- a nonnegative integer
411+
- ``i`` -- a nonnegative integer (at least 2)
412412
413413
If ``i`` is odd, this returns a single generator `f_i` of the free
414414
shuffle algebra.
@@ -463,7 +463,7 @@ def some_elements(self):
463463

464464
def coproduct_on_basis(self, pw):
465465
r"""
466-
Return the coproduct of the basis element indexed by the word ``w``.
466+
Return the coproduct of the basis element indexed by the pair ``pw``.
467467
468468
The coproduct is given by deconcatenation on the shuffle part,
469469
and extended by the value
@@ -474,7 +474,7 @@ def coproduct_on_basis(self, pw):
474474
475475
INPUT:
476476
477-
- ``w`` -- a word
477+
- ``pw`` -- an index
478478
479479
EXAMPLES::
480480
@@ -695,10 +695,6 @@ def homogeneous_to_vector(self):
695695
696696
This is using a fixed enumeration of the basis.
697697
698-
INPUT:
699-
700-
an homogeneous element of :func:`F_ring` over some base ring
701-
702698
OUTPUT:
703699
704700
a vector with coefficients in the base ring

0 commit comments

Comments
 (0)