MultivariatePowerSeries
Degree
degree of a univariate polynomial over power series or over Puiseux series
Calling Sequence
Parameters
Description
Examples
Compatibility
Degree(u)
u
-
univariate polynomial over power series or over Puiseux series generated by this package
Degree(u) returns the syntactic degree of the univariate polynomial over power series or over Puiseux series u with respect to its main variable. That is, it does not test whether the highest degree coefficient is nonzero (because this cannot be done in general); it just returns the highest degree coefficient of the main variable that is specified.
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:
This univariate polynomial over power series is quadratic in its main variable, z.
f≔UnivariatePolynomialOverPowerSeries⁡1+x3⁢y+x⁢y⁢z+1+y⁢z2,z:
Degree⁡f
2
This univariate polynomial over power series is syntactically cubic in its main variable, u, but the coefficient of u3 is 0.
g≔UnivariatePolynomialOverPowerSeries⁡PowerSeries⁡x,PowerSeries⁡y,GeometricSeries⁡x,PowerSeries⁡0,u:
Degree⁡g
3
Create a univariate polynomial over power series from a list of Puiseux series.
h≔UnivariatePolynomialOverPuiseuxSeries⁡PuiseuxSeries⁡1,PuiseuxSeries⁡0,PuiseuxSeries⁡x,x=x13,PuiseuxSeries⁡y,y=y12,PuiseuxSeries⁡x+y1+x+y,x=x⁢y12,y=x⁢y−1,z
h≔UnⅈvarⅈatⅇPolynomⅈalOvⅇrPuⅈsⅇuxSⅇrⅈⅇs: 1+0⁢z+x13⁢z2+y⁢z3+0+…⁢z4
We verify the degree of h with the Degree command.
Degree⁡h
4
The MultivariatePowerSeries[Degree] command was introduced in Maple 2021.
For more information on Maple 2021 changes, see Updates in Maple 2021.
The MultivariatePowerSeries[Degree] command was updated in Maple 2023.
See Also
MainVariable
PowerSeries
PuiseuxSeries
UnivariatePolynomialOverPowerSeries
Download Help Document