Sign in to save

Bookmark this page so you can find it later.

Sign in to save

Bookmark this page so you can find it later.

Taylor polynomials approximate complicated functions with simpler polynomials near a chosen center. Error bounds tell how far the polynomial value can be from the true function value. This cheat sheet helps students choose the right remainder formula, estimate the maximum derivative size, and report a clear approximation interval.

These skills are essential for numerical approximation, convergence questions, and justifying calculator-free estimates.

Key Facts

  • The degree nn Taylor polynomial for ff centered at aa is Tn(x)=k=0nf(k)(a)k!(xa)kT_n(x)=\sum_{k=0}^{n}\frac{f^{(k)}(a)}{k!}(x-a)^k.
  • The exact error, or remainder, is Rn(x)=f(x)Tn(x)R_n(x)=f(x)-T_n(x).
  • Taylor's theorem with Lagrange remainder gives Rn(x)=f(n+1)(c)(n+1)!(xa)n+1R_n(x)=\frac{f^{(n+1)}(c)}{(n+1)!}(x-a)^{n+1} for some cc between aa and xx.
  • If f(n+1)(t)M|f^{(n+1)}(t)|\le M for all tt between aa and xx, then Rn(x)Mxan+1(n+1)!|R_n(x)|\le \frac{M|x-a|^{n+1}}{(n+1)!}.
  • An approximation interval can be written as f(x)[Tn(x)B,Tn(x)+B]f(x)\in \left[T_n(x)-B,\,T_n(x)+B\right] when Rn(x)B|R_n(x)|\le B.
  • For an alternating series with decreasing terms approaching 00, the error after nn terms satisfies Rn|R_n|\le the first omitted term.
  • For Maclaurin polynomials, the center is a=0a=0, so the error bound becomes Rn(x)Mxn+1(n+1)!|R_n(x)|\le \frac{M|x|^{n+1}}{(n+1)!}.
  • To guarantee accuracy within a tolerance ε\varepsilon, choose nn so that Mxan+1(n+1)!ε\frac{M|x-a|^{n+1}}{(n+1)!}\le \varepsilon.

Vocabulary

Taylor Polynomial
A polynomial Tn(x)T_n(x) built from the derivatives of a function at a center aa to approximate the function near aa.
Maclaurin Polynomial
A Taylor polynomial centered at a=0a=0.
Remainder
The error term Rn(x)=f(x)Tn(x)R_n(x)=f(x)-T_n(x) that measures the difference between the function and its Taylor polynomial.
Lagrange Error Bound
An inequality using a bound on f(n+1)(x)|f^{(n+1)}(x)| to limit the possible size of the Taylor polynomial error.
Tolerance
A maximum allowed error, often written as ε\varepsilon, that an approximation must satisfy.
First Omitted Term
In an alternating series estimate, the next term not included in the partial sum, which bounds the absolute error when the conditions hold.

Common Mistakes to Avoid

  • Using the nnth derivative instead of the (n+1)(n+1)st derivative in the Lagrange bound is wrong because the error after a degree nn polynomial depends on f(n+1)f^{(n+1)}.
  • Forgetting the absolute value on xa|x-a| is wrong because an error bound must be nonnegative regardless of whether xx is to the left or right of aa.
  • Choosing MM only at the center aa is wrong because MM must bound f(n+1)(t)|f^{(n+1)}(t)| on the entire interval between aa and xx.
  • Reporting only Tn(x)T_n(x) when an error bound is requested is incomplete because the answer must include a bound such as Rn(x)B|R_n(x)|\le B or an interval.
  • Using the alternating series error bound without checking decreasing terms and convergence to 00 is wrong because the first omitted term rule only applies when those conditions are met.

Practice Questions

  1. 1 Use the Maclaurin polynomial T3(x)T_3(x) for sinx\sin x to approximate sin(0.2)\sin(0.2), and use the Lagrange error bound to estimate R3(0.2)|R_3(0.2)|.
  2. 2 For f(x)=exf(x)=e^x centered at a=0a=0, find an upper bound for the error in using T4(x)T_4(x) to approximate e0.5e^{0.5}.
  3. 3 How large must nn be to guarantee that the Maclaurin approximation for cos(0.3)\cos(0.3) has error at most 10610^{-6} using the Lagrange bound?
  4. 4 Explain why finding a valid maximum value MM for f(n+1)(t)|f^{(n+1)}(t)| on the whole interval is more important than knowing the exact unknown value of cc in the Lagrange remainder.

Understanding Error Bounds for Taylor Polynomials

The difficult part of a Lagrange bound is usually finding a valid maximum for the next derivative. The unknown point lies somewhere between the center and the input value, so the derivative must be controlled over the whole interval, not just at one endpoint. Start by writing the next derivative, then examine its absolute value on that interval.

For sine and cosine, its absolute value never exceeds one, which makes bounds convenient. For the exponential function, the largest value occurs at the right endpoint when the interval contains increasing positive inputs.

For logarithms, roots, and reciprocal functions, derivatives can grow rapidly near certain points. A bound that ignores this growth may look small but be invalid.

The factorial in the denominator is the main reason Taylor approximations often improve quickly. Each extra degree adds another power of the distance from the center, then divides by a larger factorial. This works especially well when the input is close to the center.

Distance matters as much as degree. A low degree polynomial centered at zero may estimate a value near zero very well, yet perform poorly far away.

Recentering at a closer value can greatly reduce the error. In class, this idea appears when a problem asks for an approximation near one, near pi, or near another familiar number rather than near zero.

An error bound is a guarantee, not usually the exact amount of error. The actual difference can be much smaller because the unknown derivative value may be below the chosen maximum. This is why a careful solution states that the error is no more than a certain amount.

It should not claim that the error equals the bound unless additional work proves that fact. When the bound is B and the polynomial gives a decimal estimate, the true value must fall within B units above or below that decimal.

This interval is useful when deciding how many decimal places are justified. If the interval crosses a rounding cutoff, then the requested rounded digit is not yet guaranteed.

Alternating series estimates use extra information that a general Taylor bound does not use. When terms switch sign, shrink steadily, and approach zero, the next missing term limits the remaining total. This can be much sharper than bounding a derivative over an interval.

The sign of the first omitted term often indicates whether the partial sum is too high or too low. Students should still check every condition before using this shortcut. Terms must decrease in size from the relevant point onward, and their sizes must approach zero.

Common mistakes include using the wrong next derivative, forgetting absolute value, choosing a maximum outside the required interval, or counting terms incorrectly. A reliable habit is to identify the center, the target input, the polynomial degree, and the first omitted contribution before doing any arithmetic.