Student[NumericalAnalysis]
TaylorPolynomial
compute a Taylor polynomial approximation
Calling Sequence
Parameters
Options
Description
Examples
TaylorPolynomial(f, x, opts)
TaylorPolynomial(f, x = x0, opts)
f
-
algebraic; expression in the variable x
x
name; the name of the independent variable in f
x0
realcons; the point about which the series is expanded
opts
(optional) equation(s) of the form keyword = value where keyword is one of digits, errorboundvar, order; the options for computing the Taylor polynomial
digits = posint
A positive integer; the environment variable Digits will be set to this integer during the execution of this procedure. By default, digits = 10.
errorboundvar = name, algebraic
The name to assign to the independent variable in the error term. An error term for the taylor approximation is returned if the errorboundvar option is specified. Additionally, if the errorboundvar option and the extrapolate option are specified, the error bound is given for the extrapolated point as well.
extrapolate = realcons, list(realcons)
A point or list of points to be extrapolated. If this option is specified, the approximate value(s) of the taylor polynomial at the specified point(s), the exact value(s) of f at the specified point(s), and the error bound(s) are returned after the taylor polynomial.
order = posint, posint..posint, list(posint)
The order of the Taylor polynomial. If the order is specified as a range or list, the Taylor polynomial for each order in the range or list will be computed. By default, order = 6.
The TaylorPolynomial command computes the taylor series expansion of f about x0 and converts it into a polynomial.
If x0 is not specified, then the Taylor expansion is calculated about the point x=0.
The possible return values of the TaylorPolynomial command are:
P
P is the n-th order Taylor polynomial of f calculated about x = x0
[P, R]
P is the n-th order Taylor polynomial of f calculated about x = x0 and R is the remainder term, such that P+R=f. This output is returned when the errorboundvar option is specified and the extrapolate option is not specified.
[P, R, B]
P is the n-th order Taylor polynomial of f calculated about x = x0, R is the remainder term, such that P+R=f and B is a list containing the extrapolated point(s), the value(s) of P at the extrapolated point(s), the value(s) of f at the extrapolated point(s) and the associated error bound(s). This output is returned when both the errorboundvar and the extrapolate options are specified.
If order is specified as a list or range the return will be an expression sequence of the output described above, with an expression sequence member for each order.
with⁡StudentNumericalAnalysis:
TaylorPolynomial⁡sin⁡x,x
x−16⁢x3+1120⁢x5
TaylorPolynomial⁡sin⁡x,x,errorboundvar=ξ
x−16⁢x3+1120⁢x5,−cos⁡ξ⁢x75040
TaylorPolynomial⁡sin⁡x,x,errorboundvar=ξ,extrapolate=1.3
x−16⁢x3+1120⁢x5,−cos⁡ξ⁢x75040,1.3,0.9647744166,0.9635581854,0.001245010258
TaylorPolynomial⁡exp⁡x,x,order=3
1+x+12⁢x2+16⁢x3
TaylorPolynomial⁡ln⁡x,x=2,order=3,errorboundvar=ξ
ln⁡2+x2−1−x−228+x−2324,−x−244⁢ξ4
See Also
Student[NumericalAnalysis][ComputationOverview]
taylor
Download Help Document