Skip to content

Commit f631489

Browse files
committed
Trac #31933. Items: 90, 91, 92: minor corrections in the documentation
1 parent 2e46c20 commit f631489

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

src/sage/rings/asymptotic/term_monoid.py

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4060,23 +4060,22 @@ class BTerm(TermWithCoefficient):
40604060
sage: G = GrowthGroup('x^ZZ * y^ZZ')
40614061
sage: T = TermMonoid('B', growth_group=G, coefficient_ring=ZZ)
40624062
sage: x, y = G('x'), G('y')
4063+
4064+
This is a term bounded by `5|x|^2` for `|x| \ge 3`::
4065+
40634066
sage: T(x^2, coefficient=5, valid_from={'x': 3})
40644067
B(5*x^2, x >= 3)
40654068
4066-
This is a term bounded by `5|x|^2` for `|x| \ge 3`.
4067-
::
4069+
This is a term bounded by `42|x|^3` for `|x| \ge 15` and `|y| \ge 15`::
40684070
40694071
sage: T(x^3, coefficient=42, valid_from={'x': 15, 'y': 15})
40704072
B(42*x^3, x >= 15, y >= 15)
40714073
4072-
This is a term bounded by `42|x|^3` for `|x| \ge 15` and `|y| \ge 15`.
4073-
::
4074+
This is a term bounded by `42 |x|^3 |y|^2` for `|x| \ge 10` and `|y| \ge 20`::
40744075
40754076
sage: T(x^3*y^2, coefficient=42, valid_from={'x': 10, 'y': 20})
40764077
B(42*x^3*y^2, x >= 10, y >= 20)
40774078
4078-
This is a term bounded by `42 |x|^3 |y|^2` for `|x| \ge 10` and `|y| \ge 20`.
4079-
40804079
"""
40814080
def __init__(self, parent, growth, coefficient, valid_from):
40824081
r"""
@@ -4171,7 +4170,7 @@ def _repr_(self, latex=False):
41714170

41724171
def _latex_(self):
41734172
r"""
4174-
A LaTeX-representation string for this `B`-term.
4173+
A LaTeX-representation string for this B-term.
41754174
41764175
OUTPUT:
41774176
@@ -4303,7 +4302,7 @@ def _absorb_(self, other):
43034302

43044303
class BTermMonoid(TermWithCoefficientMonoid):
43054304
r"""
4306-
Parent for asymptotic big `B`-terms.
4305+
Parent for asymptotic B-terms.
43074306
43084307
INPUT:
43094308

0 commit comments

Comments
 (0)