taylor
Taylor series expansion
Calling Sequence
Parameters
Description
Thread Safety
Examples
Details
taylor(expression, x=a, n)
expression
-
x
name; independent variable
a
real constant; expansion point
n
non-negative integer; expansion order
The taylor command computes the order n Taylor series expansion of expression, with respect to the variable x, about the point a.
The taylor command is thread-safe as of Maple 15.
For more information on thread safety, see index/threadsafe.
taylor⁡exp⁡x,x=0,4
1+x+12⁢x2+16⁢x3+O⁡x4
taylor⁡1x,x=1,3
1−x−1+x−12+O⁡x−13
taylor⁡sin⁡x,x=π
−x−π+16⁢x−π3−1120⁢x−π5+O⁡x−π7
taylor⁡sqrt⁡1+x,x,8
1+12⁢x−18⁢x2+116⁢x3−5128⁢x4+7256⁢x5−211024⁢x6+332048⁢x7+O⁡x8
taylor⁡sqrt⁡1+x,x=0,8
For detailed information including:
Optional parameters
Converting a Taylor series to a polynomial
The general series command
see the taylor/details help page.
See Also
mtaylor
series
Download Help Document