Monotone Convergence Theorem
The Monotone Convergence Theorem (for sequences) is one of the fundamental completeness properties of the real line: a sequence that is non-decreasing and bounded above cannot escape to infinity, so it must settle somewhere. That somewhere is exactly its supremum.
Statement
Let be monotone non-decreasing, i.e.\ whenever . If the set is bounded above, then converges and
The dual statement holds for antitone sequences bounded below (they converge to their infimum).
Visualization
Take (for ), which is monotone increasing and bounded above by .
n | f(n) = 1 - 1/n | sup so far
-----|-------------------|------------
1 | 0.000 | 0.000
2 | 0.500 | 0.500
4 | 0.750 | 0.750
8 | 0.875 | 0.875
16 | 0.937 | 0.937
32 | 0.969 | 0.969
64 | 0.984 | 0.984
128 | 0.992 | 0.992
The supremum is , approached but never reached from below — a staircase climbing toward a ceiling.
1.0 ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ (sup = limit)
↑ ↑ ↑ ↑
f(1) f(2) f(4) f(8) ···
Proof Sketch
Let . By definition of supremum, for all . Fix : since is not an upper bound, there exists with . By monotonicity, for :
so .
This proof uses only that has the least-upper-bound property — it fails in , where bounded monotone sequences can converge to irrational limits outside the space.
Connections
The theorem is the bridge between order completeness and metric completeness. It implies that every Cauchy sequenceCauchy CriterionA sequence converges if and only if its terms eventually become arbitrarily close to each other — no candidate limit requiredRead more → in converges (via the Bolzano-Weierstrass subsequence argument). It is also the backbone of the Lebesgue Monotone Convergence Theorem (for non-negative measurable functions), which appears in integration theory. Within this section, the Squeeze TheoremSqueeze TheoremWhen two bounding sequences converge to the same limit, any sequence caught between them must followRead more → handles convergence by bounding a sequence above and below, while the Cauchy CriterionCauchy CriterionA sequence converges if and only if its terms eventually become arbitrarily close to each other — no candidate limit requiredRead more → characterises convergence without knowing the limit in advance.
Lean4 Proof
import Mathlib.Topology.Order.MonotoneConvergence
open Filter Topology
/-- A monotone, bounded-above sequence of reals converges to its supremum. -/
theorem monotone_convergence {f : ℕ → ℝ} (hf : Monotone f)
(hb : BddAbove (Set.range f)) :
Tendsto f atTop (𝓝 (⨆ n, f n)) :=
tendsto_atTop_ciSup hf hbReferenced by
- Absolutely Continuous FunctionsAnalysis
- Fatou's LemmaAnalysis
- Fatou's LemmaAnalysis
- Dominated Convergence TheoremAnalysis
- Squeeze TheoremAnalysis
- Fubini's TheoremAnalysis
- Cauchy CriterionAnalysis
- Gradient Descent ConvergenceOptimization
- Doob's Martingale ConvergenceProbability
- Kolmogorov 0-1 LawProbability
- Strong Law of Large NumbersProbability
- Heat Equation Maximum PrincipleDifferential Equations
- Uniform Boundedness PrincipleFunctional Analysis