§ 01The Shared Idea — Geometric Series as a Template
Both tests work by comparing your series to a geometric series. If the ratio between consecutive terms (or the nᵗʰ root of each term) is eventually less than 1, the series behaves like a convergent geometric series.
Recall that a geometric series Σ rⁿ converges iff |r| < 1. The Ratio Test asks: does the ratio |an+1/aₙ| approach something less than 1? The Root Test asks: does |aₙ|^(1/n) approach something less than 1? Both answers confirm convergence by sandwiching the series inside a geometric comparison.
§ 02The Ratio Test (D'Alembert)
Let Σaₙ be a series of non-zero terms. Compute:
L = limn→∞ |an+1| / |aₙ|The test then gives three possible outcomes based on L:
Why L = 1 is the Dead Zone
When L = 1, the Ratio Test provides no information. As a striking illustration: both the harmonic series Σ 1/n (divergent) and Σ 1/n² (convergent) give L = 1 in the Ratio Test, yet they have opposite behaviour. The boundary L = 1 is where the geometric comparison breaks down.
Factorial Simplification — The Key Technique
The Ratio Test's power comes from factorial cancellation. When aₙ involves n!, forming the ratio an+1/aₙ causes almost everything to cancel, leaving a simple expression.
Memorise these: they appear in nearly every Ratio Test calculation.
Worked Examples — Ratio Test
Test Σn=0∞ n! / 5ⁿ for convergence.
- Set up the ratio: |an+1/aₙ| = [(n+1)! / 5^(n+1)] / [n! / 5ⁿ]
- = (n+1)! · 5ⁿ / (n! · 5^(n+1)) = (n+1) / 5
- Take the limit: L = lim (n+1)/5 = ∞ > 1.
- Since L > 1, the series diverges. (The terms blow up, n! grows faster than 5ⁿ.)
- Diverges (L = ∞)
Test Σn=0∞ 3ⁿ / n! for convergence.
- Ratio: |an+1/aₙ| = [3^(n+1) / (n+1)!] / [3ⁿ / n!]
- = 3^(n+1) · n! / (3ⁿ · (n+1)!) = 3 / (n+1)
- L = lim 3/(n+1) = 0 < 1.
- Series converges absolutely. (This is the Maclaurin series for e³ = Σ 3ⁿ/n!, which sums to e³ ≈ 20.09.)
- Converges (L = 0)
Test Σn=1∞ (2n)! / (n!)² for convergence.
- Ratio: an+1/aₙ = [(2n+2)! / ((n+1)!)²] / [(2n)! / (n!)²]
- = (2n+2)! · (n!)² / ((n+1)!)² · (2n)!)
- Simplify: (2n+2)!/(2n)! = (2n+2)(2n+1). And (n!)²/((n+1)!)² = 1/(n+1)². = (2n+2)(2n+1)/(n+1)² = 2(n+1)(2n+1)/(n+1)² = 2(2n+1)/(n+1)
- L = lim 2(2n+1)/(n+1) = lim (4n+2)/(n+1) = 4 > 1.
- Diverges (L = 4)
Test Σn=1∞ n² / 2ⁿ for convergence.
- Ratio: |(n+1)² / 2^(n+1)| / |n² / 2ⁿ| = (n+1)² / (2 · n²)
- L = lim (n+1)² / (2n²) = lim (n² + 2n + 1)/(2n²) = 1/2 < 1.
- Converges absolutely.
- Converges (L = 1/2)
Apply the Ratio Test to Σ 1/n³. What happens?
- Ratio: |1/(n+1)³| / |1/n³| = n³/(n+1)³ = (n/(n+1))³
- L = lim (n/(n+1))³ = 1³ = 1.
- L = 1 ⟹ Ratio Test is inconclusive.
- Use the p-series test instead: p = 3 > 1 ⟹ converges.
- Inconclusive (use p-series)
Find the radius of convergence of Σn=0∞ xⁿ / n!.
- Ratio: |x^(n+1)/(n+1)!| / |xⁿ/n!| = |x| · n!/(n+1)! = |x|/(n+1).
- L = lim |x|/(n+1) = 0 for any fixed x.
- Since L = 0 < 1 for all x ∈ ℝ, the series converges for every real number.
- Radius of convergence R = ∞. (This is the Taylor series for eˣ.)
- Converges for all x (R = ∞)
§ 03The Root Test (Cauchy)
Let Σaₙ be any series. Compute the limsup (or limit if it exists):
L = limn→∞ |aₙ|1/nSame three-way conclusion as the Ratio Test: L < 1 ⟹ converges, L > 1 ⟹ diverges, L = 1 ⟹ inconclusive.
Key Limit for the Root Test
The most important limit needed for the Root Test is:
Polynomial factors like nᵏ contribute n^(k/n) → 1 and can be ignored in the limit.
Worked Examples — Root Test
Test Σn=1∞ (3/4)ⁿ using the Root Test.
- |aₙ|^(1/n) = |(3/4)ⁿ|^(1/n) = 3/4.
- L = 3/4 < 1.
- Series converges absolutely. (This is a geometric series; sum = (3/4)/(1 − 3/4) = 3.)
- Converges (L = 3/4)
Test Σn=1∞ (2n/(3n+1))ⁿ for convergence.
- |aₙ|^(1/n) = |(2n/(3n+1))ⁿ|^(1/n) = 2n/(3n+1).
- L = lim 2n/(3n+1) = 2/3 < 1.
- Series converges absolutely.
- Converges (L = 2/3)
Test Σn=1∞ (n/(n+1))^(n²) for convergence.
- |aₙ|^(1/n) = [(n/(n+1))^(n²)]^(1/n) = (n/(n+1))ⁿ.
- Rewrite: (n/(n+1))ⁿ = (1 − 1/(n+1))ⁿ.
- As n → ∞: (1 − 1/(n+1))ⁿ → e^(−1) = 1/e ≈ 0.368 < 1.
- L = 1/e < 1 ⟹ converges absolutely.
- Converges (L = 1/e)
Test Σn=1∞ n^n / eⁿ² for convergence. (Hint: use the Root Test.)
- |aₙ|^(1/n) = [n^n / e^(n²)]^(1/n) = n^(n/n) / e^(n²/n) = n / eⁿ.
- L = lim n/eⁿ. Since eⁿ grows much faster than n, this limit is 0 < 1.
- Converges absolutely.
- Converges (L = 0)
§ 04Ratio vs Root — When to Use Each
| Feature | Ratio Test | Root Test |
|---|---|---|
| Best for | Series with n! (factorials), products of n terms, or explicit exponentials like aⁿ or rⁿ | Series of the form (f(n))ⁿ — anything raised to the nᵗʰ power |
| Key operation | Compute an+1/aₙ and cancel | Compute |aₙ|^(1/n) and simplify |
| Factorial handling | Excellent — (n+1)!/n! = n+1 cancels cleanly | Poor — n!^(1/n) requires Stirling's approximation |
| nᵗʰ power handling | Works but messier | Excellent — ((f(n))ⁿ)^(1/n) = f(n) collapses immediately |
| Theoretical strength | Weaker — Root Test always gives same or better result | Stronger — if Ratio Test gives L, Root Test gives same L |
| Fails for (L = 1) | All p-series, many rational-term series | All p-series, many rational-term series |
| Power series radius | Both work: R = 1/L | Both work: R = 1/L |
Two More Worked Examples — Mixed Situations
Find the radius of convergence of Σn=1∞ n · xⁿ / 3ⁿ.
- aₙ = n · xⁿ / 3ⁿ. Apply Ratio Test: |an+1/aₙ| = |(n+1)x^(n+1)/3^(n+1)| / |nxⁿ/3ⁿ| = (n+1)|x| / (3n)
- L = lim (n+1)|x|/(3n) = |x|/3.
- Converges when L < 1: |x|/3 < 1 iff |x| < 3.
- Radius of convergence R = 3. At |x| = 3 (the boundary), check separately with other tests.
- Converges for |x| < 3 (R = 3)
Test Σn=1∞ (n/(n+1))ⁿ · (1/2ⁿ) for convergence using the Root Test.
- aₙ = (n/(n+1))ⁿ · (1/2)ⁿ = [(n/(n+1)) · (1/2)]ⁿ = (n/(2(n+1)))ⁿ.
- Root Test: |aₙ|^(1/n) = n/(2(n+1)).
- L = lim n/(2(n+1)) = 1/2 < 1.
- Converges absolutely.
- Converges (L = 1/2 via Root Test)
Rust curve: |a_{n+1}/a_n|. Gold dashed: L value. When the curve settles below 1, the series converges.
Teal curve: |aₙ|^(1/n). Gold dashed: L. Settles below/above 1 to determine convergence/divergence.
§ 05Common Mistakes
§ 06Related Pages
§ 07Quiz — Test Your Understanding
10 questions covering the Ratio Test, Root Test, inconclusive cases, factorials, and power series radius.
If the Ratio Test gives L = 0.7, the series:
For aₙ = 2ⁿ/n!, the ratio |an+1/aₙ| simplifies to:
The Ratio Test gives L = 1 for Σ 1/n². What should you do next?
The Root Test is better than the Ratio Test for series containing:
For aₙ = (n/5)ⁿ, the Root Test gives |aₙ|^(1/n) = ?
Since lim n/5 → ∞ for aₙ = (n/5)ⁿ, the Root Test concludes:
Σn=0∞ n! / nⁿ, the Ratio Test gives L = ?
For Σ aₙxⁿ, the Ratio Test gives lim |an+1/aₙ| = 4. The radius of convergence R = ?
Σ (1 + 1/n)^(n²): the Root Test gives |aₙ|^(1/n) = (1 + 1/n)ⁿ → ?
Both the Ratio and Root Tests are theoretically inconclusive at L = 1. Which test is strictly stronger (never worse than the other)?