Overview of the powseries Package
Calling Sequence
Description
List of powseries Package Commands
Examples
powseries:-command(arguments)
command(arguments)
The powseries package contains commands to create and manipulate formal power series represented in general form.
Each command in the powseries package can be accessed by using either the long form or the short form of the command name in the command calling sequence.
The following is a list of available commands.
compose
evalpow
inverse
multconst
multiply
negative
powadd
powcos
powcreate
powdiff
powexp
powint
powlog
powpoly
powseries
powsin
powsolve
powsqrt
quotient
reversion
subtract
tpsform
Other trigonometric functions, such as tan(x), sec(x), and the hyperbolic functions, such as sinh(x), can be generated through the powseries:-evalpow command.
To display the help page for a particular powseries command, see Getting Help with a Command in a Package.
For more information on the general representation of formal power series, see Representation of a Formal Power Series.
a≔powseries:-powexp⁡x:
b≔powseries:-tpsform⁡a,x,5
b≔1+x+12⁢x2+16⁢x3+124⁢x4+O⁡x5
with⁡powseries:
c≔powadd⁡powpoly⁡1+x2+x,x,powlog⁡1+x:
d≔tpsform⁡c,x,6
d≔1+2⁢x+12⁢x2+13⁢x3−14⁢x4+15⁢x5+O⁡x6
e≔evalpow⁡sinh⁡x:
tpsform⁡e,x,5
x+16⁢x3+O⁡x5
g≔tpsform⁡powdiff⁡powsin⁡x,x,6
g≔1−12⁢x2+124⁢x4+O⁡x6
h≔evalpow⁡Tan⁡x:
k≔tpsform⁡negative⁡h,x,5
k≔−x−13⁢x3+O⁡x5
See Also
asympt
series
UsingPackages
with
Download Help Document