|
Calling Sequence
|
|
UnivariatePolynomialOverPowerSeries(lp, v)
|
UnivariatePolynomialOverPuiseuxSeries(lp, v)
|
UnivariatePolynomialOverPowerSeries(p, v)
|
UnivariatePolynomialOverPuiseuxSeries(p, v)
|
UnivariatePolynomialOverPowerSeries(r, v)
|
UnivariatePolynomialOverPuiseuxSeries(r, v)
|
UnivariatePolynomialOverPowerSeries(ps, v)
|
UnivariatePolynomialOverPuiseuxSeries(ps, v)
|
UnivariatePolynomialOverPowerSeries(u)
|
UnivariatePolynomialOverPuiseuxSeries(u)
|
UnivariatePolynomialOverPowerSeries(u, v)
|
UnivariatePolynomialOverPuiseuxSeries(u, v)
|
|
|
|
|
Parameters
|
|
lp
|
-
|
list, Array, or Vector of power series or Puiseux series generated by this package
|
v
|
-
|
variable
|
p
|
-
|
polynomial
|
r
|
-
|
rational function where v does not occur in the denominator
|
ps
|
-
|
power series generated by this package
|
u
|
-
|
univariate polynomial over power series generated by this package
|
|
|
|
|
Description
|
|
•
|
The calling sequence UnivariatePolynomialOverPowerSeries(lp, v) creates a univariate polynomial over power series with main variable v and with coefficients that are power series or Puiseux series from lp. The degree of the resulting polynomial is equal to the length of lp minus one. The coefficient of v^(i-1) is the i-th element of lp. In particular, the first element of lp is the constant coefficient. The main variable, v, cannot occur in any of the power series in lp.
|
•
|
The calling sequences UnivariatePolynomialOverPowerSeries(p, v) and UnivariatePolynomialOverPowerSeries(r, v) create univariate polynomials with power series or Puiseux series coefficients. The former returns the same result as UnivariatePolynomialOverPowerSeries(lp, v) where lp := [seq(PowerSeries(coeff(p,v,i)),i=0..degree(p,v))] or lp := [seq(PowerSeries(coeff(p,v,i)),i=0..degree(p,v))]. For the latter, r is a rational function where v only occurs in the numerator; that is, it is a polynomial in v. Hence, the ith coefficient of r with respect to v is well-defined, and indeed we can define the result very similarly: that calling sequence returns the same result as UnivariatePolynomialOverPowerSeries(lp, v) where lp := [seq(PowerSeries(coeff(r,v,i)),i=0..degree(r,v))] or lp := [seq(PowerSeries(coeff(p,v,i)),i=0..degree(p,v))].
|
•
|
The calling sequence UnivariatePolynomialOverPowerSeries(ps, v) creates a univariate polynomial over power series representing ps, with v as its main variable. This is only possible if ps is known to be a polynomial function of v, which is the case if it is independent of v (in which case it is trivially polynomial) or if the analytic expression for ps is known and it is polynomial in v. If neither of the former two cases is true, then an error is raised.
|
•
|
The calling sequence UnivariatePolynomialOverPowerSeries(u, v) copies u. You may omit v in this case, but if you specify it, it must be equal to the main variable of u.
|
•
|
The calling sequences with UnivariatePolynomialOverPuiseuxSeries are exactly the same as their equivalents using UnivariatePolynomialOverPowerSeries; the underlying data structure supports both power series and Puiseux series as the coefficients. The alias UnivariatePolynomialOverPuiseuxSeries was added to clarify the fact that the coefficients can be Puiseux series.
|
•
|
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 a univariate polynomial over power series from a list of power series.
>
|
|
| (1) |
>
|
|
| (3) |
We compute its linear and quadratic truncation. These are defined in terms of the homogeneous degree of the coefficients, ignoring the degree in the main variable.
| (5) |
Create a univariate polynomial over power series from a polynomial and a rational function.
>
|
|
| (7) |
| (8) |
>
|
|
| (9) |
Notice that the following example returns a univariate polynomial with Puiseux series as coefficients.
>
|
|
| (11) |
>
|
|
| (12) |
This happens since the polynomial x^2+x is not invertible as a power series, but it is as a Puiseux series.
The following attempt will not work, because Maple cannot determine that d is polynomial in z (though actually it is).
>
|
|
| (13) |
>
|
|
We define e in the same way as d but specify the analytic expression. Then we can successfully convert it to a univariate polynomial over power series.
>
|
|
| (14) |
>
|
|
| (15) |
To copy k, we can specify the main variable explicitly or omit it. If we specify it explicitly, it has to be z, otherwise we obtain an error:
>
|
|
>
|
|
| (16) |
>
|
|
| (17) |
Create a univariate polynomial over Puiseux series from a list of Puiseux series.
>
|
|
| (18) |
>
|
|
| (20) |
We compute its linear and quadratic truncation. These are defined in terms of the homogeneous degree of the internal power series objects in s coefficients, ignoring the degree in the main variable.
| (21) |
| (22) |
|
|
Compatibility
|
|
•
|
The MultivariatePowerSeries[UnivariatePolynomialOverPowerSeries] command was introduced in Maple 2021.
|
•
|
The r parameter was introduced in Maple 2022.
|
•
|
The MultivariatePowerSeries[UnivariatePolynomialOverPuiseuxSeries] command was introduced in Maple 2023.
|
•
|
The MultivariatePowerSeries[UnivariatePolynomialOverPowerSeries] command was updated in Maple 2023.
|
|
|
|