Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
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