Brouwer Fixed-Point Theorem
Statement
Let be the closed unit ball. Every continuous map has a fixed point:
The case is immediate from the Intermediate Value Theorem; the general case requires algebraic topology (homology or degree theory).
Visualization
In 1D, the theorem says every continuous crosses the diagonal.
1 │ ╱ y = x (diagonal)
│ ╱
│ ╱ ╳────── f(x) crosses y=x here → fixed point!
│ ╱ ╱
│ ╱ ╱
0 └────────────────── 1
0 1
If f(0) ≥ 0 and f(1) ≤ 1, let g(x) = f(x) − x.
g(0) = f(0) − 0 ≥ 0
g(1) = f(1) − 1 ≤ 0
IVT → ∃ x* with g(x*) = 0, i.e. f(x*) = x*.
Intuitively: crumple a piece of paper and lay it on a copy of itself — at least one point lands exactly on its original position.
Proof Sketch
One dimension. Define . Then and . Since is continuous, the Intermediate Value Theorem yields with , i.e. .
General . Suppose for contradiction has no fixed point. Define a retraction by drawing the ray from through and letting be where it meets . This would be a continuous retraction of onto , contradicting the fact that is not a retract of (witnessed by homology: but ). Mathlib contains the full -dimensional proof in Mathlib.Topology.Homotopy.Brouwer.
Connections
- Heine–Borel TheoremHeine–Borel TheoremIn ℝⁿ, a subset is compact if and only if it is closed and boundedRead more → — the closed unit ball is compact (closed and bounded); compactness is essential for most existence proofs.
- Bolzano–Weierstrass TheoremBolzano–Weierstrass TheoremEvery bounded sequence in ℝⁿ has a convergent subsequenceRead more → — the 1D proof uses the Intermediate Value Theorem, closely related to the nested interval argument behind Bolzano–Weierstrass.
- Tychonoff's TheoremTychonoff's TheoremAn arbitrary product of compact spaces is compact in the product topologyRead more → — in infinite dimensions (e.g. Hilbert space), Tychonoff's theorem helps recover a version via the Schauder fixed-point theorem.
- Urysohn's LemmaUrysohn's LemmaIn a normal space, disjoint closed sets can be separated by a continuous functionRead more → — separation of points is used in the homological proof to construct test functions distinguishing boundary from interior.
- Hausdorff DistanceHausdorff DistanceA metric on non-empty compact sets, foundation for the IFS attractor theoremRead more → — iterated approximation schemes for fixed points converge in the Hausdorff metric on compact sets.
- Iterated Function SystemsIterated Function SystemsConstructing fractals via contractive affine transformationsRead more → — IFS attractors are Banach fixed points in the Hausdorff metric space; Brouwer's theorem gives a topological (not metric) companion existence result.
- Banach Fixed Point TheoremBanach Fixed Point TheoremEvery contraction on a complete metric space has a unique fixed point, reached by iterating the mapRead more → — the metric complement: Banach requires a contraction on a complete metric space and gives a unique fixed point with explicit rate-of-convergence; Brouwer requires only continuity on a compact convex set but gives no uniqueness or constructive approximation.
Lean4 Proof
The 1D fixed-point theorem follows directly from Mathlib's intermediate_value_Icc.
Referenced by
- von Neumann MinimaxOptimization
- Nash Equilibrium ExistenceOptimization
- Picard–Lindelöf TheoremDifferential Equations
- Tychonoff's TheoremTopology
- Heine–Borel TheoremTopology
- Urysohn's LemmaTopology
- Continuous Bijection on Compact-Hausdorff is HomeoTopology
- Bolzano–Weierstrass TheoremTopology
- Path-Connected Implies ConnectedTopology
- Banach Fixed Point TheoremFunctional Analysis