Comparison tests allow us to determine convergence or divergence of a series by comparing it to a series whose behavior we already know (like geometric or $p$-series). These tests are powerful tools for series with positive terms.

🎯 In this section you will learn

📌 Direct Comparison Test

$$ \text{Suppose } 0 \le a_n \le b_n \text{ for all } n. $$ $$ \text{If } \sum b_n \text{ converges, then } \sum a_n \text{ converges.} $$ $$ \text{If } \sum a_n \text{ diverges, then } \sum b_n \text{ diverges.} $$
💡 Intuition
Example 1Direct Comparison (Convergence)

Determine if $\sum_{n=1}^\infty \frac{1}{n^2 + 1}$ converges.

Find a comparison series
$\frac{1}{n^2 + 1} \le \frac{1}{n^2}$ for all $n$.
Known series
$\sum \frac{1}{n^2}$ is a convergent $p$-series ($p=2>1$).
Apply Direct Comparison
Since $0 \le \frac{1}{n^2+1} \le \frac{1}{n^2}$ and $\sum \frac{1}{n^2}$ converges, $\sum \frac{1}{n^2+1}$ converges.
Example 2Direct Comparison (Divergence)

Determine if $\sum_{n=1}^\infty \frac{1}{\sqrt{n+1}}$ diverges.

Find a comparison series
$\frac{1}{\sqrt{n+1}} \ge \frac{1}{\sqrt{2n}} = \frac{1}{\sqrt{2}} \cdot \frac{1}{\sqrt{n}}$ for large $n$.
Known series
$\sum \frac{1}{\sqrt{n}} = \sum 1/n^{0.5}$ diverges ($p=0.5<1$).
Apply Direct Comparison
Since $\frac{1}{\sqrt{n+1}} \ge \frac{1}{\sqrt{2n}}$ and $\sum \frac{1}{\sqrt{n}}$ diverges, $\sum \frac{1}{\sqrt{n+1}}$ diverges.

📌 Limit Comparison Test

$$ \text{If } a_n, b_n > 0 \text{ and } \lim_{n \to \infty} \frac{a_n}{b_n} = L \text{ where } 0 < L < \infty, $$ $$ \text{then } \sum a_n \text{ and } \sum b_n \text{ either both converge or both diverge.} $$
💡 When to use Limit Comparison

The Limit Comparison Test is often easier when the inequality direction is unclear or when $a_n$ behaves like a simpler $b_n$ for large $n$.

Example 3Limit Comparison Test

Determine if $\sum_{n=1}^\infty \frac{2n^2 + 3n + 1}{n^4 + 5}$ converges.

Choose $b_n$
For large $n$, $a_n \approx \frac{2n^2}{n^4} = \frac{2}{n^2}$. Let $b_n = \frac{1}{n^2}$.
Compute the limit
$\lim_{n \to \infty} \frac{a_n}{b_n} = \lim_{n \to \infty} \frac{(2n^2+3n+1)/n^4+5}{1/n^2} = \lim_{n \to \infty} \frac{2n^2+3n+1}{n^4+5} \cdot n^2 = \lim_{n \to \infty} \frac{2n^4+3n^3+n^2}{n^4+5} = 2$
Conclusion
Since $0 < 2 < \infty$ and $\sum 1/n^2$ converges, $\sum a_n$ converges.
Example 4Limit Comparison with Harmonic Series

Determine if $\sum_{n=1}^\infty \frac{n}{n^2 + 1}$ converges or diverges.

Choose $b_n$
For large $n$, $a_n \approx \frac{n}{n^2} = \frac{1}{n}$. Let $b_n = \frac{1}{n}$.
Compute the limit
$\lim_{n \to \infty} \frac{a_n}{b_n} = \lim_{n \to \infty} \frac{n/(n^2+1)}{1/n} = \lim_{n \to \infty} \frac{n^2}{n^2+1} = 1$
Conclusion
Since $\sum 1/n$ diverges, $\sum \frac{n}{n^2+1}$ diverges.
⚠️ Important Notes
🔍 Key Takeaways
← Back to Module Page