convert/polynom
convert a series to polynomial form
Calling Sequence
Parameters
Description
Examples
convert( series, polynom )
series
-
series; preferably of type taylor
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.
s≔series⁡sin⁡x,x,5
s≔x−16⁢x3+O⁡x5
type⁡s,polynom
false
p≔convert⁡s,polynom
p≔x−16⁢x3
type⁡p,polynom⁡anything,x
true
t≔series⁡exp⁡xx,x,3
t≔x−1+1+12⁢x+O⁡x2
q≔convert⁡t,polynom
q≔1x+1+x2
type⁡q,polynom⁡anything,x
type⁡q,`+`
See Also
type/polynom
Download Help Document