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.