Quotient Topology

lean4-prooftopologyvisualization
g:X/ ⁣Z continuous    gπ continuousg : X/\!\sim \to Z \text{ continuous} \iff g \circ \pi \text{ continuous}

Statement

Given a topological space XX and an equivalence relation \sim on XX, the quotient topology on X/X/{\sim} is the finest topology making the projection π:XX/\pi : X \to X/{\sim} continuous. Explicitly, UX/U \subseteq X/{\sim} is open if and only if π1(U)\pi^{-1}(U) is open in XX.

The universal property (quotient map criterion): if π:XY\pi : X \to Y is a quotient map, then for any topological space ZZ and any function g:YZg : Y \to Z,

g is continuous    gπ is continuous.g \text{ is continuous} \iff g \circ \pi \text{ is continuous.}

Visualization

Construction of the circle S1=R/ZS^1 = \mathbb{R}/\mathbb{Z}:

Identify xx+1x \sim x + 1 for all xRx \in \mathbb{R}. Each equivalence class [x][x] consists of all translates x+nx + n, nZn \in \mathbb{Z}.

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 g:S1Rg : S^1 \to \mathbb{R} is continuous iff gπ:RRg \circ \pi : \mathbb{R} \to \mathbb{R} is continuous AND gπg \circ \pi is Z\mathbb{Z}-periodic (i.e. respects the identification). The quotient topology encodes exactly this compatibility condition.

Open sets in the quotient: Let U=π((0.1,0.9))S1U = \pi((0.1, 0.9)) \subseteq S^1. Then π1(U)=nZ(0.1+n,0.9+n)\pi^{-1}(U) = \bigcup_{n \in \mathbb{Z}} (0.1+n, 0.9+n), which is open in R\mathbb{R}, so UU is open in S1S^1.

Proof Sketch

  1. Definition: Give X/X/{\sim} the topology τ={U:π1(U) open in X}\tau = \{U : \pi^{-1}(U) \text{ open in } X\}. Check this is a topology: preimage distributes over unions and intersections, and π1()=\pi^{-1}(\emptyset) = \emptyset, π1(X/)=X\pi^{-1}(X/{\sim}) = X.

  2. π\pi is continuous: By construction, every open set in X/X/{\sim} has open preimage.

  3. Universal property (\Rightarrow): If gg is continuous, then gπg \circ \pi is a composition of continuous maps, hence continuous.

  4. Universal property (\Leftarrow): Suppose gπg \circ \pi is continuous. For open VZV \subseteq Z, we need g1(V)g^{-1}(V) open in X/X/{\sim}. Compute π1(g1(V))=(gπ)1(V)\pi^{-1}(g^{-1}(V)) = (g \circ \pi)^{-1}(V), which is open in XX by continuity of gπg \circ \pi. By definition of the quotient topology, g1(V)g^{-1}(V) is open.

  5. This universal property characterises the quotient topology uniquely.

Connections

  • Tychonoff's TheoremTychonoff's TheoremiIXi compact    i,  Xi compact\prod_{i \in I} X_i \text{ compact} \iff \forall i,\; X_i \text{ compact}An 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 Lemmaf:X[0,1],fs=0,  ft=1\exists\, f : X \to [0,1],\quad f|_s = 0,\; f|_t = 1In 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 Theoremf(a)yf(b)c[a,b]:  f(c)=yf(a) \le y \le f(b) \Rightarrow \exists\, c \in [a,b]:\; f(c) = yA continuous function on a closed interval hits every value between its endpointsRead more → — the circle S1=R/ZS^1 = \mathbb{R}/\mathbb{Z} is connected (quotient of a connected space); the IVT applied to loops on S1S^1 underlies the topological proof of the fundamental theorem of algebra.
  • First Isomorphism TheoremFirst Isomorphism TheoremG/ker(f)im(f)G / \ker(f) \cong \operatorname{im}(f)The image of a homomorphism is isomorphic to the domain modulo the kernelRead more → — the algebraic analogue: if ϕ:GH\phi : G \to H is a group homomorphism, then G/kerϕimϕG/\ker\phi \cong \mathrm{im}\,\phi; 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