powseries
compose
composition of formal power series
Calling Sequence
Parameters
Description
Examples
compose(a, b)
a, b
-
formal power series
The function compose(a, b) computes and returns the formal power series a⁡b, the composition of a and b. This power series is: a⁡0+a⁡1⁢b+a⁡2⁢b2+a⁡3⁢b3+....
Note that b⁡0 must be 0 to ensure that the composition is well defined. Otherwise, compose returns an error message.
The command with(powseries,compose) allows the use of the abbreviated form of this command.
with⁡powseries:
powcreate⁡t⁡n=t⁡n−1n,t⁡0=1:
powcreate⁡v⁡n=v⁡n−12,v⁡0=0,v⁡1=1:
s≔compose⁡t,v:
tpsform⁡s,x
1+x+x2+1112⁢x3+1924⁢x4+157240⁢x5+O⁡x6
See Also
Download Help Document