|
Calling Sequence
|
|
GetOrder(s)
GetOrder(s, bnd)
|
|
Parameters
|
|
s
|
-
|
Puiseux series in one variable generated by this package
|
bnd
|
-
|
nonnegative integer or infinity
|
|
|
|
|
Description
|
|
•
|
The GetOrder command computes the order of a Puiseux series in one variable, s.
|
•
|
A univariate Puiseux series can be written as for some , . Then the order of s is defined as .
|
•
|
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.
|
|
|
Examples
|
|
>
|
|
Create two Puiseux series.
>
|
|
| (1) |
>
|
|
| (2) |
>
|
|
| (3) |
We get the order of , , and .
If we try to find out the order of , initially it will not work. We need to specify a higher value for the bound.
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
| |
|
|
Compatibility
|
|
•
|
The MultivariatePowerSeries[GetOrder] command was introduced in Maple 2023.
|
|
|
|