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
Calculus 1: Applications of Differentiation
The Student[Calculus1] package contains three routines that can be used to both work with and visualize the concepts of Taylor approximations, charting a function, and using Newton's method. This worksheet demonstrates this functionality.
For further information about any command in the Calculus1 package, see the corresponding help page. For a general overview, see Calculus1.
Getting Started
While any command in the package can be referred to using the long form, for example, Student[Calculus1][FunctionChart], it is easier, and often clearer, to load the package, and then use the short form command names.
The following sections show how the routines work.
Taylor Approximations
If at a point , a function has a power series expansion the coefficients are given by:
where is the nth derivative of evaluated at the point . Named after the English mathematician Brook Taylor, this infinite series is called the Taylor expansion of the function at .
The Taylor expansion of the exponential function is:
from which it follows that:
Taylor approximations require both an expression and a point around which to expand.
Thus, around the point the polynomial behaves like .
The derivative of the arctan function has singularities at and . Therefore, the radius of convergence of the Taylor approximation around the origin is .
You can compute and visualize Taylor approximations using the TaylorApproximationTutor command.
Function Chart
The FunctionChart routine plots a function and shows regions of positive and negative sign, increasing and decreasing, and positive and negative concavity. By default:
1. Roots are marked by circles. 2. Extreme points are marked by diamonds. 3. Inflection points are marked by crosses. 4. Regions of increase and decrease are marked by red and blue, respectively.
5. Regions of positive and negative concavity are marked by magenta and red fill, respectively, with arrows pointing in the direction of the concavity.
You can also perform curve analysis using the CurveAnalysisTutor command.
Newton's Method
Given a point and an expression , the -intercept of the tangent line through (, ) can be used as an approximation to a root of the expression . The equation of the tangent line is:
Solving for zero:
As an example, consider the function and an initial point .
Repeating this another times:
The routine NewtonsMethod performs the same process.
The root to which a sequence of Newton iterations converges to depends on the initial point. For example,
In general, when the root is not a double root, Newton's method is very efficient. In the following example with Digits set to , Newton's method converges to the root after only iterations.
You can also learn about Newton's method using the NewtonsMethodTutor command.
Main: Visualization
Previous: Various Theorems about Derivatives
Next: Integration
Download Help Document