MultivariatePowerSeries
GetPuiseuxSeriesOrder
get the variable order of a Puiseux series
Calling Sequence
Parameters
Description
Examples
Compatibility
GetPuiseuxSeriesOrder(s)
s
-
Puiseux series generated by this package
This command returns the variable order of a Puiseux series.
A Puiseux series is a power series in rational powers of the variables. More precisely:
Let X≔x1,…,xp and U≔u1,…,um be ordered lists of variables.
Let R≔r1,…,rm be a list of m grevlex-positive p-dimensional rational vectors.
Let e≔e1,…,ep be a point in ℚp.
Let g⁡U≔∑n=0∞gn⁡U be a multivariate power series in U with homogeneous components gn⁡U.
For any v=v1,…,vq in ℚq and any list Y=y1,…,yq, we write Yv for y1v1⁢…⁢yqvq. Moreover, we write XR for the list Xr1,…,Xrm of m products of powers of the variables in X. Then P≔Xe⁢g⁡XR is a Puiseux series, and every Puiseux series can be written in this way. This can be understood as evaluating g⁡U at ui=Xri and then multiplying the result by Xe.
We call g the internal power series of the Puiseux series P; X the variable order of P; U the variable order of g; and R the rays of P. The rays generate the cone containing the support of P, meaning the set of exponent vectors of X that occur in P with a nonzero coefficient, as in the paper by Monforte and Kauers (see References). The vertex of this cone is e.
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⁡1+u⁢v;X≔x,y;U≔u,v;R≔1,0,1,−1;E≔x=−5,y=3
p≔PowⅇrSⅇrⅈⅇs: 1+u⁢v
X≔x,y
U≔u,v
R≔1,0,1,−1
E≔x=−5,y=3
s1≔PuiseuxSeries⁡p,X,U,R,E
s1≔PuⅈsⅇuxSⅇrⅈⅇs of x2y+1⁢y3x5 : y3x5+y2x3
s2≔PuiseuxSeries⁡11+u⁢v,u=x⁢z0⁢w,v=x⁢z−1,x=5,z=−3
s2≔PuⅈsⅇuxSⅇrⅈⅇs of x5x2⁢wz+1⁢z3 : x5z3+…
We get the variable order of s1.
GetPuiseuxSeriesOrder⁡s1
x,y
When we create a Puiseux series using a list of equations, Maple internally chooses a Puiseux series order. Now, we get the variable order of s2.
GetPuiseuxSeriesOrder⁡s2
w,x,z
Next, notice that after adding s1 and s2, the new variable order is a mix between the orders of s1 and s2.
s3≔s1+s2
s3≔PuⅈsⅇuxSⅇrⅈⅇs of x2y+1+x10x2⁢wz+1⁢z3⁢y3⁢y3x5 : y3x5+…
GetPuiseuxSeriesOrder⁡s3
w,x,y,z
The MultivariatePowerSeries[GetPuiseuxSeriesOrder] command was introduced in Maple 2023.
For more information on Maple 2023 changes, see Updates in Maple 2023.
See Also
PuiseuxSeries
Download Help Document