MultiSeries
SeriesInfo
return information about a multiseries
Calling Sequence
Parameters
Description
Examples
SeriesInfo:-ListCoefficients(S)
SeriesInfo:-ListExponents(S)
SeriesInfo:-CoefficientBigO(S)
SeriesInfo:-ExponentBigO(S)
SeriesInfo:-Variable(S)
SeriesInfo:-Scale(S)
S
-
a multiseries
The SeriesInfo subpackage is a collection of simple procedures that return information about multiseries. They are intended to serve as a programmer interface to the SERIES data structure. For compatibility with future releases, it is strongly recommended that you use these commands instead of accessing the operands of the data structure directly.
The ListCoefficients function returns the list of coefficients of S.
The ListExponents function returns the list of exponents of S.
The CoefficientBigO function returns the coefficient in the O⁡... term of S.
The ExponentBigO function returns the exponent of the variable in the O⁡... term of S.
A multiseries S without an O⁡... term yields CoefficientBigO⁡S=0 and ExponentBigO⁡S=∞.
The Variable function returns the variable used in the series S.
The Scale function returns the asymptotic scale in which S has been expanded.
with⁡MultiSeries:
with⁡SeriesInfo:
An example with a simple power series expansion:
s≔multiseries⁡sin⁡x,x
s≔x−x36+x5120+O⁡x7
ListCoefficients⁡s
1,−16,1120
ListExponents⁡s
1,3,5
CoefficientBigO⁡s
1
ExponentBigO⁡s
7
Variable⁡s
x
A more complicated expansion:
S≔multiseries⁡Γ⁡x,x=∞
S≔2⁢π⁢1x+2⁢π⁢1x3212+2⁢π⁢1x52288−139⁢2⁢π⁢1x7251840−571⁢2⁢π⁢1x922488320+163879⁢2⁢π⁢1x112209018880+O⁡1x132⁢ⅇln⁡x−1⁢x
Variable⁡S
1ⅇln⁡x−1⁢x
CoefficientBigO⁡S
0
ExponentBigO⁡S
∞
listcoeff≔ListCoefficients⁡S
listcoeff≔2⁢π⁢1x+2⁢π⁢1x3212+2⁢π⁢1x52288−139⁢2⁢π⁢1x7251840−571⁢2⁢π⁢1x922488320+163879⁢2⁢π⁢1x112209018880+O⁡1x132
L≔listcoeff1
L≔2⁢π⁢1x+2⁢π⁢1x3212+2⁢π⁢1x52288−139⁢2⁢π⁢1x7251840−571⁢2⁢π⁢1x922488320+163879⁢2⁢π⁢1x112209018880+O⁡1x132
type⁡L,SERIES
true
Variable⁡L
1x
ListCoefficients⁡L
2⁢π,2⁢π12,2⁢π288,−139⁢2⁢π51840,−571⁢2⁢π2488320,163879⁢2⁢π209018880
ListExponents⁡L
12,32,52,72,92,112
See Also
MultiSeries:-multiseries
type/SERIES
Download Help Document