powseries
reversion
reversion of formal power series
Calling Sequence
Parameters
Description
Examples
reversion(a, b)
a
-
formal power series
b
(optional) formal power series
The function reversion(a, b) returns the formal power series that is the reversion of a with respect to b. If b is not specified then it is assumed to be the formal power series with one nonzero coefficient, b⁡1=1.
Since reversion is the inverse of composition, composition of the result into a will give b.
Note that a⁡0 must be 0, a⁡1 must be 1, and b⁡0 must be 0. If not, the reversion is not well defined and reversion returns an error message.
The command with(powseries,reversion) allows the use of the abbreviated form of this command.
with⁡powseries:
powcreate⁡t⁡n=t⁡n−1n,t⁡0=0,t⁡1=1:
powcreate⁡v⁡n=v⁡n−12,v⁡0=0,v⁡1=1:
s≔reversion⁡t,v:
tpsform⁡s,x,11
x+112⁢x3+180⁢x5+1448⁢x7+12304⁢x9+O⁡x11
ts≔compose⁡t,s:
tpsform⁡ts,x
x+12⁢x2+14⁢x3+18⁢x4+116⁢x5+O⁡x6
tpsform⁡v,x
See Also
solve/series
Download Help Document