Sequences and Convergence
What You’ll Learn
Section titled “What You’ll Learn”In this lesson you’ll learn the epsilon-N definition of a limit, the standard template for a convergence proof, why limits are unique, and that convergent sequences are bounded. This is the first rigorous definition in the section and the pattern for all the others.
The Concept
Section titled “The Concept”The definition
Section titled “The definition”A sequence converges to if
Read it as a game. Your opponent picks , as small as they like. You must produce an such that from that point on, every term is within of . If you can always win, the sequence converges.
The picture is the definition: draw a horizontal band of half-width around . Convergence means that however thin the band, only finitely many terms fall outside it, and every term past is inside.
Three things to notice.
- depends on . Smaller means larger . That dependence is the whole content.
- need not be optimal. Any that works is fine. Proofs routinely use a wasteful because it’s easier to write down.
- Finitely many terms may misbehave. The definition only constrains what happens eventually, so changing the first million terms changes nothing.
The proof template
Section titled “The proof template”Every convergence proof has the same three parts.
- Scratch work (not written). Start from and solve for to see how large must be.
- Choose . State it, usually via the Archimedean property.
- Verify. Assume and derive in the forward direction.
Take .
Scratch. .
Proof. Let . By the Archimedean property choose with . Then for ,
Hence . ∎
Short, and the shape never changes. The scratch work is where the thinking happens; the written proof is the verification only.
Divergence
Section titled “Divergence”diverges if it converges to no real number. Negating the definition:
So to prove divergence you must, for every candidate , exhibit an that is violated infinitely often.
Three flavours:
- To infinity. . For every there is with for . Written , which is a description of divergence, not a limit.
- By oscillation. . Bounded, never settles.
- Unbounded and oscillating. .
Limits are unique
Section titled “Limits are unique”If and then .
Proof. Suppose and set .
There is with for , and with for . Take . By the triangle inequality,
so , a contradiction. Hence . ∎
Two techniques there are worth naming, because they recur constantly: taking the max of two thresholds so both conditions hold at once, and inserting a term via the triangle inequality to bridge two quantities.
Convergent implies bounded
Section titled “Convergent implies bounded”Every convergent sequence is bounded.
Proof. Say . Apply the definition with : there is with for , so for those .
The remaining terms are a finite list, so they have a largest absolute value. Then
bounds the whole sequence. ∎
The converse fails: is bounded and divergent. Repairing that gap is Bolzano-Weierstrass, two lessons ahead.
Note the structure: handle the tail with the definition, the head by finiteness. That split is a standard move.
Subsequences, briefly
Section titled “Subsequences, briefly”A subsequence picks out infinitely many terms in order: with .
If then every subsequence also . Contrapositive: two subsequences with different limits proves divergence. For , the even terms give 1 and the odd terms give , so it diverges - much quicker than negating the definition directly.
Worked Examples
Section titled “Worked Examples”Example 1: Prove .
Solution. Scratch. , and .
Proof. Let and choose . For ,
∎
Example 2: Prove .
Solution. Scratch. , which is when .
Proof. Given , choose . For ,
∎
The step is a deliberate over-estimate. Simplifying in the direction that makes the bound larger is always legal and usually saves work.
Example 3: A sequence needing a sharper estimate.
Prove .
Solution. Scratch.
Rather than solve exactly, over-estimate: , and .
Proof. Let , choose . For ,
∎
Example 4: Prove diverges, twice.
Solution 1 (subsequences). The even-indexed subsequence is constantly , so it converges to 1. The odd-indexed subsequence is constantly , converging to . Different limits, so the sequence diverges. ∎
Solution 2 (definition). Let be any real and take . Consecutive terms differ by 2, so for any ,
meaning at least one of the two is . So beyond any there is a term with , and no works. ∎
The subsequence argument is shorter and it’s the one to reach for.
Example 5: A convergent sequence with a badly behaved head.
Let for and for . Does it converge?
Solution. Yes, to 0. Given , choose . For we have , so . ∎
Convergence is entirely a statement about the tail. Any finite number of terms can be arbitrary.
Example 6: Reading off the wrong quantifier order.
What would "" describe?
Solution. A single working for every at once forces for all , hence , so exactly for all .
That describes a sequence eventually constant at - far stronger than convergence, and it would exclude . The quantifier order is the definition’s whole content.
Real-World Applications
Section titled “Real-World Applications”Iterative algorithms. Newton’s method, gradient descent, and the power method for eigenvalues all produce sequences, and the question “does it converge, and how fast?” is exactly the epsilon-N question. A stopping criterion like “halt when successive iterates differ by less than ” is choosing an and hoping for the corresponding .
Fixed-point iteration in engineering. Solving a circuit or a fluid model iteratively converges only under conditions like a contraction property, which is proved with these tools. When a simulation oscillates instead of settling, the sequence is diverging by oscillation.
Machine learning training curves. A loss curve is a sequence. Distinguishing “converged,” “converging slowly,” and “oscillating” is what learning-rate schedules are managing, and the reason a too-large learning rate makes loss oscillate is a genuine divergence-by-oscillation.
Financial models. Present value of a perpetuity is the limit of a sequence of partial sums, and whether it converges determines whether the asset has finite value. Discount rates below the growth rate make the sequence diverge, which is how bubble models get their infinite valuations.
Monte Carlo simulation. The running average of samples is a sequence converging to the true expectation. The rate, , tells you that reducing error tenfold takes a hundred times more samples, which is a practical consequence of a convergence rate.
Retrying will remove your ✅ checkmark until you pass again.