Conditional Convergence

Which Of The Following Series Is Conditionally Convergent

7 min read

You're staring at a series problem on an exam. Day to day, absolute convergence? The original series converges. Here's the thing — your stomach drops — is this conditional convergence? The absolute value series diverges. The terms alternate. Does it even matter?

It matters. A lot.

Conditionally convergent series are the weird cousins of the convergence family. They converge, but barely. Even so, that's not a quirk. Rearrange their terms and you can make them sum to anything — or diverge entirely. That's a fundamental property that breaks intuition and reshaped how mathematicians think about infinite sums.

What Is Conditional Convergence

A series $\sum a_n$ is conditionally convergent when it converges, but the series of absolute values $\sum |a_n|$ diverges.

That's the whole definition. Simple on paper. Messy in practice.

The classic example is the alternating harmonic series:

$\sum_{n=1}^{\infty} \frac{(-1)^{n+1}}{n} = 1 - \frac{1}{2} + \frac{1}{3} - \frac{1}{4} + \frac{1}{5} - \cdots$

This converges to $\ln(2)$. But strip the signs and you get the harmonic series:

$\sum_{n=1}^{\infty} \frac{1}{n} = 1 + \frac{1}{2} + \frac{1}{3} + \frac{1}{4} + \cdots$

Which diverges. Slowly, painfully, but it diverges.

The Two Flavors of Convergence

Every convergent series falls into exactly one of two buckets:

Absolutely convergent: $\sum a_n$ converges AND $\sum |a_n|$ converges. These are well-behaved. Rearrange terms, group them, multiply by constants — the sum stays the same. The commutative and associative properties you learned in elementary school still work.

Conditionally convergent: $\sum a_n$ converges BUT $\sum |a_n|$ diverges. These are the troublemakers. The Riemann rearrangement theorem says you can rearrange a conditionally convergent series to converge to any real number. Or diverge to $+\infty$. Or $-\infty$. Or oscillate forever.

That theorem should make you pause. It means the sum of a conditionally convergent series isn't really a property of the set of terms — it's a property of the ordering*.

Why the Distinction Exists

Think about what convergence means. Day to day, the terms $a_n$ must get small. For $\sum a_n$ to converge, the partial sums $S_N = \sum_{n=1}^N a_n$ must approach a finite limit. But they don't have to get small fast enough* for the absolute series to converge.

Conditional convergence lives in that gap — terms small enough to converge with cancellation, but not small enough to converge without it.

The alternating signs do heavy lifting. Positive and negative terms cancel each other out, allowing convergence even when the magnitudes decay like $1/n$ (too slow for absolute convergence).

Why It Matters

You might wonder: who cares? The series converges. Isn't that enough?

Not if you ever manipulate series. And you will.

Power Series and Radius of Convergence

Power series $\sum c_n (x-a)^n$ converge absolutely inside their radius of convergence. At the boundary? Consider this: all bets are off. You'll hit conditional convergence constantly.

The series for $\ln(1+x)$ centered at 0:

$\ln(1+x) = x - \frac{x^2}{2} + \frac{x^3}{3} - \frac{x^4}{4} + \cdots$

At $x=1$, this becomes the alternating harmonic series — conditionally convergent. At $x=-1$, it becomes the negative harmonic series — divergent. The behavior at the boundary determines whether you can integrate term-by-term, differentiate, or plug in endpoints.

Fourier series? Because of that, same story. Practically speaking, the convergence at discontinuities involves conditional convergence phenomena (Gibbs phenomenon, anyone? ).

Numerical Computation

If you're summing a conditionally convergent series numerically, the order matters. Summing left-to-right gives one answer. Summing positive terms first, then negative? Different answer. Kahan summation helps, but you're fighting the mathematics itself.

This isn't theoretical. Financial models, physics simulations, signal processing — anywhere you approximate infinite sums with finite computations, conditional convergence bites.

The Riemann Rearrangement Theorem in Practice

Here's the theorem statement: If $\sum a_n$ is conditionally convergent, then for any extended real number $L \in [-\infty, +\infty]$, there exists a permutation $\sigma$ of $\mathbb{N}$ such that $\sum a_{\sigma(n)} = L$.

Let that sink in. Worth adding: the same terms. So different order. Any sum you want.

The proof is constructive: take positive terms until you exceed $L$, then negative terms until you go below, repeat. This leads to the terms go to zero, so the overshoot shrinks. The partial sums converge to $L$.

This isn't just a party trick. So it means the sum of a conditionally convergent series is not well-defined without specifying the order. The series as written* has a sum. The set of terms does not.

Want to learn more? We recommend ap english language and composition scoring and gender roles slavery and racial identity for further reading.

How to Identify Conditional Convergence

You're given a series. How do you tell if it's conditionally convergent, absolutely convergent, or divergent?

Step 1: Check Absolute Convergence First

Test $\sum |a_n|$. Use your standard tools:

  • p-series test: $\sum 1/n^p$ converges iff $p > 1$
  • Ratio test: $\lim |a_{n+1}/a_n|$
  • Root test: $\lim |a_n|^{1/n}$
  • Comparison/limit comparison: compare to known series
  • Integral test: when terms come from a nice decreasing function

If $\sum |a_n|$ converges, you're done — absolutely convergent. No conditional convergence possible.

Step 2: If Absolute Series Diverges, Test the Original Series

Now test $\sum a_n$ itself. For alternating series, the Alternating Series Test (Leibniz criterion) is your go-to:

If $b_n > 0$, $b_n$ decreases, and $b_n \to 0$, then $\sum (-1)^n b_n$ converges.

But wait — the AST only proves convergence. It doesn't tell you absolute* vs conditional*. Worth adding: you already know the absolute series diverges (from Step 1). So if AST applies, you've got conditional convergence.

Step 3: Non-Alternating Series

What if the series isn't nicely alternating? Conditional convergence can still happen. Consider:

$\sum_{n=1}^{\infty} \frac{\sin n}{n}$

This converges (by Dirichlet's test), but $\sum |\sin n|/n$ diverges (since $|\sin n|$ doesn't decay). Conditionally convergent.

Dirichlet's test and Abel's test are the heavy machinery here. They handle series where terms have oscillating signs but not strict alternation.

A Decision Flowchart

Given series ∑a_n
    │
    ▼
Test ∑|a_n|
    │
    ├─→ Converges? ──→ ABSOLUTELY CONVERGENT (stop)
    │
    ▼
Diverges
    │
    ▼
Test ∑a_n
    │
    ├─→ Diverges? ──→ DIVERGENT (stop)
    │
    ▼
Converges
    │
    ▼
CONDITIONALLY CONVERGENT

Common Mistakes

Mistake 1: Assuming Convergence Implies Absolute Convergence

This is the big one.

Students often see a series converge and immediately assume it must be "stable.But the harmonic series $\sum \frac{1}{n}$ diverges. " They see $\sum_{n=1}^{\infty} \frac{(-1)^{n+1}}{n}$ and, seeing it converges to $\ln(2)$, assume the magnitude of the terms is well-behaved. This distinction is the difference between a sum that is strong and a sum that is fragile.

Mistake 2: Misapplying the Alternating Series Test

The Alternating Series Test is powerful, but it has strict requirements. A common error is applying it to a series where the terms $b_n$ do not decrease monotonically. Even if the terms approach zero, if they don't do so "smoothly" (monotonically), the AST cannot be used. Consider a series where the terms oscillate in magnitude while changing signs. You must look toward Dirichlet's Test for these more erratic behaviors.

Mistake 3: Forgetting the "Limit is Zero" Requirement

A series cannot converge if its individual terms do not approach zero. On top of that, this is the most dangerous trap in calculus. If $\lim_{n \to \infty} a_n \neq 0$, the series diverges. This is the Divergence Test. Still, beginners often flip this logic, assuming that if $\lim_{n \to \infty} a_n = 0$, the series must* converge. The harmonic series is the ultimate counter-example: the terms go to zero, but the sum climbs to infinity.


Summary Table for Quick Reference

| Series Type | $\sum |a_n|$ | $\sum a_n$ | Rearrangement Property | | :--- | :--- | :--- | :--- | | Absolutely Convergent | Converges | Converges | Sum is invariant (same value) | | Conditionally Convergent | Diverges | Converges | Sum can be any real number | | Divergent | Diverges | Diverges | Sum does not exist |

Conclusion

Understanding the distinction between absolute and conditional convergence is more than an academic exercise; it is a fundamental lesson in the nature of infinity. Absolute convergence represents a "strong" convergence, where the magnitude of the terms shrinks fast enough that their order doesn't matter. The sum is a fixed, stable property of the set of numbers.

Conditional convergence, however, represents a "delicate" balance. In practice, the terms are large enough that their order dictates the outcome. In this realm, the sum is not a property of the numbers themselves, but a property of the sequence* in which they are presented. Mastering these distinctions allows you to deal with the nuances of infinite processes without being misled by the deceptive simplicity of terms approaching zero.

Fresh Stories

Brand New Stories

Worth Exploring Next

Readers Went Here Next

Thank you for reading about Which Of The Following Series Is Conditionally Convergent. We hope the information has been useful. Feel free to contact us if you have any questions. See you next time — don't forget to bookmark!
SD

sdcenter

Staff writer at sdcenter.org. We publish practical guides and insights to help you stay informed and make better decisions.

Share This Article

X Facebook WhatsApp
⌂ Back to Home