Taylor and Maclaurin Series
Taylor and Maclaurin series let you represent complex functions as infinite polynomial expressions centered at a specific point. This is incredibly useful because polynomials are easy to differentiate, integrate, and evaluate, while the original functions (like , , or ) can be much harder to work with directly.
The core idea: if you know all the derivatives of a function at a single point, you can reconstruct the entire function (within some radius) as a power series. The more terms you include, the better your approximation gets.
Construction of Taylor Polynomials
A Taylor polynomial approximates a function near a specific point by matching the function's value and its derivatives at that point. The th-degree Taylor polynomial is:
Written in summation notation:
A Maclaurin polynomial is just a Taylor polynomial centered at :
Notice each term has plain instead of , since .
How to build a Taylor polynomial:
- Choose the center point and the degree of the polynomial.
- Compute the derivatives .
- Plug each derivative into the formula, dividing by the corresponding factorial.
Quick example: Find the 3rd-degree Maclaurin polynomial for .
Every derivative of is , and , so:
Plugging in : , while the true value of . That's pretty close with only four terms.

Interpretation of Taylor's Theorem
Taylor's theorem tells you exactly how the approximation error behaves. For a function that is times differentiable on an interval containing :
where is the remainder term (also called the Lagrange remainder):
Here is some value between and . You typically don't know the exact value of , but the theorem guarantees such a exists.
The remainder represents the exact error between the true function value and the polynomial approximation. Two things shrink this error:
- Increasing : More terms means a better fit, and the in the denominator grows fast.
- Staying close to : The factor gets smaller when is near the center point.
Taylor polynomials are especially valuable when:
- Direct evaluation of the function is difficult or impossible
- You know the derivatives at a point but don't have a closed-form expression
- You need a simpler expression for numerical computation (calculators use Taylor-type approximations internally for functions like )
.jpeg.jpg)
Error Analysis in Taylor Series
Bounding the error is where Taylor's theorem becomes a practical tool, not just a theoretical one. The goal is to figure out how many terms you need to achieve a desired accuracy.
Steps to bound the error using the Lagrange error bound:
- Identify the degree of your Taylor polynomial and the point where you're approximating.
- Find the th derivative .
- Determine , the maximum value of for all between and .
- Apply the bound:
Finding is often the trickiest step. For and , all derivatives are bounded by 1, so always works. For on , the maximum of occurs at the right endpoint, so .
Three factors that control the error size:
- Degree : Higher degree means the denominator grows rapidly, shrinking the bound.
- Distance : The closer is to the center, the smaller the error. Approximating is far more accurate than with the same number of terms.
- Behavior of higher derivatives: If is large, the error can be large too.
Alternating series error bound: When your Taylor series happens to be alternating (like those for , , or ), you can use a simpler bound:
where is the first omitted term. This bound is often tighter than the Lagrange bound and easier to compute.
Convergence and Applications of Taylor Series
When you let , the Taylor polynomial becomes a Taylor series, an infinite power series:
This series doesn't necessarily converge for all . You need to determine its radius of convergence , typically using the Ratio Test or Root Test. The series converges for and diverges for . At the endpoints , you have to check convergence separately to find the full interval of convergence.
Within the interval of convergence, the Taylor series equals the original function (for the standard functions you'll encounter in this course). Some key Maclaurin series to know:
- , converges for all ()
- , converges for all ()
- , converges for all ()
- , converges for
- , converges for
Common applications of Taylor series include:
- Approximating function values when direct computation is impractical
- Evaluating difficult integrals by integrating the series term-by-term (e.g., has no elementary antiderivative, but you can integrate its Taylor series)
- Solving differential equations by assuming a power series solution
- Analyzing local behavior of functions near a point (for instance, determining limits of indeterminate forms)