Cauchy Criterion
The Cauchy criterion reframes convergence: instead of asking whether a sequence approaches some target value, it asks whether the sequence's terms eventually cluster among themselves. This is powerful because we can verify the criterion without knowing the limit — and in complete spaces, that is enough to guarantee one exists.
Statement
A sequence in a metric space is a Cauchy sequence if
Theorem. Every Cauchy sequence in a complete metric space converges. Conversely, every convergent sequence is Cauchy.
A metric space in which every Cauchy sequence converges is called complete. The real line is complete; the rationals are not.
Visualization
The partial sums form a Cauchy sequence in that converges to :
n | s_n (partial sum of 1/k²) | |s_n - s_{n-1}| = 1/n²
-----|-----------------------------|-----------------------
1 | 1.000 000 | —
2 | 1.250 000 | 0.250 000
5 | 1.463 611 | 0.040 000
10 | 1.549 768 | 0.010 000
20 | 1.596 163 | 0.002 500
50 | 1.625 133 | 0.000 400
100 | 1.634 984 | 0.000 100
The increments go to zero, so for :
In this sequence is Cauchy but has no rational limit — the series sums to , an irrational. In (which is complete) it does converge.
A contrasting non-Cauchy sequence: oscillates between and , so for every — never small.
Proof Sketch
(Cauchy convergent in .) A Cauchy sequence is bounded (apply the criterion with to get a bound beyond some , then take the max with the first terms). By Bolzano-Weierstrass it has a convergent subsequence . The full sequence then converges to : given , pick so that for , and pick with and ; then .
(Convergent Cauchy.) If , pick with for ; then .
Connections
The Cauchy criterion is the internal completeness statement that Monotone ConvergenceMonotone Convergence TheoremA bounded monotone sequence of reals always converges — the supremum is the limitRead more → expresses via order. In normed spaces it leads to the notion of Banach spaces, where the Iterated Function SystemsIterated Function SystemsConstructing fractals via contractive affine transformationsRead more → contraction argument (and hence Hausdorff DistanceHausdorff DistanceA metric on non-empty compact sets, foundation for the IFS attractor theoremRead more → completeness) is carried out. The criterion also characterises uniform convergence of function series, which underlies the Liouville theoremLiouville's TheoremA bounded entire function on ℂ must be constant — complex differentiability is far more rigid than real differentiabilityRead more → proof via the Cauchy integral formula.
Lean4 Proof
import Mathlib.Topology.EMetricSpace.Basic
import Mathlib.Topology.MetricSpace.Basic
open Filter Topology
/-- Every Cauchy sequence in a complete metric space converges. -/
theorem cauchy_complete {X : Type*} [MetricSpace X] [CompleteSpace X]
{x : ℕ → X} (hx : CauchySeq x) :
∃ a, Tendsto x atTop (𝓝 a) :=
cauchySeq_tendsto_of_complete hxReferenced by
- Lebesgue Differentiation TheoremAnalysis
- Monotone Convergence TheoremAnalysis
- Monotone Convergence TheoremAnalysis
- Squeeze TheoremAnalysis
- Gradient Descent ConvergenceOptimization
- Continued FractionsNumber Theory
- Liouville's TheoremComplex Analysis
- Fundamental Theorem of AlgebraComplex Analysis
- Banach Fixed Point TheoremFunctional Analysis