01 — From Sequences to Series
A series is what you get when you add the terms of a sequence. Given a sequence {aₙ}, the corresponding series is:
Convergence is a question about the partial sums {Sₙ}: does this new sequence converge? Every test in this page answers that question by a different route.
02 — Test 1: The Divergence Test
Always try this first. It takes five seconds and can immediately rule out convergence.
If limn→∞ aₙ ≠ 0, then Σ aₙ diverges.
Critical warning: The converse is false. lim aₙ = 0 does not guarantee convergence. The harmonic series Σ 1/n has terms → 0 yet diverges.
03 — Known Series: Geometric and p-Series
Before testing, check if the series matches a known form.
- Geometric: Σ arⁿ → converges to a/(1−r) if |r| < 1; diverges if |r| ≥ 1.
- p-Series: Σ 1/nᵖ → converges if p > 1; diverges if p ≤ 1.
- Harmonic (p=1): Σ 1/n → DIVERGES. This is the canonical example of lim aₙ = 0 yet diverges.
04 — Test 2: The Integral Test
If f is continuous, positive, and decreasing on [1, ∞) with f(n) = aₙ, then:
Best for: Series whose general term is a nice function you can integrate, especially p-series, log terms, and terms involving eˣ.
05 — Test 3: The Comparison Test
Suppose 0 ≤ aₙ ≤ bₙ for all n ≥ N. Then:
- If Σ bₙ converges → Σ aₙ converges (smaller than a convergent series).
- If Σ aₙ diverges → Σ bₙ diverges (larger than a divergent series).
Strategy: compare with a geometric series or p-series of similar behaviour. You need the inequality to go the right way, this takes practice.
06 — Test 4: The Limit Comparison Test
Suppose aₙ, bₙ > 0. Compute the limit:
Best for: Rational functions, or any aₙ that "looks like" a known series for large n. Find the dominant terms in numerator and denominator.
07 — Test 5: The Ratio Test
Compute the limit of consecutive term ratios:
Best for: series involving factorials (n!), exponentials (aⁿ), or products, because consecutive ratios simplify beautifully. Fails at L = 1 for all p-series.
08 — Test 6: The Root Test
Compute the n-th root of |aₙ|:
Best for: series where aₙ is itself an n-th power, e.g. aₙ = (f(n))ⁿ. The n-th root collapses the exponent cleanly.
09 — Test 7: The Alternating Series Test
For series of the form Σ (−1)ⁿ bₙ (or Σ (−1)ⁿ⁺¹ bₙ) with bₙ > 0:
- bₙ is decreasing: bₙ₊₁ ≤ bₙ for all n ≥ N
- limn→∞ bₙ = 0
If both conditions hold, the series converges.
Error bound: |S − Sₙ| ≤ bₙ₊₁, the error is bounded by the first omitted term. Useful for numerical estimates.
Absolute vs conditional: If Σ |aₙ| also converges, the series converges absolutely. If Σ |aₙ| diverges but Σ aₙ converges, it is conditionally convergent.
10 — Decision Flowchart: Which Test to Use?
How to choose a convergence test
11 — Quick-Reference Summary Table
| Test | Condition | Conclusion | Best used for |
|---|---|---|---|
| Divergence | lim aₙ ≠ 0 | Diverges | First check always |
| Geometric | |r| < 1 | Converges = a/(1−r) | Recognising the form |
| p-Series | p > 1 | Converges | Recognising Σ 1/nᵖ |
| Integral | ∫ f(x)dx converges | Σ aₙ converges | Integrable terms, log |
| Direct Comparison | aₙ ≤ bₙ, Σbₙ conv. | Σ aₙ converges | When inequality is clear |
| Limit Comparison | lim aₙ/bₙ = L ∈ (0,∞) | Same as Σ bₙ | Rational-like terms |
| Ratio | lim|aₙ₊₁/aₙ| < 1 | Converges absolutely | Factorials, exponentials |
| Root | lim|aₙ|^(1/n) < 1 | Converges absolutely | n-th power terms |
| Alternating Series | bₙ↓0, alternating signs | Converges | (−1)ⁿ series |
12 — Twelve Worked Examples
Test Σ n/(n+1) for convergence.
lim n/(n+1) = lim 1/(1 + 1/n) = 1 ≠ 0Find the sum of Σn=0∞ 4·(3/5)ⁿ.
S = 4/(1 − 3/5) = 4/(2/5) = 10Does Σ 1/n³ converge?
Test Σ 1/(n ln n) for convergence (n ≥ 2).
∫ dx/(x ln x) = ln|ln x| + C∫2∞ dx/(x ln x) = [ln(ln x)]2∞ = ∞Test Σ 1/(n² + n) for convergence.
1/(n² + n) < 1/n² for all n ≥ 1.Test Σ (3n + 1)/(n³ − 2n) for convergence.
bₙ = 1/n².L = lim [(3n+1)/(n³−2n)] / [1/n²] = lim (3n³+n²)/(n³−2n)L = lim (3 + 1/n)/(1 − 2/n²) = 3Test Σ n!/nⁿ for convergence.
|(n+1)!/(n+1)ⁿ⁺¹| / |n!/nⁿ| = (n+1)·n! / [(n+1)·(n+1)ⁿ] · nⁿ/n!= nⁿ/(n+1)ⁿ = (n/(n+1))ⁿ = (1 − 1/(n+1))ⁿ(1 − 1/(n+1))ⁿ → e⁻¹ = 1/e ≈ 0.368 < 1Test Σ 5ⁿ/n! for convergence.
|5ⁿ⁺¹/(n+1)!| / |5ⁿ/n!| = 5/(n+1)Test Σ (2n/(n+1))ⁿ for convergence.
|aₙ|^(1/n) = 2n/(n+1)lim 2n/(n+1) = 2 > 1Test Σ (−1)ⁿ/√n for convergence.
Test Σ 1/n² using the Ratio Test, then fix it.
L = lim (1/(n+1)²)/(1/n²) = lim n²/(n+1)² = 1Classify Σ (−1)ⁿ/n²: absolutely convergent, conditionally convergent, or divergent?