Continuous Bijection on Compact-Hausdorff is Homeo
Statement
Let be a continuous bijection. If is compact and is Hausdorff (), then is a homeomorphism (i.e., is also continuous):
The theorem fails if either hypothesis is dropped: alone does not suffice (see the counterexample with the indiscrete topology), and non-compact domains allow continuous bijections with discontinuous inverses.
Visualization
Canonical counterexample — why compactness of the domain is needed:
f : [0, 2π) → S¹, f(t) = (cos t, sin t)
[0, 2π): S¹ (unit circle):
────────────────────────) ╭───────────────────╮
0 2π │ (1,0)=f(0)│
│ ╭────────╮ │
f is continuous: ✓ │ f│→ │ │
f is bijective: ✓ │ ╰────────╯ │
│ 2π⁻ maps to (1,0) │
f⁻¹ is NOT continuous: ✗ ╰───────────────────╯
Near (1,0) on S¹, the preimage
has points near 0 AND near 2π — two disjoint ends.
Domain [0, 2π) is NOT compact → theorem does not apply.
Compact domain fix: use [0, 2π] / ∼ (quotient identifying endpoints)
Then domain is compact, and f descends to a homeomorphism S¹ ≅ S¹.
Key idea — closed maps:
Compact ──continuous──▶ Hausdorff
X Y
A ⊆ X closed ─compact──▶ f(A) compact ─Hausdorff──▶ f(A) closed
So f is a closed map ⟹ f⁻¹ is continuous ⟹ f is a homeomorphism.
Proof Sketch
- Closed maps: Show is a closed map (images of closed sets are closed in ).
- Closed compact: In a compact space, every closed set is compact (a closed subset of a compact space is compact).
- Continuous image of compact is compact: continuous and compact implies compact.
- Compact in Hausdorff is closed: In a Hausdorff space, every compact set is closed.
- Chain: closed in compact compact closed in .
- Closed map homeomorphism: A continuous bijection that is also closed is a homeomorphism (the inverse is continuous because preimages of closed sets under are images of closed sets under , hence closed).
Connections
- Heine–Borel TheoremHeine–Borel TheoremIn ℝⁿ, a subset is compact if and only if it is closed and boundedRead more → — the theorem that closed bounded sets in are compact is exactly what makes many bijections -type maps into homeomorphisms when the domain is a closed bounded interval.
- Alexandrov One-Point CompactificationAlexandrov One-Point CompactificationAdding a single point at infinity to a locally compact Hausdorff space yields a compact spaceRead more → — the homeomorphism is an instance: stereographic projection is a continuous bijection from the compact one-point compactification to the Hausdorff circle.
- Tychonoff's TheoremTychonoff's TheoremAn arbitrary product of compact spaces is compact in the product topologyRead more → — Tychonoff's theorem produces compact product spaces; when a continuous bijection maps such a product to a Hausdorff space, this theorem applies automatically.
- Brouwer Fixed-Point TheoremBrouwer Fixed-Point TheoremEvery continuous map from a compact convex set to itself has a fixed pointRead more → — Brouwer's theorem relies on the fact that and are compact Hausdorff, and continuous maps from them behave rigidly; this theorem underlies the no-retraction lemma used in the proof.
Lean4 Proof
import Mathlib.Topology.Homeomorph.Lemmas
/-- **Continuous bijection from compact to T2 is a homeomorphism**.
Mathlib: `Continuous.homeoOfEquivCompactToT2`. -/
theorem continuous_bij_compact_t2_homeo
{X Y : Type*} [TopologicalSpace X] [TopologicalSpace Y]
[CompactSpace X] [T2Space Y]
(f : X ≃ Y) (hf : Continuous f) : X ≃ₜ Y :=
Continuous.homeoOfEquivCompactToT2 hf