Binomial Series and Taylor Series
Taylor and binomial series let you represent functions as infinite sums of polynomial terms. This is useful when you need to approximate values, evaluate integrals that have no closed-form antiderivative, or solve differential equations that resist standard techniques. This section covers how to build these series, recognize common ones, and put them to work.
Terms of the Binomial Series
The binomial series expands for any real exponent (not just positive integers) when :
The generalized binomial coefficient for any real is:
Note: this is not the same as , which only works when is a non-negative integer. The generalized form works for any real , including fractions and negatives. For example, you can expand or this way.
Taylor Series for Common Functions
A Taylor series represents a function as an infinite sum built from its derivatives at a single point. You should have these common Maclaurin series (centered at ) memorized:
- (converges for all )
- (converges for all )
- (converges for all )
- (converges for )
- (converges for )
- (converges for , any real )
These are called analytic functions within their radius of convergence: the Taylor series actually equals the function, not just approximates it.
%5En_infinite_series_binomial_coefficient_visualization%22-CNX_Precalc_Figure_11_06_003.jpg)
Techniques for Working with Taylor Series
Building a Taylor series from scratch centered at :
- Compute up to the desired order.
- Plug into the formula:
A Maclaurin series is just a Taylor series with .
Often, though, you don't need to compute derivatives from scratch. Instead, you can manipulate known series. These techniques save significant time:
- Substitution: Replace with an expression. For instance, the series for comes from substituting for in the series:
- Multiplication: Multiply a known series by or by another series.
- Differentiation: Differentiate a known series term by term. For example, differentiating the geometric series gives the series for .
- Integration: Integrate a known series term by term. The series for can be obtained by integrating
The Taylor Remainder Theorem gives you a bound on the error when you truncate a Taylor series after terms. The remainder satisfies:
where is an upper bound on for between and . This tells you how many terms you need for a given accuracy.
Taylor Series in Differential Equations
You can approximate solutions to differential equations by assuming the solution is a power series and then finding its coefficients.
General method:
- Assume .
- Compute , , etc. as needed by differentiating term by term.
- Substitute into the differential equation.
- Equate coefficients of like powers of to get a system of equations for the .
- Use initial conditions to pin down specific values, then solve for the remaining coefficients.
- Write out the series solution.
Example: Solve with .
- Assume .
- Then (re-index to match powers).
- Setting : for all .
- From the initial condition: .
- The recurrence gives , , , and in general .
- The solution is , which you can verify directly.
%5En_infinite_series_binomial_coefficient_visualization%22-200px-Pascal's_triangle_5.svg.png)
Complex Integrals via Taylor Series
Some integrals have no elementary antiderivative (like ), but you can still evaluate them by expanding the integrand as a Taylor series and integrating term by term.
Method:
- Replace the integrand with its Taylor series.
- Integrate each term of the series individually.
- Check that the interval of convergence includes your limits of integration.
- Sum enough terms to reach the desired accuracy.
Example: Evaluate using Taylor series.
-
Recognize that is a geometric series with substituted for in :
-
Integrate term by term:
-
Evaluate:
-
This is the Leibniz formula, and it converges to . (The series converges at even though the radius of convergence is 1, because this is an alternating series whose terms decrease to 0.)
A subtlety worth noting: the geometric series converges for , but the integrated series actually converges at as well. This is justified by Abel's theorem, which guarantees that if a power series converges at an endpoint, its sum equals the limit of the function as you approach that endpoint.
Applications and Convergence
Convergence Analysis
To find the radius of convergence of a Taylor series, use the ratio test:
or the root test:
The series converges absolutely for and diverges for . You must check the endpoints separately.
As you include more terms in a Taylor polynomial, the approximation improves within the interval of convergence. Outside that interval, adding more terms actually makes the approximation worse, which is a common source of confusion.