>
|
|
Create a power series from a polynomial, determine its inverse, and find its truncation to homogeneous degree 5.
>
|
|
| (1) |
| (2) |
| (3) |
We can also compute by specifying the rational function that is the inverse of the polynomial used to define .
>
|
|
| (4) |
| (5) |
Create a power series for the expression .
| (6) |
| (7) |
Create a power series for an elliptic integral of the third kind.
>
|
|
| (8) |
| (9) |
Create a power series from a procedure and find its truncation to homogeneous degree 3.
>
|
bproc := proc(d) local s; s := 2*x + y; return expand(s^d); end proc:
|
>
|
|
| (10) |
| (11) |
Create a power series from an anonymous function, specifying the analytic form of that power series. Find the truncations to homogeneous degrees 5 and 10.
>
|
|
| (12) |
| (13) |
| (14) |
Create a power series from a univariate polynomial over power series.
>
|
|
The truncation to homogeneous degree 2 is given by truncating each coefficient to that degree, ignoring s main variable, .
| (15) |
If we convert to a power series, its truncation is defined by considering the homogeneous degree in all variables, including .
| (16) |
Copy a power series.
| (18) |