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 CoefficientBigOS=0 and ExponentBigOS=∞.
The Variable function returns the variable used in the series S.
The Scale function returns the asymptotic scale in which S has been expanded.
withMultiSeries:
withSeriesInfo:
An example with a simple power series expansion:
s≔multiseriessinx,x
s≔x−x36+x5120+Ox7
ListCoefficientss
1,−16,1120
ListExponentss
1,3,5
CoefficientBigOs
1
ExponentBigOs
7
Variables
x
A more complicated expansion:
S≔multiseriesΓx,x=∞
S≔2π1x+2π1x3212+2π1x52288−1392π1x7251840−5712π1x922488320+1638792π1x112209018880+O1x132ⅇlnx−1x
VariableS
1ⅇlnx−1x
CoefficientBigOS
0
ExponentBigOS
∞
listcoeff≔ListCoefficientsS
listcoeff≔2π1x+2π1x3212+2π1x52288−1392π1x7251840−5712π1x922488320+1638792π1x112209018880+O1x132
L≔listcoeff1
L≔2π1x+2π1x3212+2π1x52288−1392π1x7251840−5712π1x922488320+1638792π1x112209018880+O1x132
typeL,SERIES
true
VariableL
1x
ListCoefficientsL
2π,2π12,2π288,−1392π51840,−5712π2488320,1638792π209018880
ListExponentsL
12,32,52,72,92,112
See Also
MultiSeries:-multiseries
type/SERIES
Download Help Document