Bolzano–Weierstrass Theorem
Statement
Let be a sequence in whose range is bounded — that is, for some . Then there exists a strictly increasing and a point such that
Visualization
A bounded sequence in need not converge, but some subsequence always does.
Sequence in [0,1] — values plotted vertically:
n: 0 1 2 3 4 5 6 7 8 9 10 ...
x_n: 0.8 0.2 0.9 0.1 0.85 0.15 0.91 0.09 0.88 0.11 0.9
Subsequence ↓ (even indices, selected by φ(k)=2k):
0.8 0.9 0.85 0.91 0.88 0.9 → converges near 0.9
Subsequence ↓ (odd indices, selected by φ(k)=2k+1):
0.2 0.1 0.15 0.09 0.11 → converges near 0.1
Both subsequences converge, to different limits.
The original sequence oscillates between ~0.1 and ~0.9 but does NOT converge.
Bolzano–Weierstrass guarantees the existence of at least one such subsequence — it does not say the whole sequence converges, only that you can always find an infinite monotone index selection that does.
Proof Sketch
By Heine–Borel TheoremHeine–Borel TheoremIn ℝⁿ, a subset is compact if and only if it is closed and boundedRead more →, a closed ball is compact. A compact metric space is sequentially compact — every sequence has a convergent subsequence. Since is eventually in (up to passing to a tail), sequential compactness yields the subsequence.
Alternatively, for : nest closed intervals by bisection — at each step, one half-interval contains infinitely many terms; pick that half and repeat. The intersection of the nested intervals is a single point , and the construction yields an explicit convergent subsequence.
Connections
- Heine–Borel TheoremHeine–Borel TheoremIn ℝⁿ, a subset is compact if and only if it is closed and boundedRead more → — the ambient compact box supplies sequential compactness.
- Brouwer Fixed-Point TheoremBrouwer Fixed-Point TheoremEvery continuous map from a compact convex set to itself has a fixed pointRead more → — sequential compactness arguments underpin degree theory.
- Tychonoff's TheoremTychonoff's TheoremAn arbitrary product of compact spaces is compact in the product topologyRead more → — in infinite dimensions, compactness (and hence Bolzano–Weierstrass) fails for the norm topology; Tychonoff's theorem recovers it in the product (weak) topology.
- Hausdorff DistanceHausdorff DistanceA metric on non-empty compact sets, foundation for the IFS attractor theoremRead more → — the Blaschke selection theorem (Bolzano–Weierstrass for compact sets) follows: a bounded sequence of compact sets has a subsequence convergent in .
- Urysohn's LemmaUrysohn's LemmaIn a normal space, disjoint closed sets can be separated by a continuous functionRead more → — Urysohn functions are used to separate cluster points; the separation relies on the same normal-space axioms underlying convergence arguments.
- Iterated Function SystemsIterated Function SystemsConstructing fractals via contractive affine transformationsRead more → — the attractor is the unique fixed compact set; Bolzano–Weierstrass guarantees that any sequence of approximating sets has cluster points.
Lean4 Proof
import Mathlib.Topology.MetricSpace.Sequences
import Mathlib.Topology.MetricSpace.Bounded
open Filter Bornology Metric Topology
/-- **Bolzano–Weierstrass**: every sequence taking values in a bounded set in a
proper metric space (e.g. ℝ or ℝⁿ) has a convergent subsequence.
Mathlib: `tendsto_subseq_of_bounded` in `Mathlib.Topology.MetricSpace.Sequences`. -/
theorem bolzano_weierstrass {X : Type*} [MetricSpace X] [ProperSpace X]
{s : Set X} (hs : IsBounded s) {x : ℕ → X} (hx : ∀ n, x n ∈ s) :
∃ a ∈ closure s, ∃ φ : ℕ → ℕ, StrictMono φ ∧ Tendsto (x ∘ φ) atTop (𝓝 a) :=
tendsto_subseq_of_bounded hs hx
/-- Specialised to ℝ: a bounded real sequence has a convergent subsequence. -/
theorem bolzano_weierstrass_real {x : ℕ → ℝ} (R : ℝ) (hR : ∀ n, |x n| ≤ R) :
∃ (φ : ℕ → ℕ) (a : ℝ), StrictMono φ ∧ Tendsto (x ∘ φ) atTop (𝓝 a) := by
have hs : IsBounded (Set.Icc (-R) R) := isBounded_Icc (-R) R
have hx : ∀ n, x n ∈ Set.Icc (-R) R := fun n => Set.mem_Icc.mpr ⟨by linarith [hR n], hR n⟩
obtain ⟨a, _, φ, hφ, hconv⟩ := tendsto_subseq_of_bounded hs hx
exact ⟨φ, a, hφ, hconv⟩Referenced by
- Arzelà–Ascoli TheoremAnalysis
- Arzelà–Ascoli TheoremAnalysis
- Hausdorff Implies T1Topology
- Brouwer Fixed-Point TheoremTopology
- Tychonoff's TheoremTopology
- Separable SpacesTopology
- Heine–Borel TheoremTopology
- Subspace TopologyTopology
- Urysohn's LemmaTopology
- Baire Category TheoremTopology
- Connected ComponentsTopology
- Open Mapping Theorem (Banach)Functional Analysis
- Closed Graph TheoremFunctional Analysis