type/laurent
check for Laurent series
Calling Sequence
Parameters
Description
Examples
type(expr, laurent)
expr
-
expression
The call type(expr, laurent) returns true if expr is of type series and only contains power terms of the variable in which it was expanded.
In mathematical terminology it returns true if expr is a Laurent series with finite principal part, since type series in Maple represents series with only a finite number of negative powers and with an order-term representing the truncation of a potentially infinite number of positive power terms.
series⁡sin⁡x,x,5
x−16⁢x3+O⁡x5
type⁡,laurent
true
series⁡1sin⁡x,x,5
x−1+16⁢x+O⁡x3
series⁡ln⁡x+x2,x,3
ln⁡x+x−12⁢x2+O⁡x3
false
See Also
series
type
type/series
type/taylor
Download Help Document