Loading
Represent complex functions as polynomial expressions built from derivatives evaluated at a single point.
Long before electronic calculators existed, mathematicians and scientists needed practical ways to evaluate transcendental functions such as sin x, eˣ, and ln x. The key insight—that smooth functions can be represented as infinite sums of power terms—emerged gradually over several centuries and remains one of the most powerful ideas in all of analysis. Taylor polynomial approximations grew out of this tradition, providing finite truncations of infinite series that approximate a function near a chosen center point with remarkable accuracy. Understanding this history illuminates why the technique is central not only to calculus but also to numerical computation, physics, and engineering.
The central question these mathematicians addressed is elegantly simple: given a function f that is smooth (infinitely differentiable) near a point a, how well can a polynomial—built entirely from the derivatives of f at that single point—reproduce the behavior of f nearby? This question leads directly to the construction of Taylor polynomials and to deep investigations of how quickly, and under what conditions, the approximation converges to the original function.
A Taylor polynomial is constructed so that it matches a given function and as many of its derivatives as possible at a single point called the center of the expansion. The fundamental philosophy is that local derivative information encodes the shape of a function—its value, slope, concavity, rate of change of concavity, and so on—and a polynomial that preserves all of these features at one point will closely mimic the function in a neighborhood around it.
The diagram above illustrates the central visual intuition of Taylor polynomials. At the center point a = 0, every polynomial in the family passes through the origin with the same slope as sin x, namely 1. The first-degree polynomial P₁(x) = x is simply the tangent line, which is a reasonable approximation only in a tiny neighborhood. By incorporating the third derivative, P₃(x) = x − x³/6 captures the concavity change and tracks the sine curve through roughly (−π, π). Adding the fifth-degree term yields P₅, which remains faithful to sin x over an even larger interval. This pattern generalizes: each additional term encodes one more piece of curvature information, extending the range of accurate approximation.
The construction of a Taylor polynomial rests on a beautifully simple requirement: match f and its first n derivatives at the center a. This condition uniquely determines the coefficients of the polynomial, yielding the general formula presented below.
The coefficient structure f⁽ᵏ⁾(a)/k! deserves careful attention. The factorial in the denominator arises because differentiating (x − a)ᵏ exactly k times produces k! as a leading constant. Dividing by k! cancels this factor, so that when Pₙ is differentiated k times and evaluated at a, the result is precisely f⁽ᵏ⁾(a). This derivative-matching property is both the definition and the justification of the Taylor polynomial: it is the unique polynomial of degree at most n whose value and first n derivatives at a agree with those of f.
The AP Calculus BC exam expects fluency with several standard Maclaurin series. Rather than deriving each one from scratch during the exam, you should memorize these expansions and be able to adapt them through substitution, differentiation, or integration to generate new series. The table below catalogs the most important ones, together with their intervals of convergence.
| Function | Maclaurin Series | Interval of Convergence |
|---|---|---|
| eˣ | 1 + x + x²/2! + x³/3! + ⋯ = Σ xᵏ/k! | (−∞, ∞) |
| sin x | x − x³/3! + x⁵/5! − ⋯ = Σ (−1)ᵏ x²ᵏ⁺¹/(2k+1)! | (−∞, ∞) |
| cos x | 1 − x²/2! + x⁴/4! − ⋯ = Σ (−1)ᵏ x²ᵏ/(2k)! | (−∞, ∞) |
| 1/(1 − x) | 1 + x + x² + x³ + ⋯ = Σ xᵏ | (−1, 1) |
| ln(1 + x) | x − x²/2 + x³/3 − ⋯ = Σ (−1)ᵏ⁺¹ xᵏ/k | (−1, 1] |
The flowchart above highlights a crucial exam strategy. Rather than computing all derivatives of e⁻ˣ² from scratch (which becomes algebraically painful after the third derivative), you can simply substitute −x² for x in the known series for eˣ. Similarly, integrating the geometric series 1/(1 − x) = Σ xᵏ term by term yields −ln(1 − x) = Σ xᵏ⁺¹/(k + 1), which after rearrangement gives the standard series for ln(1 + x). These series manipulation techniques—substitution, term-by-term differentiation, and term-by-term integration—are among the most frequently assessed skills on the BC exam.
Find the fourth-degree Taylor polynomial P₄(x) for f(x) = ln x centered at a = 1, and use it to approximate ln(1.2).
While Taylor polynomials are extraordinarily useful, understanding their limitations is just as important as knowing how to construct them. The approximation quality depends on the degree of the polynomial, the distance from the center, and the behavior of the function's higher-order derivatives. The table below contrasts the strengths and limitations of the method.
| Strengths | Limitations |
|---|---|
| Converts transcendental functions into polynomials, which are easy to evaluate, differentiate, and integrate. | Accuracy degrades as |x − a| increases; the polynomial may diverge wildly outside the interval of convergence. |
| The Lagrange remainder provides a rigorous, quantitative error bound. | Computing the bound requires knowledge of |f⁽ⁿ⁺¹⁾| on the interval, which can be difficult for complex functions. |
| Series for standard functions can be adapted through substitution, differentiation, and integration. | Not all infinitely differentiable functions equal their Taylor series (e.g., f(x) = e⁻¹/ˣ² at x = 0 has all derivatives zero, so its Maclaurin series is identically 0, yet f is not 0 for x ≠ 0). |
| Higher-degree polynomials systematically improve approximation quality near the center. | Higher derivatives become increasingly laborious to compute for most functions. |
A Taylor polynomial of degree n is a finite object—a partial sum of the Taylor series, which is the infinite sum obtained by letting n → ∞. The transition from polynomial to series raises deep questions about convergence: does the infinite sum actually converge to f(x)? If so, for which values of x? These questions connect Taylor polynomials to the broader theory of power series and radius of convergence, topics you will study in the subsequent units of BC Calculus.
| Feature | Taylor Polynomial Pₙ(x) | Taylor Series (n → ∞) |
|---|---|---|
| Number of terms | Finite (n + 1 terms) | Infinite |
| Equality with f | Approximation: f(x) ≈ Pₙ(x) | Exact (within radius of convergence): f(x) = Σ... |
| Error analysis | Lagrange remainder provides explicit bound | Error is zero when series converges to f |
| Practical computation | Always computable in finitely many steps | Requires convergence tests (Ratio, Root, etc.) |
| AP exam context | Construct and evaluate specific polynomials; bound error | Determine radius/interval of convergence; represent functions as series |
Looking ahead, the Taylor polynomial framework naturally extends to topics such as the ratio test for determining the radius of convergence, alternating series error estimation (which is often simpler than the Lagrange bound for alternating series), and the study of power series representations that enable integration of functions like e⁻ˣ² whose antiderivatives cannot be expressed in closed form. Mastering the polynomial construction in this lesson is the essential prerequisite for all of these advanced topics.
A Taylor polynomial of degree n centered at a is the unique polynomial Pₙ(x) = Σ (k = 0 to n) f⁽ᵏ⁾(a)/k! · (x − a)ᵏ whose value and first n derivatives match those of f at the center. When a = 0 the result is called a Maclaurin polynomial. The factorial scaling f⁽ᵏ⁾(a)/k! ensures the derivative-matching condition is satisfied, and the Lagrange remainder provides a rigorous bound on the approximation error.
For the AP exam, memorize the standard Maclaurin series for eˣ, sin x, cos x, 1/(1 − x), and ln(1 + x), and practice the three key manipulation techniques—substitution, term-by-term differentiation, and term-by-term integration—to derive new series quickly. Higher-degree polynomials extend the interval of accurate approximation, but accuracy always degrades as you move farther from the center. Mastering Taylor polynomials prepares you for the full theory of power series and convergence that forms the capstone of AP Calculus BC.
Keep learning with more lessons from the same subject.