Section 3.1
Taylor Polynomials
Goals:
1 Approximate a function with a Taylor polynomial.
2 Compute error bounds for a Taylor polynomial.
When learning algebra and trigonometry, we learn to use exact values like
7 instead of decimal
approximations, like 2.646. This prevents us from introducing errors into our calculations. However,
there are also advantages to approximation. Decimal approximations give us a much better sense of the
size of a number than ln 873 or e
9
5
. (Which of these is larger?)
Unfortunately arithmetic does not give us methods for approximating many quantities. Ideally, we
would like a method of approximation whose accuracy is limited only by how much time we wish to
spend computing. An example of this is long division. We can compute as many decimal places of
32
13
as we want, getting closer and closer to the exact value. Of course, long division can only approximate
fractions.
The method we will develop in this section is called a Taylor polynomial. It gives us a way to
approximate otherwise incomputable functions. The beginning point is the tangent line. The tangent
line was the motivation for developing the derivative, but its greatest benefit is not geometric. The
tangent line approximates the values of a function near the point of tangency. While the function may
be difficult to evaluate, the equation of the tangent line is linear. We can evaluate it by hand.
Question 3.1.1
How Can We Improve on a Linearization?
Formula
The linearization or tangent line to a function f(x) at a has the equation.
L(x) = f(a) + f
(a)(x a)
By design f and L have
1 Equal values at a.
2 Equal first derivatives at a.
This means that for values of x near a, L(x) and f(x) will have similar values. L(x), which is easy
to compute, can be used as an approximation of f(x). As x travels away from a and y = f(x) curves
away from its tangent line, this method will lose accuracy. We could make a better approximation, if
we could match second, third, fourth derivatives of f (x). A line cannot do that, but a polynomial can.
170
Back to Contents