Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
Student[NumericalAnalysis][TaylorPolynomial] - compute a Taylor polynomial approximation
Calling Sequence
TaylorPolynomial(f, x, opts)
TaylorPolynomial(f, x = x0, opts)
Parameters
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
Description
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.
Options
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.
Examples
See Also
Student[NumericalAnalysis], Student[NumericalAnalysis][ComputationOverview], taylor
Download Help Document