How To Do Limit Comparison Test

8 min read

Ever stare at a math problem and feel like the textbook is actively trying to confuse you? Also, the limit comparison test is one of those tools that sounds way scarier than it is. But here's the thing — once it clicks, you'll wonder why series convergence took you so long to figure out.

Most calculus students meet this test after the direct comparison test has already beaten them up a little. And honestly, that's a good place to be. In practice, you already know the pain of trying to bound a weird series from above or below. But the limit comparison test is the calmer sibling that says: "Hey, stop fighting the ugly terms. Just compare the mess to something you actually understand.

So let's talk about how to do the limit comparison test without losing your mind.

What Is the Limit Comparison Test

The short version is this: you take the series you can't figure out, and you put it next to a series you already know converges or diverges. Then you look at the ratio of their terms as n goes to infinity. If that ratio settles down to a positive finite number, both series do the exact same thing. They either both converge, or they both blow up.

Not the most exciting part, but easily the most useful.

That's it. That's why no sandwiching. No careful inequalities that take six lines to write.

You've got a series ∑aₙ. You pick a series ∑bₙ where you already know the behavior. You compute:

lim (n→∞) aₙ / bₙ = L

If L is a positive real number — so, greater than 0 and less than infinity — then ∑aₙ and ∑bₙ share a fate. Same limit, same outcome.

Why It's Not the Direct Comparison Test

People mix these two up constantly. The direct comparison test makes you prove aₙ ≤ bₙ (or ≥) for every term past some point. That's brittle. One stubborn term and the logic falls apart.

The limit comparison test doesn't care about term-by-term ordering. Still, it only cares about the long-run shape of the ratio. Turns out, that's usually way easier to check. But you're not wrestling with every n. You're looking at the horizon.

What Kind of bₙ Should You Pick

Almost always a p-series or a geometric series. Day to day, pick the bₙ that mirrors the dominant behavior of your aₙ. p-series ∑1/nᵖ converge if p > 1, diverge if p ≤ 1. Geometric ∑rⁿ converges if |r| < 1. Now, those are the ones with known destinies. We'll get into how to spot that in a minute Not complicated — just consistent..

Real talk — this step gets skipped all the time The details matter here..

Why People Care About This Test

Because infinite series show up everywhere, not just in calculus class. Fourier series, probability distributions, numerical approximations — all of them lean on knowing whether a sum settles or runs off to infinity It's one of those things that adds up. No workaround needed..

And in practice, the series you meet in real life are rarely clean. They've got roots, logs, polynomials multiplied together, stuff in denominators that's half-friendly. The limit comparison test is the pragmatic exit from that mess.

Why does this matter? Which means that's slow, and sometimes impossible. Because most people skip it and try to integrate everything with the integral test. Or they bash their head against direct comparison and pick a bₙ that's off by a factor that ruins the inequality And that's really what it comes down to. Took long enough..

Here's what most people miss: the limit comparison test is forgiving. Plus, you don't need the perfect bₙ. You need a bₙ with the same asymptotic skeleton.

How to Do the Limit Comparison Test

Alright, the meaty part. Here's the actual process I use, and the one I'd tell a friend to use Small thing, real impact..

Step 1: Identify the Dominant Term in aₙ

Look at your series term. Say it's:

aₙ = (3n² + 5n + 1) / (n⁴ + 2n² + 7)

For big n, the numerator acts like 3n². The denominator acts like n⁴. So aₙ behaves like 3n² / n⁴ = 3/n².

That 3/n² is your signal. The constant 3 won't matter for convergence (it's just a scale), so your comparison series is bₙ = 1/n².

Step 2: Pick Your Comparison Series bₙ

Use the simplified dominant form. Drop constants. Keep the power structure Most people skip this — try not to..

  • If aₙ ~ 1/n², use bₙ = 1/n² (p-series, p = 2, converges)
  • If aₙ ~ 1/n, use bₙ = 1/n (harmonic, diverges)
  • If aₙ ~ 1/√n, use bₙ = 1/n^(1/2) (p = 0.5, diverges)
  • If aₙ ~ (2/3)ⁿ, use bₙ = (2/3)ⁿ (geometric, converges)

Real talk — the tilde "~" just means "behaves like for large n." You don't write it formally in homework, but in your head that's the move Nothing fancy..

Step 3: Set Up the Limit

Compute:

L = lim (n→∞) aₙ / bₙ

Using our example:

aₙ / bₙ = [(3n² + 5n + 1) / (n⁴ + 2n² + 7)] / (1/n²)

Flip and multiply:

= (3n² + 5n + 1) · n² / (n⁴ + 2n² + 7) = (3n⁴ + 5n³ + n²) / (n⁴ + 2n² + 7)

Divide top and bottom by n⁴:

= (3 + 5/n + 1/n²) / (1 + 2/n² + 7/n⁴)

As n → ∞, the fractions vanish. You get 3 / 1 = 3 That's the part that actually makes a difference..

Step 4: Interpret the Limit

L = 3. So ∑aₙ does exactly what ∑bₙ does. Practically speaking, that's positive and finite. Since ∑1/n² converges, your original series converges too.

Done. No integrals. No inequalities.

Step 5: When L Is Zero or Infinity

This trips people up. Now, if L = 0, and ∑bₙ converges, then ∑aₙ converges (aₙ is smaller in the limit). Similarly, if L = ∞ and ∑bₙ diverges, then ∑aₙ diverges. But if L = 0 and ∑bₙ diverges, the test is inconclusive — aₙ might diverge slower. If L = ∞ and ∑bₙ converges, inconclusive Worth keeping that in mind..

Worth knowing: when the test is inconclusive, just pick a different bₙ. Don't force it.

A Logarithm Example

Say aₙ = 1 / (n ln n). Direct comparison to 1/n fails because 1/(n ln n) < 1/n, and 1/n diverges — smaller than a diverging thing tells you nothing.

Use bₙ = 1/n. Limit: [1/(n ln n)] / (1/n) = 1/ln n → 0. In practice, l = 0, bₙ diverges, inconclusive. So pick bₙ = 1/(n ln n) against itself? Day to day, no. Better: recognize this is a known divergent series by integral test, or compare to 1/(n ln²n) if you're checking convergence. The point is — switch bₙ when stuck.

Common Mistakes People Make

Honestly, this is the part most guides get wrong because they pretend everyone is perfect. Here's where it actually falls apart for real students.

Picking a bₙ with the wrong power. If your aₙ looks like 1/√n but you compare to 1/n, you'll get L = ∞ and then misread it. Match the exponent. Always.

Forgetting the limit must be positive. L = 0 or ∞ isn't automatically "same behavior." It's a different rule, or a dead end.

Trying to use it on alternating series. The limit comparison test is for positive-term series. If you've got (-1)ⁿ, use the alternating series

test or absolute convergence first — LCT will not save you there, and forcing it just produces nonsense limits that look meaningful but aren't.

Mishandling compound denominators. When aₙ has something like n² + n√n in the denominator, don't guess. Expand the dominant term: n² wins, √n term is lower order, so bₙ = 1/n². The limit will confirm it. If you picked 1/n^(3/2) because of the √n, you've already lost.

Writing the limit backwards. aₙ / bₙ, not bₙ / aₙ. It doesn't change convergence conclusions when L is finite and positive, but it flips the meaning of L = 0 vs L = ∞, and that's exactly where mistakes breed.

Why This Beats Direct Comparison

Direct comparison makes you prove inequalities: "show aₙ ≤ c·bₙ for all n ≥ N.You only care about the tail. Limit comparison skips the inequality entirely. The first ten terms can be chaos — doesn't matter. " That's a pain, and often false for small n even when true asymptotically. The limit at infinity is the whole game.

That's also why LCT feels "loose" to instructors who love rigor. It's just asymptotically scoped. It isn't loose. You're literally saying: past some point, these two series are proportional, so their sum behaviors are locked together Small thing, real impact. Took long enough..

Quick Reference Table

aₙ behaves like bₙ to use ∑bₙ result then ∑aₙ
1/nᵖ, p > 1 1/nᵖ converges converges
1/nᵖ, p ≤ 1 1/nᵖ diverges diverges
rⁿ, 0 < r < 1 rⁿ converges converges
rⁿ, r ≥ 1 rⁿ diverges diverges
1/(n ln n) (integral test) diverges diverges

Conclusion

The limit comparison test is the pragmatic workhorse of series analysis: match the dominant asymptotic form, take one limit, read the behavior off a series you already know. Also, it removes the inequality gymnastics of direct comparison and stays valid exactly where real sequences live — at infinity. Master the art of picking bₙ by power and base, respect the special cases when L hits zero or infinity, and you'll clear most convergence problems without ever touching an integral Worth keeping that in mind..

Latest Batch

New and Fresh

Based on This

Covering Similar Ground

Thank you for reading about How To Do Limit Comparison Test. 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!
⌂ Back to Home