The Ratio Test and Root Test are powerful tools for determining absolute convergence, especially for series involving factorials, exponentials, and powers. They are particularly useful because they don't require a comparison series.

🎯 In this section you will learn

📌 Ratio Test

$$ \text{Let } L = \lim_{n \to \infty} \left| \frac{a_{n+1}}{a_n} \right| $$ $$ \text{If } L < 1, \text{ the series converges absolutely.} $$ $$ \text{If } L > 1, \text{ the series diverges.} $$ $$ \text{If } L = 1, \text{ the test is inconclusive.} $$
💡 When to use Ratio Test

Best for series with factorials ($n!$) or exponentials ($r^n$) because cancellation often occurs.

Example 1Ratio Test with Factorial

Test $\sum_{n=1}^\infty \frac{2^n}{n!}$ for convergence.

Set up the ratio
$\frac{a_{n+1}}{a_n} = \frac{2^{n+1}}{(n+1)!} \cdot \frac{n!}{2^n} = \frac{2}{n+1}$
Take the limit
$L = \lim_{n \to \infty} \frac{2}{n+1} = 0$
Conclusion
Since $L = 0 < 1$, the series converges absolutely.
Example 2Ratio Test Divergence

Test $\sum_{n=1}^\infty \frac{n!}{2^n}$ for convergence.

Example 3Ratio Test Inconclusive

Test $\sum_{n=1}^\infty \frac{1}{n^2}$ using the Ratio Test.

📌 Root Test

$$ \text{Let } L = \lim_{n \to \infty} |a_n|^{1/n} $$ $$ \text{If } L < 1, \text{ the series converges absolutely.} $$ $$ \text{If } L > 1, \text{ the series diverges.} $$ $$ \text{If } L = 1, \text{ the test is inconclusive.} $$
💡 When to use Root Test

Best for series where the $n$th term is raised to the $n$th power, like $(something)^n$.

Example 4Root Test

Test $\sum_{n=1}^\infty \left(\frac{2n+3}{3n+2}\right)^n$ for convergence.

Compute $|a_n|^{1/n}$
$|a_n|^{1/n} = \frac{2n+3}{3n+2}$
Take the limit
$L = \lim_{n \to \infty} \frac{2n+3}{3n+2} = \frac{2}{3}$
Conclusion
Since $L = 2/3 < 1$, the series converges absolutely.
Example 5Root Test with Exponential

Test $\sum_{n=1}^\infty \frac{3^n}{n^n}$ for convergence.

⚠️ Important Notes
🔍 Key Takeaways
← Back to Module Page