Skip to content

Infinite Series

In this lesson you’ll learn what an infinite series is (a sequence in disguise), the divergence test and why it only works in one direction, the comparison and Cauchy criteria, and the difference between absolute and conditional convergence.

An infinite series is not a new kind of object. Given terms a1,a2,a_1, a_2, \dots, form the partial sums

sn=a1+a2++ans_n = a_1 + a_2 + \cdots + a_n

Then by definition

k=1ak=limnsn\sum_{k=1}^\infty a_k = \lim_{n\to\infty} s_n

if that limit exists. Everything from the sequence lessons applies immediately, because (sn)(s_n) is just a sequence.

The notation is unfortunate: ak\sum a_k looks like an operation performed on infinitely many numbers. It is a limit, and writing it down does not assert that it exists.

If ak\sum a_k converges then ak0a_k \to 0.

Proof. If snLs_n \to L then also sn1Ls_{n-1} \to L, and an=snsn1LL=0a_n = s_n - s_{n-1} \to L - L = 0. ∎

The useful form is the contrapositive: if the terms don’t tend to zero, the series diverges. That’s the first thing to check.

The converse is false, and this is the single most important fact in the lesson. The harmonic series 1k\sum \frac1k has terms tending to zero and diverges. So “the terms get small” is never a reason to conclude convergence.

Two proofs, both worth knowing.

Cauchy criterion. Take m=2nm = 2n:

s2nsn=1n+1++12nn12n=12s_{2n} - s_n = \frac{1}{n+1} + \cdots + \frac{1}{2n} \ge n \cdot \frac{1}{2n} = \frac12

With ε=12\varepsilon = \frac12 no threshold works, so (sn)(s_n) is not Cauchy and the series diverges.

Grouping (Oresme, c. 1350).

1+121/2+13+141/2+15++181/2+1 + \underbrace{\frac12}_{\ge 1/2} + \underbrace{\frac13+\frac14}_{\ge 1/2} + \underbrace{\frac15 + \cdots + \frac18}_{\ge 1/2} + \cdots

Each group of 2j2^{j} terms sums to at least 12\frac12, so the sums exceed any bound. It grows like lnn\ln n - slowly, and without limit.

k=0rk=11rfor r<1,divergent for r1\sum_{k=0}^\infty r^k = \frac{1}{1-r} \quad \text{for } |r| < 1, \qquad \text{divergent for } |r| \ge 1

From the closed form sn=1rn+11rs_n = \frac{1-r^{n+1}}{1-r}: when r<1|r|<1, rn+10r^{n+1} \to 0 and the limit follows. When r1|r| \ge 1 the terms don’t tend to zero, so the divergence test settles it.

This is the reference series for comparisons, and it is one of very few whose sum you can write down exactly.

ak\sum a_k converges     \iff for every ε>0\varepsilon>0 there is NN such that for all m>n>Nm > n > N,

k=n+1mak<ε\left|\sum_{k=n+1}^{m} a_k\right| < \varepsilon

This is the Cauchy condition applied to (sn)(s_n), since smsns_m - s_n is exactly that block. In words: every sufficiently late finite block is small. It lets you settle convergence without knowing the sum, which is the normal case.

Comparison test. Suppose 0akbk0 \le a_k \le b_k for all kk.

  • If bk\sum b_k converges, so does ak\sum a_k.
  • If ak\sum a_k diverges, so does bk\sum b_k.

For non-negative terms the partial sums are increasing, so by monotone convergence they converge exactly when they are bounded. A convergent dominating series supplies the bound. Monotone convergence is doing the work, which is why this test needs non-negativity.

Useful companion: the pp-series 1kp\sum \frac{1}{k^p} converges for p>1p > 1 and diverges for p1p \le 1. With p=1p=1 that’s the harmonic series.

ak\sum a_k converges absolutely if ak\sum |a_k| converges.

Absolute convergence implies convergence.

Proof. Use the Cauchy criterion: n+1makn+1mak\left|\sum_{n+1}^m a_k\right| \le \sum_{n+1}^m |a_k|, and the right side is small because ak\sum|a_k| is Cauchy. ∎

A series that converges but not absolutely converges conditionally. The standard example is the alternating harmonic series

(1)k+1k=112+13=ln2\sum \frac{(-1)^{k+1}}{k} = 1 - \frac12 + \frac13 - \cdots = \ln 2

which converges, while 1k\sum \frac1k does not.

The distinction has teeth. Absolutely convergent series can be rearranged freely without changing the sum. Conditionally convergent ones cannot. Riemann’s rearrangement theorem says a conditionally convergent series can be reordered to sum to any real number you nominate, or to diverge. Rearranging the alternating harmonic series can produce 5, or π-\pi, or nothing. Commutativity of addition does not survive infinite sums without absolute convergence.

Example 1: Does kk+1\sum \frac{k}{k+1} converge?

Solution. Check the terms first:

kk+110\frac{k}{k+1} \to 1 \ne 0

By the divergence test, the series diverges. Adding infinitely many things each close to 1 was never going to settle.

Always run this check first. It’s one line and it resolves many series immediately.

Example 2: Does 1k2+3k\sum \frac{1}{k^2+3k} converge?

Solution. Terms are positive, and

1k2+3k<1k2\frac{1}{k^2+3k} < \frac{1}{k^2}

Since 1k2\sum \frac{1}{k^2} is a pp-series with p=2>1p = 2 > 1, it converges. By comparison, the series converges. ∎

Note we never computed the sum. (It happens to be 1118\frac{11}{18}, but that took extra work and comparison didn’t need it.)

Example 3: Does 1k\sum \frac{1}{\sqrt k} converge?

Solution. pp-series with p=121p = \frac12 \le 1, so it diverges.

By comparison: 1k1k\frac{1}{\sqrt k} \ge \frac1k for k1k \ge 1, and the harmonic series diverges, so this one does too.

The terms go to zero, and it still diverges. It goes like 2n2\sqrt n, which is slow and unbounded.

Example 4: Comparison in the wrong direction.

A student argues: 1k2<1k\frac{1}{k^2} < \frac{1}{k}, and 1k\sum \frac1k diverges, so 1k2\sum \frac{1}{k^2} diverges. What’s wrong?

Solution. The comparison test runs one way. Being smaller than a divergent series says nothing - the smaller series may well converge, and here it does, to π26\frac{\pi^2}{6}.

The valid inferences are: smaller than convergent gives convergent; bigger than divergent gives divergent. Get the direction backwards and the test is useless.

Example 5: Absolute versus conditional.

Classify (1)kk2\sum \frac{(-1)^k}{k^2} and (1)kk\sum \frac{(-1)^k}{k}.

Solution. For the first, (1)kk2=1k2\sum \left|\frac{(-1)^k}{k^2}\right| = \sum \frac{1}{k^2} converges, so the series converges absolutely.

For the second, 1k\sum \frac1k diverges, so it is not absolutely convergent. It does converge, by the alternating series test, so it converges conditionally.

Practical consequence: you may rearrange or regroup the first freely. Doing so to the second can change the answer to anything at all.

Example 6: A telescoping series.

Evaluate k=11k(k+1)\sum_{k=1}^\infty \frac{1}{k(k+1)}.

Solution. Partial fractions give 1k(k+1)=1k1k+1\frac{1}{k(k+1)} = \frac1k - \frac{1}{k+1}, so

sn=(112)+(1213)++(1n1n+1)=11n+1s_n = \left(1 - \tfrac12\right) + \left(\tfrac12 - \tfrac13\right) + \cdots + \left(\tfrac1n - \tfrac1{n+1}\right) = 1 - \frac{1}{n+1}

Everything cancels except the ends. Then sn1s_n \to 1, so the sum is 1. ∎

Telescoping is one of the rare cases where an exact closed form for sns_n is available, which is why it’s worth spotting.

Example 7: Using the Cauchy criterion.

Show 1k2\sum \frac{1}{k^2} converges without evaluating it.

Solution. For m>nm > n, use 1k2<1k(k1)=1k11k\frac{1}{k^2} < \frac{1}{k(k-1)} = \frac{1}{k-1} - \frac1k:

k=n+1m1k2<k=n+1m(1k11k)=1n1m<1n\sum_{k=n+1}^{m} \frac{1}{k^2} < \sum_{k=n+1}^{m}\left(\frac{1}{k-1} - \frac1k\right) = \frac1n - \frac1m < \frac1n

Given ε>0\varepsilon>0, choose N>1εN > \frac1\varepsilon. Then every block past NN is below ε\varepsilon, so the partial sums are Cauchy and the series converges. ∎

Note the telescoping bound did the work, and the actual value π26\frac{\pi^2}{6} never appeared.

Numerical series and floating point. Summing a series on a computer stops after finitely many terms, so the error is the tail. Bounding that tail is exactly the Cauchy criterion, and it is how library functions decide how many terms of a Taylor series to use.

Compound interest and annuities. The present value of a perpetuity is a geometric series, Pr\frac{P}{r}, and it converges only when the discount rate exceeds the growth rate. Valuation models that produce infinite values have crossed that boundary.

Signal processing. A Fourier series is an infinite series of sinusoids. Whether it converges absolutely or only conditionally determines whether you can rearrange or regroup terms safely, and mishandling that is one source of reconstruction artifacts.

Probability. An expected value of a discrete random variable is a series, and it exists only if the series converges absolutely. The St. Petersburg paradox is a game whose expected payout series diverges, which is why the “fair price” is unbounded.

Zeno’s paradoxes. Achilles’ pursuit is the geometric series 2k=1\sum 2^{-k} = 1: infinitely many steps, finite total. The resolution is that an infinite sum of shrinking terms can be finite, which is a statement about partial sums converging.

Algorithm analysis. The expected cost of many randomized algorithms is a series, and the harmonic series appears constantly. The lnn\ln n growth of 1k\sum \frac1k is exactly why quicksort’s expected comparison count carries a logn\log n factor.

What does it mean for Σ aₖ to converge?
The harmonic series Σ 1/k has terms tending to 0. What does it do?
Which comparison is valid?
For which p does Σ 1/kᵖ converge?
What is the practical difference between absolute and conditional convergence?
Does Σ k/(k+1) converge?