Product Topology
Statement
Given a family of topological spaces , the product topology on is the coarsest topology making every projection continuous. Its basic open sets are finite intersections of sets of the form for open in .
Universal property: A function is continuous if and only if every coordinate function is continuous:
Visualization
Basis for the product topology on (torus):
S¹ × S¹ (torus)
θ₂
2π ─────────────────────┐
| │░░░░░░░░░░░░░░░░░░░│
| │░░░┌───┐░░░░░░░░░░│ basic open set:
| │░░░│ U │░░░░░░░░░░│ π₁⁻¹(arc₁) ∩ π₂⁻¹(arc₂)
| │░░░└───┘░░░░░░░░░░│ = small box on torus
| │░░░░░░░░░░░░░░░░░░│
0 └────────────────────┘
0 arc₁ 2π θ₁
A map , (written in coordinates) is continuous iff both and are continuous — which they are, being compositions of continuous functions.
Finite-dimensional case — checking continuity into :
| Component | Map | Continuous? |
|---|---|---|
| Yes (polynomial) | ||
| Yes (trig) | ||
| Yes (by the theorem) |
Proof Sketch
-
() If is continuous, each is continuous as a composition of continuous functions ( is continuous by definition of the product topology).
-
() Suppose each is continuous. It suffices to check that preimages of subbasic open sets are open. A subbasic open set is for some open in . Then:
which is open by continuity of .
-
Since the product topology is generated by subbasic sets of this form, is continuous.
-
This universal property characterises the product topology among all topologies on : it is the unique coarsest topology with this property.
Connections
- Tychonoff's TheoremTychonoff's TheoremAn arbitrary product of compact spaces is compact in the product topologyRead more → — the product of compact spaces is compact; the product topology is the natural setting for this result. Tychonoff's theorem uses the Alexander subbase theorem on exactly the subbasic sets described above.
- Heine–Borel TheoremHeine–Borel TheoremIn ℝⁿ, a subset is compact if and only if it is closed and boundedRead more → — is compact as a finite product of compact intervals, a direct application of Tychonoff in the finite case. Heine–Borel then characterises all compact subsets of .
- Cayley–Hamilton TheoremCayley–Hamilton TheoremEvery square matrix satisfies its own characteristic polynomialRead more → — continuous maps between matrix spaces rely on the product topology on ; entries of a product of matrices depend continuously on entries of factors.
Lean4 Proof
import Mathlib.Topology.Constructions
/-- Continuity into a Pi type is equivalent to continuity of each component. -/
theorem continuous_into_product_iff
{Z : Type*} {ι : Type*} {X : ι → Type*}
[TopologicalSpace Z] [∀ i, TopologicalSpace (X i)]
(f : Z → ∀ i, X i) :
Continuous f ↔ ∀ i, Continuous (fun z => f z i) :=
continuous_pi_iff