Unit 10 Guide: Power, Taylor, and Maclaurin Series for AP Calculus BC

Taylor Polynomial Approximations

Before exploring infinite series, it is essential to understand Taylor Polynomials. These are finite polynomials used to approximate non-polynomial functions (like $e^x$, $\sin x$, or $\ln x$) near a specific point.

Definition and Formula

If $f$ has $n$ derivatives at $x=c$, then the $n$th-degree Taylor Polynomial for $f$ centered at $c$ is:

P_n(x) = f(c) + f'(c)(x-c) + \frac{f''(c)}{2!}(x-c)^2 + \dots + \frac{f^{(n)}(c)}{n!}(x-c)^n

In summation notation:
Pn(x) = \sum{k=0}^{n} \frac{f^{(k)}(c)}{k!} (x-c)^k

  • Center ($c$): The $x$-value where the approximation is exact.
  • Degree ($n$): The highest power of $(x-c)$ in the polynomial.
  • Linear Approximation: Notice that $P_1(x) = f(c) + f'(c)(x-c)$ is simply the equation of the tangent line (linearization).

Visualizing Taylor Polynomials

General Concept: Local Linearity to Local Non-Linearity

As you increase the degree $n$, the polynomial "hugs" the original function curve more closely around the center $c$. $P1$ matches the slope; $P2$ matches the concavity; $P_n$ matches the $n$-th derivative.


Finding Taylor and Maclaurin Series

While a polynomial is finite, a Series is infinite. If the limit of the Taylor Polynomial as $n \to \infty$ exists, we get the Taylor Series.

Maclaurin Series

A Maclaurin Series is simply a Taylor Series centered at $c=0$.

\text{Maclaurin Series} = \sum_{n=0}^{\infty} \frac{f^{(n)}(0)}{n!} x^n = f(0) + f'(0)x + \frac{f''(0)}{2!}x^2 + \dots

The "Big Four" Series to Memorize

On the AP Calculus BC exam, you are expected to memorize specific Maclaurin series expansions. Do not derive these from scratch on the test; know them by heart.

FunctionMaclaurin Series ExpansionSummation NotationInterval of Convergence
e^x1 + x + \frac{x^2}{2!} + \frac{x^3}{3!} + \dots\sum_{n=0}^{\infty} \frac{x^n}{n!}(-\infty, \infty)
\sin xx - \frac{x^3}{3!} + \frac{x^5}{5!} - \dots\sum_{n=0}^{\infty} \frac{(-1)^n x^{2n+1}}{(2n+1)!}(-\infty, \infty)
\cos x1 - \frac{x^2}{2!} + \frac{x^4}{4!} - \dots\sum_{n=0}^{\infty} \frac{(-1)^n x^{2n}}{(2n)!}(-\infty, \infty)
\frac{1}{1-x}1 + x + x^2 + x^3 + \dots\sum_{n=0}^{\infty} x^n(-1, 1)
Memory Aids
  • $\sin x$ is Odd: Sine is an odd function (symmetric about origin), so its series contains only odd powers ($x^1, x^3, x^5$) and odd factorials.
  • $\cos x$ is Even: Cosine is an even function (symmetric about y-axis), so its series contains only even powers ($1=x^0, x^2, x^4$) and even factorials.

Representing Functions as Power Series

Instead of calculating derivatives from scratch using the Taylor formula, we often manipulate known series to find new ones. This is usually faster and less prone to arithmetic error.

Substitution

To find the series for $f(x) = e^{-x^2}$, replace every instance of $x$ in the standard $e^x$ series with $(-x^2)$:

e^u = 1 + u + \frac{u^2}{2!} + \dots \quad \Rightarrow \quad e^{-x^2} = 1 + (-x^2) + \frac{(-x^2)^2}{2!} + \dots = 1 - x^2 + \frac{x^4}{2} - \dots

Differentiation and Integration

Power series can be differentiated or integrated term-by-term within their radius of convergence.

Example: Find the series for $\frac{1}{(1-x)^2}$.

  1. Recall geometric series: $\frac{1}{1-x} = 1 + x + x^2 + x^3 + \dots$
  2. Differentiate both sides with respect to $x$:
    \frac{d}{dx}\left[(1-x)^{-1}\right] = (1-x)^{-2} = \frac{1}{(1-x)^2}
    \frac{d}{dx}\left[1 + x + x^2 + x^3 + \dots\right] = 0 + 1 + 2x + 3x^2 + \dots

Radius and Interval of Convergence

A power series \sum a_n (x-c)^n may not converge for all $x$. The set of all $x$ values for which the series converges is the Interval of Convergence (IOC).

Finding the Radius ($R$)

Use the Ratio Test to determine convergence.

\lim{n \to \infty} \left| \frac{a{n+1}}{a_n} \right| = L < 1

Set up the limit, simplify, and solve the inequality $|x-c| < R$. The number $R$ is the Radius of Convergence.

Interval of Convergence Diagram

Checking Endpoints

The Ratio Test is inconclusive ($L=1$) at the endpoints of the interval $(c-R, c+R)$. You must test these endpoints individually by plugging them back into original series and using convergence tests (Alternating Series Test, p-Series, Harmonic, output of Geometric).

Steps Summary:

  1. Apply Ratio Test: $\lim{n \to \infty} |\frac{u{n+1}}{u_n}| < 1$.
  2. Isolate $|x-c| < R$.
  3. Identify the open interval: $(c-R, c+R)$.
  4. Check $x = c-R$ and $x = c+R$ manually.
  5. Write final interval using $[$ or $]$ where appropriate.

Lagrange Error Bound

When we use a Taylor Polynomial $Pn(x)$ to approximate a function $f(x)$, there is a remainder (error), $Rn(x)$. The Lagrange Error Bound tells us the worst-case scenario for this error.

The Formula

If $P_n(x)$ is the $n$th-degree Taylor polynomial centered at $c$, the error satisfies:

|Rn(x)| = |f(x) - Pn(x)| \le \frac{M}{(n+1)!}|x-c|^{n+1}

Where:

  • $n$ is the degree of the polynomial used.
  • $x$ is the point where we are approximating.
  • $c$ is the center.
  • $M$ is the maximum value of the absolute value of the $(n+1)^{th}$ derivative ($|f^{(n+1)}(z)|$) on the interval between $c$ and $x$.

Strategy for Finding $M$

  1. Find the $(n+1)^{th}$ derivative of $f$.
  2. Analyze $|f^{(n+1)}(z)|$ on the interval between $c$ and $x$.
  3. Pick a value $M$ that is greater than or equal to this derivative everywhere on that interval. (Often, if the derivative is increasing, evaluate at the far endpoint; if decreasing, evaluate at the closer endpoint. For sin/cos, $M$ is always 1).

Alternating Series Error Bound

Note: If the specific series is an Alternating Series satisfying the requirements of the AST (terms decrease in magnitude to 0), you can use the simpler Alternating Series Remainder:
\text{Error} \le |\text{first omitted term}|


Common Mistakes & Pitfalls

  1. Forgetting the Factorial: Students frequently forget the $n!$ in the denominator, especially when writing out the first few terms (e.g., writing $\frac{f''(c)}{2}$ instead of $\frac{f''(c)}{2!}$ is okay, but $\frac{f'''(c)}{3}$ is wrong; it must be 6).
  2. Confusing $n$ and $n+1$ in Lagrange: The Error Bound uses the $(n+1)^{th}$ derivative and the $(n+1)!$. If you used a 3rd degree polynomial, you look at the 4th derivative.
  3. Ignoring Endpoints: Finding the radius $R$ is not enough for the Interval of Convergence. You must prove convergence or divergence at the endpoints.
  4. Center Confusion: For Taylor series centered at $c \neq 0$, the terms must contain $(x-c)^n$. Do not write $x^n$ unless $c=0$ (Maclaurin).
  5. Chain Rule Errors: When substituting into a known series (e.g., $\sin(2x)$), remember to apply the power to the entire argument: $(2x)^3 = 8x^3$, not $2x^3$.