@@ -4060,23 +4060,22 @@ class BTerm(TermWithCoefficient):
4060
4060
sage: G = GrowthGroup('x^ZZ * y^ZZ')
4061
4061
sage: T = TermMonoid('B', growth_group=G, coefficient_ring=ZZ)
4062
4062
sage: x, y = G('x'), G('y')
4063
+
4064
+ This is a term bounded by `5|x|^2` for `|x| \ge 3`::
4065
+
4063
4066
sage: T(x^2, coefficient=5, valid_from={'x': 3})
4064
4067
B(5*x^2, x >= 3)
4065
4068
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`::
4068
4070
4069
4071
sage: T(x^3, coefficient=42, valid_from={'x': 15, 'y': 15})
4070
4072
B(42*x^3, x >= 15, y >= 15)
4071
4073
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`::
4074
4075
4075
4076
sage: T(x^3*y^2, coefficient=42, valid_from={'x': 10, 'y': 20})
4076
4077
B(42*x^3*y^2, x >= 10, y >= 20)
4077
4078
4078
- This is a term bounded by `42 |x|^3 |y|^2` for `|x| \ge 10` and `|y| \ge 20`.
4079
-
4080
4079
"""
4081
4080
def __init__ (self , parent , growth , coefficient , valid_from ):
4082
4081
r"""
@@ -4171,7 +4170,7 @@ def _repr_(self, latex=False):
4171
4170
4172
4171
def _latex_ (self ):
4173
4172
r"""
4174
- A LaTeX-representation string for this `B` -term.
4173
+ A LaTeX-representation string for this B -term.
4175
4174
4176
4175
OUTPUT:
4177
4176
@@ -4303,7 +4302,7 @@ def _absorb_(self, other):
4303
4302
4304
4303
class BTermMonoid (TermWithCoefficientMonoid ):
4305
4304
r"""
4306
- Parent for asymptotic big `B` -terms.
4305
+ Parent for asymptotic B -terms.
4307
4306
4308
4307
INPUT:
4309
4308
0 commit comments