powseries
powcreate
create formal power series
Calling Sequence
Parameters
Description
Examples
powcreate(eqns)
eqns
-
expression sequence of equations
The function powcreate creates a formal power series whose coefficients are specified by eqns.
The expression sequence of equations passed to powcreate should consist of one equation, possibly recursive, that specifies the nth coefficient, followed by zero or more equations that specify initial conditions.
More specifically, powcreate(t(n)=expr, t(0)=a0, ..., t(m)=am) creates a formal power series, t, whose nth coefficient is expr, and whose initial terms are t⁡0=a0, ..., t⁡m=am.
Any initial conditions among eqns override the general expression. Thus, it is possible to include particular values of coefficients in eqns.
The command with(powseries,powcreate) allows the use of the abbreviated form of this command.
with⁡powseries:
powcreate⁡t⁡n=1n!,t⁡0=1:
tpsform⁡t,x,7
1+x+12⁢x2+16⁢x3+124⁢x4+1120⁢x5+1720⁢x6+O⁡x7
powcreate⁡v⁡n=v⁡n−1+v⁡n−24,v⁡0=4,v⁡1=2:
tpsform⁡v,x
4+2⁢x+32⁢x2+78⁢x3+1932⁢x4+47128⁢x5+O⁡x6
See Also
Download Help Document