Calculus II

Key Concepts of Power Series

Study smarter with Fiveable
Get study guides, practice questions, and cheatsheets for all your subjects. Join 500,000+ students with a 96% pass rate.
Get Started

Why This Matters

Power series let you transform complicated functions into infinite polynomials that you can differentiate, integrate, and manipulate with ease. In Calculus II, you're expected to determine where a series converges, how to represent functions as series, and why term-by-term operations work. These concepts connect directly to approximation theory, differential equations, and the fundamental relationship between discrete sums and continuous functions.

When you see a power series problem, immediately think about convergence behavior, the relationship between a function and its series representation, and how operations like differentiation and integration affect the series.


Foundational Structure

Power series have a specific anatomy that determines everything else: their convergence, their usefulness, and how you manipulate them. You need to understand the basic form before tackling applications.

Definition of a Power Series

A power series is an infinite sum of the form:

n=0an(xc)n=a0+a1(xc)+a2(xc)2+\sum_{n=0}^{\infty} a_n (x - c)^n = a_0 + a_1(x-c) + a_2(x-c)^2 + \cdots

Here ana_n are the coefficients and cc is the center. Each term is a polynomial-like piece built on powers of (xc)(x - c), and the whole series expresses a function as this infinite sum.

The series will converge for some values of xx and diverge for others. Figuring out that domain is a huge part of working with power series.

Geometric Series

The geometric series is the simplest power series:

n=0arn=a+ar+ar2+\sum_{n=0}^{\infty} ar^n = a + ar + ar^2 + \cdots

  • Convergence condition: converges only when r<1|r| < 1, diverges when r1|r| \geq 1
  • Closed-form sum: a1r\frac{a}{1 - r}

This formula shows up constantly. For example, 11x=n=0xn\frac{1}{1-x} = \sum_{n=0}^{\infty} x^n for x<1|x| < 1. Many series manipulation problems start by recognizing a geometric series hiding inside a more complex expression.

Compare: General power series vs. geometric series: both are infinite sums with increasing powers, but geometric series have a constant ratio between consecutive terms while general power series have variable coefficients. If a problem asks you to find a closed form, check first whether it's geometric.


Convergence Analysis

The central question for any power series is where does it converge? This determines the domain where your series actually represents a meaningful function.

Radius of Convergence

The radius of convergence RR tells you how far from the center cc the series converges. In practice, you'll almost always find RR using the Ratio or Root Test (see below) rather than the formal definition.

  • The series converges absolutely when xc<R|x - c| < R
  • The series diverges when xc>R|x - c| > R
  • Special cases: R=0R = 0 means convergence only at x=cx = c; R=R = \infty means convergence for all xx

Interval of Convergence

The interval of convergence includes every xx value where the series converges. Typically this looks like (cR,  c+R)(c - R,\; c + R), but the endpoints need separate attention.

  • The Ratio/Root Test is inconclusive at xc=R|x - c| = R, so you must plug in x=cRx = c - R and x=c+Rx = c + R and test each one individually.
  • Use parentheses for excluded endpoints and brackets for included ones. For instance, [cR,  c+R)[c - R,\; c + R) means the left endpoint converges but the right one diverges.

Convergence Tests for Power Series

Here's how to find RR and handle endpoints:

  1. Apply the Ratio Test. Compute L=limnan+1anL = \lim_{n \to \infty} \left| \frac{a_{n+1}}{a_n} \right|. The series converges absolutely when Lxc<1L \cdot |x - c| < 1, which gives R=1LR = \frac{1}{L}. This test works especially well when coefficients involve factorials (e.g., n!3n\frac{n!}{3^n}).

  2. Or apply the Root Test. Compute limnann\lim_{n \to \infty} \sqrt[n]{|a_n|}. This handles expressions like nnn^n or ana^n more cleanly than the Ratio Test.

  3. Test the endpoints. Once you have RR, substitute each endpoint into the series and use whichever test fits: the alternating series test, the pp-series test, direct comparison, or limit comparison.

Compare: Ratio Test vs. Root Test: both find the radius of convergence, but the Root Test is cleaner for coefficients with nnth powers (like (n2n+1)n\left(\frac{n}{2n+1}\right)^n), while the Ratio Test is better for factorials (like xnn!\frac{x^n}{n!}). If one is inconclusive, try the other.


Function Representation

Power series aren't just abstract objects. They represent real functions. Taylor and Maclaurin series formalize how to build a power series from any sufficiently smooth function.

Taylor Series

The Taylor series of f(x)f(x) centered at cc is:

f(x)=n=0f(n)(c)n!(xc)nf(x) = \sum_{n=0}^{\infty} \frac{f^{(n)}(c)}{n!} (x - c)^n

Each coefficient an=f(n)(c)n!a_n = \frac{f^{(n)}(c)}{n!} is determined by the nnth derivative of ff evaluated at the center. To build a Taylor series:

  1. Compute successive derivatives f(c),  f(c),  f(c),  f(c),f(c),\; f'(c),\; f''(c),\; f'''(c), \ldots
  2. Divide each by n!n!
  3. Multiply by (xc)n(x - c)^n and sum

Truncating after a finite number of terms gives a Taylor polynomial, which approximates f(x)f(x) near cc. More terms means better accuracy in that neighborhood.

Maclaurin Series

A Maclaurin series is just a Taylor series centered at c=0c = 0:

f(x)=n=0f(n)(0)n!xnf(x) = \sum_{n=0}^{\infty} \frac{f^{(n)}(0)}{n!} x^n

You should memorize these standard Maclaurin series:

  • ex=n=0xnn!e^x = \sum_{n=0}^{\infty} \frac{x^n}{n!} (converges for all xx)
  • sinx=n=0(1)nx2n+1(2n+1)!\sin x = \sum_{n=0}^{\infty} \frac{(-1)^n x^{2n+1}}{(2n+1)!} (converges for all xx)
  • cosx=n=0(1)nx2n(2n)!\cos x = \sum_{n=0}^{\infty} \frac{(-1)^n x^{2n}}{(2n)!} (converges for all xx)
  • 11x=n=0xn\frac{1}{1-x} = \sum_{n=0}^{\infty} x^n (converges for x<1|x| < 1)
  • ln(1+x)=n=1(1)n+1xnn\ln(1+x) = \sum_{n=1}^{\infty} \frac{(-1)^{n+1} x^n}{n} (converges for 1<x1-1 < x \leq 1)

These are building blocks. Many exam problems ask you to modify one of these (by substitution, differentiation, or integration) rather than build a series from scratch.

Representation of Functions as Power Series

Exponential, trigonometric, logarithmic, and rational functions can all be expressed as power series. The practical payoff: once a function is in series form, you can apply polynomial techniques to integrate or differentiate it. This is especially useful for functions like ex2e^{-x^2} that have no elementary antiderivative. Power series solutions also come up when standard methods for differential equations fail.

Compare: Taylor series vs. Maclaurin series: they're the same concept, just centered differently. Maclaurin (c=0c = 0) is simpler to compute, but Taylor (general cc) gives better approximations when you're working near a point other than zero. For instance, approximating lnx\ln x near x=2x = 2 calls for a Taylor series centered at c=2c = 2.


Operations on Power Series

One of the most useful features of power series is that you can differentiate and integrate them term by term, as long as you stay within the interval of convergence.

Differentiation of Power Series

Taking the derivative term by term:

ddxn=0an(xc)n=n=1nan(xc)n1\frac{d}{dx}\sum_{n=0}^{\infty} a_n (x - c)^n = \sum_{n=1}^{\infty} n\, a_n (x - c)^{n-1}

Notice the index shifts to n=1n = 1 (the constant term drops out). The radius of convergence stays the same, though endpoint behavior may change. For example, a series that converges at an endpoint might diverge there after differentiation.

This is how you'd derive the series for 1(1x)2\frac{1}{(1-x)^2}: differentiate the geometric series 11x=xn\frac{1}{1-x} = \sum x^n to get 1(1x)2=n=1nxn1\frac{1}{(1-x)^2} = \sum_{n=1}^{\infty} n\,x^{n-1}.

Integration of Power Series

Integrating term by term:

n=0an(xc)ndx=n=0ann+1(xc)n+1+C\int \sum_{n=0}^{\infty} a_n (x - c)^n\, dx = \sum_{n=0}^{\infty} \frac{a_n}{n+1} (x - c)^{n+1} + C

Again, the radius of convergence is preserved, though endpoints may now converge where they didn't before. Don't forget the constant of integration CC.

This is how you'd find the series for ln(1x)\ln(1-x): integrate 11x=xn\frac{-1}{1-x} = -\sum x^n term by term to get ln(1x)=n=1xnn+C\ln(1-x) = -\sum_{n=1}^{\infty} \frac{x^n}{n} + C, then use the initial condition ln(1)=0\ln(1) = 0 to find C=0C = 0.

Compare: Differentiation vs. integration of power series: both preserve the radius of convergence, but differentiation can lose convergence at endpoints while integration can gain it. Differentiation shifts the index down (starting at n=1n=1) and integration shifts it up (adding +1+1 to the exponent). Exam problems often ask you to derive one series from another using these operations.


Quick Reference Table

ConceptKey Details
Basic structurean(xc)n\sum a_n(x-c)^n; geometric series as simplest case
Radius of convergenceFound via Ratio or Root Test; defines $$
Interval of convergence(cR,c+R)(c-R, c+R) plus endpoint checks
Taylor seriesf(n)(c)n!(xc)n\sum \frac{f^{(n)}(c)}{n!}(x-c)^n
Maclaurin seriesTaylor series at c=0c=0; memorize ex,sinx,cosx,11x,ln(1+x)e^x, \sin x, \cos x, \frac{1}{1-x}, \ln(1+x)
Term-by-term differentiationPreserves RR; index starts at n=1n=1
Term-by-term integrationPreserves RR; don't forget +C+C

Self-Check Questions

  1. What is the relationship between the radius of convergence and the interval of convergence, and why must you test endpoints separately?

  2. Compare Taylor series and Maclaurin series. When would you choose one over the other for approximating a function?

  3. If you differentiate a power series, what happens to its radius of convergence? What about its interval of convergence (including endpoints)?

  4. Which convergence test would you use for a series with coefficients involving factorials versus one with coefficients involving nnth powers?

  5. Starting from the Maclaurin series for 11x\frac{1}{1-x}, how would you derive the series for 1(1x)2\frac{1}{(1-x)^2} and for ln(1x)\ln(1-x) using term-by-term operations?

2,589 studying →