Quotient Topology
Statement
Given a topological space and an equivalence relation on , the quotient topology on is the finest topology making the projection continuous. Explicitly, is open if and only if is open in .
The universal property (quotient map criterion): if is a quotient map, then for any topological space and any function ,
Visualization
Construction of the circle :
Identify for all . Each equivalence class consists of all translates , .
Real line ℝ:
...──0────0.25────0.5────0.75────1────1.25──...
| | |
└─────────────────────────→ all identified
↓ π (projection)
Circle S¹:
*
* * [0] = [1] = [2] = ... identified
* *
* * ← [0.25] sits at "3 o'clock"
* [0.5] sits at "6 o'clock"
[0.75] sits at "9 o'clock"
Universal property in action: A function is continuous iff is continuous AND is -periodic (i.e. respects the identification). The quotient topology encodes exactly this compatibility condition.
Open sets in the quotient: Let . Then , which is open in , so is open in .
Proof Sketch
-
Definition: Give the topology . Check this is a topology: preimage distributes over unions and intersections, and , .
-
is continuous: By construction, every open set in has open preimage.
-
Universal property (): If is continuous, then is a composition of continuous maps, hence continuous.
-
Universal property (): Suppose is continuous. For open , we need open in . Compute , which is open in by continuity of . By definition of the quotient topology, is open.
-
This universal property characterises the quotient topology uniquely.
Connections
- Tychonoff's TheoremTychonoff's TheoremAn arbitrary product of compact spaces is compact in the product topologyRead more → — products and quotients are the two fundamental constructions on topological spaces; Tychonoff shows products of compact spaces are compact, while quotient maps of compact spaces onto Hausdorff spaces are automatically closed maps.
- Urysohn's LemmaUrysohn's LemmaIn a normal space, disjoint closed sets can be separated by a continuous functionRead more → — a quotient of a normal space need not be normal, but Urysohn's lemma gives the criterion for when the quotient retains normality.
- Intermediate Value TheoremIntermediate Value TheoremA continuous function on a closed interval hits every value between its endpointsRead more → — the circle is connected (quotient of a connected space); the IVT applied to loops on underlies the topological proof of the fundamental theorem of algebra.
- First Isomorphism TheoremFirst Isomorphism TheoremThe image of a homomorphism is isomorphic to the domain modulo the kernelRead more → — the algebraic analogue: if is a group homomorphism, then ; the topology version replaces group isomorphism with homeomorphism when the maps are open.
Lean4 Proof
import Mathlib.Topology.Maps.Basic
/-- Universal property of the quotient map:
g is continuous iff g ∘ π is continuous. -/
theorem quotient_universal_property
{X Y Z : Type*} [TopologicalSpace X] [TopologicalSpace Y] [TopologicalSpace Z]
{f : X → Y} (hf : IsQuotientMap f) (g : Y → Z) :
Continuous g ↔ Continuous (g ∘ f) :=
hf.continuous_iff