MultivariatePowerSeries
GetOrder
compute the order of a Puiseux series in one variable
Calling Sequence
Parameters
Description
Examples
Compatibility
GetOrder(s)
GetOrder(s, bnd)
s
-
Puiseux series in one variable generated by this package
bnd
nonnegative integer or infinity
The GetOrder command computes the order of a Puiseux series in one variable, s.
A univariate Puiseux series can be written as ∑m=M∞⁡ammn for some M∈ℤ, n∈ℕ. Then the order of s is defined as min⁡mn|am≠0.
If the order cannot be determined from the analytic expression for s, the command examines subsequent homogeneous components from the internal power series of s. If it has not found any nonzero components after examining bnd + 1 such components (degrees 0 through bnd), the command gives up and signals an error. The default value for bnd is 10.
When using the MultivariatePowerSeries package, do not assign anything to the variables occurring in the power series, Puiseux series, and univariate polynomials over these series. If you do, you may see invalid results.
with⁡MultivariatePowerSeries:
Create two Puiseux series.
p≔PowerSeries⁡d↦−ud,variables=u
p≔PowⅇrSⅇrⅈⅇs: 1+…
s≔PuiseuxSeries⁡p,u=x2
s≔PuⅈsⅇuxSⅇrⅈⅇs: 1+…
s2≔PuiseuxSeries⁡p,u=x23−1
s2≔PuⅈsⅇuxSⅇrⅈⅇs: 0+…
We get the order of s, s2, s−1 and x2+s−1.
GetOrder⁡s
0
GetOrder⁡s2
23
GetOrder⁡s−1
2
GetOrder⁡s−1−x2
4
If we try to find out the order of s212, initially it will not work. We need to specify a higher value for the bound.
GetOrder⁡s212
Error, (in MultivariatePowerSeries:-GetOrder) the order of Object(MultivariatePowerSeries:-PuiseuxSeriesObject,Object(MultivariatePowerSeries:-PowerSeriesObject,Array(0..10, [0,0,0,0,0,0,0,0,0,0,0]),10,MultivariatePowerSeries:-PowerSeriesObject:-mul_gen,{u},ancestors),[x],[u],[[2/3]],[x = 0]) cannot be determined with the current bound 10
GetOrder⁡s212,15
8
The MultivariatePowerSeries[GetOrder] command was introduced in Maple 2023.
For more information on Maple 2023 changes, see Updates in Maple 2023.
See Also
PuiseuxSeries
Download Help Document