Taylor polynomials let us approximate a complicated function with a polynomial built from information at one chosen center point. This matters because polynomials are easy to evaluate, graph, differentiate, and integrate. Near the center, a Taylor polynomial can closely match the original function, making it a powerful tool in calculus, physics, engineering, and computation.
The polynomial uses the function value and derivative values at x = a to copy the function's local behavior. A higher degree polynomial matches more derivatives at the center, so it usually follows the curve better near that point. The approximation often becomes worse farther from the center, and the size of the error depends on the function, the degree, and the distance from a.
Understanding Calculus: Approximating Functions with Taylor Polynomials
Each added term has a specific job. The constant term puts the approximation at the correct height. The first derivative controls the initial tilt.
The second derivative controls how the graph bends. Later derivatives capture finer changes in shape, such as how quickly the bending itself changes. The factorial in each denominator is not arbitrary.
Repeated differentiation of a power produces factors that would otherwise make the coefficient too large. Dividing by the matching factorial ensures that, after differentiating the polynomial the required number of times, its value at the center agrees with the corresponding derivative of the original function.
A useful example is the sine function near zero, when angles are measured in radians. Its graph begins by behaving much like a straight line. A better approximation subtracts the input cubed divided by six, which accounts for the curve bending below that line for positive inputs.
This is why the small angle rule in physics says that sine of an angle is approximately the angle itself. It works for small angles in radians, not for angles written in degrees. Choosing radians matters because the derivative patterns behind the approximation have their simple form only in radians.
Error deserves as much attention as the polynomial itself. The next derivative gives information about what the polynomial has not yet captured. If that derivative stays within a known maximum size over the interval being used, it gives a bound on the possible error.
The error contains a power of the distance from the center, so moving twice as far away can make the error grow very quickly. The factorial in the denominator often helps higher degree approximations, but higher degree is not a guarantee of accuracy everywhere.
Some functions grow rapidly, have limited smoothness, or behave badly away from the center. A polynomial can match many local features perfectly while still giving a poor estimate far away.
Computers, calculators, and scientific software often use versions of these approximations internally. Evaluating a short polynomial can be faster than evaluating a more complicated function directly. Engineers use them when changes are small around a normal operating point.
Physicists use them to simplify motion, waves, and energy formulas. When learning, keep track of three things. Identify the center, calculate derivatives carefully at that center, and state the interval where the estimate is intended to work.
Graphing the function and polynomial together is especially helpful. The gap between them shows the remainder visually and prevents the common mistake of trusting a local approximation over a large range.
Key Facts
- Taylor polynomial of degree n centered at a: P_n(x) = f(a) + f'(a)(x - a) + f''(a)(x - a)^2/2! + ... + f^(n)(a)(x - a)^n/n!
- Linear approximation is the first degree Taylor polynomial: P_1(x) = f(a) + f'(a)(x - a).
- Quadratic approximation is P_2(x) = f(a) + f'(a)(x - a) + f''(a)(x - a)^2/2.
- Maclaurin polynomials are Taylor polynomials centered at a = 0.
- Taylor polynomials match derivatives at the center: P_n^(k)(a) = f^(k)(a) for k = 0, 1, 2, ..., n.
- Lagrange error bound: |R_n(x)| <= M|x - a|^(n + 1)/(n + 1)! if |f^(n + 1)(t)| <= M between a and x.
Vocabulary
- Taylor polynomial
- A polynomial that approximates a function near a center point using the function's derivatives at that point.
- Center
- The value a where the Taylor polynomial is built and where it matches the function most closely.
- Degree
- The highest power of x - a included in the Taylor polynomial.
- Remainder
- The difference between the actual function value and the Taylor polynomial approximation.
- Maclaurin polynomial
- A Taylor polynomial centered at a = 0.
Common Mistakes to Avoid
- Forgetting the factorial in each term is wrong because the kth derivative term must be divided by k! to match the function's derivative values correctly.
- Using powers of x instead of x - a is wrong for a Taylor polynomial centered at a because the expansion measures distance from the center.
- Assuming higher degree is always better everywhere is wrong because Taylor polynomials usually improve the fit mainly near the center and can behave poorly far away.
- Mixing up f'(a), f''(a), and f^(k)(a) with f'(x), f''(x), and f^(k)(x) is wrong because the Taylor coefficients are derivative values evaluated at the center.
Practice Questions
- 1 Find the degree 2 Taylor polynomial for f(x) = e^x centered at a = 0, then use it to approximate e^0.2.
- 2 Find the degree 3 Taylor polynomial for f(x) = sin x centered at a = 0, then use it to approximate sin(0.5).
- 3 A graph shows f(x), P_1(x), P_2(x), and P_4(x) centered at x = a. Explain why all the curves are closest together near x = a and why they may separate as x moves farther from a.