Hausdorff Implies T1
Statement
A topological space is Hausdorff (or ) if for every two distinct points there exist disjoint open sets and :
A space is T1 if every singleton is a closed set:
Theorem: Every Hausdorff space is T1:
The converse fails: the cofinite topology on an infinite set is T1 (singletons are closed since their complements are cofinite, hence open) but not Hausdorff (any two nonempty open sets intersect in an infinite set).
Visualization
Hausdorff separation: two points and separated by disjoint open neighbourhoods.
X:
┌──────────────────────────────┐
│ ┌─────┐ ┌─────┐ │
│ │ U │ │ V │ │
│ │ x │ │ y │ │
│ └─────┘ └─────┘ │
│ U ∩ V = ∅ │
└──────────────────────────────┘
T1 conclusion: {y} is closed.
Proof: X \ {y} = ⋃_{x ≠ y} U_x
where U_x is open and misses y.
This union is open, so {y} is closed.
Table: separation axioms
| Axiom | Condition | Implication |
|---|---|---|
| (Kolmogorov) | for , some open distinguishes them | weakest |
| (Fréchet) | singletons are closed | |
| (Hausdorff) | distinct points have disjoint open nbhds | intermediate |
| (Regular) | point and closed set have disjoint open nbhds | |
| (Normal) | disjoint closed sets have disjoint open nbhds | strongest common |
Proof Sketch
-
Let be Hausdorff and fix . We show is closed by showing is open.
-
Take any , so . By the Hausdorff condition, there exist open sets and with .
-
In particular, (since and ), so .
-
Then is a union of open sets, hence open.
-
Therefore is closed. Since was arbitrary, is T1.
Connections
- Urysohn's LemmaUrysohn's LemmaIn a normal space, disjoint closed sets can be separated by a continuous functionRead more → — Urysohn's lemma requires normality (T4), which implies Hausdorff (T2), which implies T1; the lemma produces continuous functions separating closed sets, generalising the separation axiom hierarchy.
- Heine–Borel TheoremHeine–Borel TheoremIn ℝⁿ, a subset is compact if and only if it is closed and boundedRead more → — is Hausdorff (metric spaces are always Hausdorff), so the Heine–Borel characterisation of compact sets as closed and bounded takes place in a T1 space where singletons are automatically closed.
- Compact Subset of Hausdorff is ClosedCompact Subset of Hausdorff is ClosedIn a Hausdorff space every compact subset is closed, generalising the Heine–Borel direction compact implies closedRead more → — the T1 property (singletons closed) is necessary but not sufficient for compact sets to be closed; Hausdorff (T2) is the right axiom, as proven in the companion note.
- Bolzano–Weierstrass TheoremBolzano–Weierstrass TheoremEvery bounded sequence in ℝⁿ has a convergent subsequenceRead more → — convergent sequences in Hausdorff spaces have unique limits (the Hausdorff condition separates any two distinct limit candidates), a key feature that T1 alone does not guarantee.
Lean4 Proof
import Mathlib.Topology.Separation.Hausdorff
/-- Every Hausdorff space is T1: singletons are closed.
Mathlib provides this as an instance with priority 100. -/
theorem hausdorff_implies_t1
(X : Type*) [TopologicalSpace X] [T2Space X] : T1Space X :=
inferInstance