Fiveable

Calculus II Unit 5 Review

QR code for Calculus II practice questions

5.2 Infinite Series

5.2 Infinite Series

Written by the Fiveable Content Team • Last updated August 2025
Written by the Fiveable Content Team • Last updated August 2025
Calculus II
Unit & Topic Study Guides

Introduction to Infinite Series

An infinite series is a sum of infinitely many terms. Rather than just listing numbers (that's a sequence), you're actually adding them all up. The central question is: does that sum settle on a finite value, or does it blow up?

Concept of Infinite Series Sums

An infinite series takes a sequence {an}\{a_n\} and sums its terms:

n=1an=a1+a2+a3+\sum_{n=1}^{\infty} a_n = a_1 + a_2 + a_3 + \cdots

To make sense of this, we use partial sums. The NNth partial sum is:

SN=a1+a2++aNS_N = a_1 + a_2 + \cdots + a_N

If the sequence of partial sums {SN}\{S_N\} approaches a finite limit LL as NN \to \infty, the series converges to LL. If it doesn't approach any finite value, the series diverges.

This distinction matters because convergent series can stand in for exact values and be used in function approximation, integration, and solving differential equations. A divergent series, on the other hand, doesn't produce a usable sum.

Sequences vs. Series

Keep these straight, since mixing them up is a common mistake:

  • A sequence is an ordered list of numbers {an}\{a_n\}. You care about what happens to the individual terms as nn \to \infty.
  • A series is the sum of a sequence's terms. You care about what happens to the running total.

A sequence can converge (its terms approach a limit) while the corresponding series diverges. Classic example: an=1na_n = \frac{1}{n} converges to 0 as a sequence, but n=11n\sum_{n=1}^{\infty} \frac{1}{n} (the harmonic series) diverges.

One quick test follows from this: if limnan0\lim_{n \to \infty} a_n \neq 0, the series an\sum a_n must diverge. This is the Divergence Test (also called the nnth-Term Test). But be careful: if the limit is zero, that alone doesn't guarantee convergence. The harmonic series proves that.

Concept of infinite series sums, Power Series and Functions · Calculus

Types of Infinite Series

Geometric Series

A geometric series has a constant ratio rr between successive terms:

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

where aa is the first term and rr is the common ratio.

Convergence rule:

  • If r<1|r| < 1, the series converges to a1r\dfrac{a}{1 - r}
  • If r1|r| \geq 1, the series diverges

Where the formula comes from:

  1. Write the partial sum: SN=a+ar+ar2++arN1S_N = a + ar + ar^2 + \cdots + ar^{N-1}

  2. Multiply both sides by rr: rSN=ar+ar2++arNrS_N = ar + ar^2 + \cdots + ar^N

  3. Subtract: SNrSN=aarNS_N - rS_N = a - ar^N

  4. Factor: SN(1r)=a(1rN)S_N(1 - r) = a(1 - r^N)

  5. Solve: SN=a(1rN)1rS_N = \dfrac{a(1 - r^N)}{1 - r}

  6. When r<1|r| < 1, rN0r^N \to 0 as NN \to \infty, so S=a1rS_\infty = \dfrac{a}{1 - r}

Example: Express 0.33330.3333\ldots as a fraction.

Write it as n=13(0.1)n=0.3+0.03+0.003+\sum_{n=1}^{\infty} 3 \cdot (0.1)^n = 0.3 + 0.03 + 0.003 + \cdots. Here a=0.3a = 0.3 and r=0.1r = 0.1, so the sum is 0.310.1=0.30.9=13\dfrac{0.3}{1 - 0.1} = \dfrac{0.3}{0.9} = \dfrac{1}{3}.

Geometric series also show up in modeling exponential decay, computing present value in finance, and finding areas of self-similar geometric figures.

Concept of infinite series sums, convergence - Showing that two infinite series converge to the same value - Mathematics Stack ...

Telescoping Series

A telescoping series is one where most terms cancel when you write out the partial sums, leaving only a few terms at the beginning and end.

How to solve a telescoping series:

  1. Decompose the general term (usually via partial fractions) into a difference of simpler expressions.
  2. Write out several terms of the partial sum and observe the cancellation pattern.
  3. Identify which terms survive after cancellation.
  4. Take the limit of the remaining terms as NN \to \infty.

Example: Find n=11n(n+1)\sum_{n=1}^{\infty} \dfrac{1}{n(n+1)}

  1. Partial fraction decomposition: 1n(n+1)=1n1n+1\dfrac{1}{n(n+1)} = \dfrac{1}{n} - \dfrac{1}{n+1}

  2. Write out the partial sum: SN=(1112)+(1213)+(1314)++(1N1N+1)S_N = \left(\frac{1}{1} - \frac{1}{2}\right) + \left(\frac{1}{2} - \frac{1}{3}\right) + \left(\frac{1}{3} - \frac{1}{4}\right) + \cdots + \left(\frac{1}{N} - \frac{1}{N+1}\right)

  3. Nearly everything cancels. What's left: SN=11N+1S_N = 1 - \dfrac{1}{N+1}

  4. Take the limit: limNSN=10=1\lim_{N \to \infty} S_N = 1 - 0 = 1

The key skill with telescoping series is recognizing that a term can be split into a difference. Partial fraction decomposition is your main tool here, so stay sharp on that technique.

Power Series and Radius of Convergence

A power series is an infinite series where each term involves a power of (xc)(x - c):

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 cc is the center of the series and the ana_n are the coefficients.

The radius of convergence RR tells you how far from the center the series converges:

  • For xc<R|x - c| < R, the series converges.
  • For xc>R|x - c| > R, the series diverges.
  • At xc=R|x - c| = R (the endpoints), you have to check each case separately.

You typically find RR using the Ratio Test or the Root Test applied to the series terms. Power series are the foundation for Taylor and Maclaurin series, which let you represent functions like exe^x, sinx\sin x, and ln(1+x)\ln(1+x) as infinite polynomials. That representation is what makes many approximation and integration techniques possible.