laurent - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


type/laurent

check for Laurent series

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

type(expr, laurent)

Parameters

expr

-

expression

Description

• 

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.

Examples

> 

series⁡sin⁡x,x,5

x−16⁢x3+O⁡x5

(1)
> 

type⁡,laurent

true

(2)
> 

series⁡1sin⁡x,x,5

x−1+16⁢x+O⁡x3

(3)
> 

type⁡,laurent

true

(4)
> 

series⁡ln⁡x+x2,x,3

ln⁡x+x−12⁢x2+O⁡x3

(5)
> 

type⁡,laurent

false

(6)

See Also

series

type

type/series

type/taylor