An alternating series is a series whose terms alternate in sign: $b_1 - b_2 + b_3 - b_4 + \cdots$ or $-b_1 + b_2 - b_3 + \cdots$. The Alternating Series Test provides a simple way to determine convergence for such series, and the Alternating Series Error Bound tells us how close a partial sum is to the total sum.

🎯 In this section you will learn

📌 Alternating Series Test (Leibniz Test)

$$ \text{For } \sum_{n=1}^\infty (-1)^{n-1} b_n \text{ with } b_n > 0, $$ $$ \text{if } b_{n+1} \le b_n \text{ for all } n \text{ and } \lim_{n \to \infty} b_n = 0, $$ $$ \text{then the series converges.} $$
💡 The Two Conditions
Example 1Alternating Harmonic Series

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

Check decreasing
$b_n = \frac{1}{n}$, $b_{n+1} = \frac{1}{n+1} \le \frac{1}{n}$ ✓
Check limit
$\lim_{n \to \infty} \frac{1}{n} = 0$ ✓
Conclusion
The alternating harmonic series converges. (The regular harmonic series diverges!)
Example 2Alternating Series Test Fails

Test $\sum_{n=1}^\infty \frac{(-1)^{n-1} n}{n+1}$ for convergence.

📌 Alternating Series Error Bound

$$ \text{If } S = \sum_{n=1}^\infty (-1)^{n-1} b_n \text{ converges by AST, then } |S - S_N| \le b_{N+1} $$
The error after $N$ terms is less than the first omitted term
💡 Intuition

The partial sums of an alternating series "staircase" toward the total sum, and each new term is larger than the remaining error.

Example 3Error Bound for Alternating Harmonic Series

Approximate $\sum_{n=1}^\infty \frac{(-1)^{n-1}}{n}$ using $S_4 = 1 - \frac{1}{2} + \frac{1}{3} - \frac{1}{4} = 0.58333$. Find the error bound.

Example 4How Many Terms for a Given Accuracy?

For $\sum_{n=1}^\infty \frac{(-1)^{n-1}}{n^2}$, how many terms are needed to approximate the sum with error $< 0.01$?

Error bound
$|R_N| \le b_{N+1} = \frac{1}{(N+1)^2}$
Set inequality
$\frac{1}{(N+1)^2} < 0.01$ → $(N+1)^2 > 100$ → $N+1 > 10$ → $N > 9$
Conclusion
$N = 10$ terms guarantee error less than $0.01$.
⚠️ Common Mistakes
🔍 Key Takeaways
← Back to Module Page