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

Online Help

All Products    Maple    MapleSim


convert/polynom

convert a series to polynomial form

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

convert( series, polynom )

Parameters

series

-

series; preferably of type taylor

Description

• 

Convert to polynom converts a Taylor series to a polynomial. If series is not a Taylor series then the conversion to sum-of-products form takes place but the result is not of type polynom.

Examples

> 

s≔series⁡sin⁡x,x,5

s≔x−16⁢x3+O⁡x5

(1)
> 

type⁡s,polynom

false

(2)
> 

p≔convert⁡s,polynom

p≔x−16⁢x3

(3)
> 

type⁡p,polynom⁡anything,x

true

(4)
> 

t≔series⁡exp⁡xx,x,3

t≔x−1+1+12⁢x+O⁡x2

(5)
> 

q≔convert⁡t,polynom

q≔1x+1+x2

(6)
> 

type⁡q,polynom⁡anything,x

false

(7)
> 

type⁡q,`+`

true

(8)

See Also

series

type/polynom