Path-Connected Implies Connected
Statement
A topological space is path-connected if for every two points there exists a continuous map with and . A space is connected if it cannot be split into two disjoint nonempty open sets.
The converse fails: the topologist's sine curve is connected but not path-connected.
Visualization
Consider the annulus . Any two points can be joined by a path staying inside :
* *
* *
* path *
* ---P→→→→Q-- *
* *
* *
* *
P = (1, 0), Q = (-1, 0)
γ(t) = (cos(πt), sin(πt)) stays on the inner circle.
Since γ is continuous and [0,1] is connected,
γ([0,1]) is connected → A itself cannot be split.
If were disconnected, say with open and disjoint, then and would be a disconnection of — impossible since is connected.
Proof Sketch
- Suppose is path-connected and assume for contradiction with open, nonempty, and disjoint.
- Pick and . By path-connectedness there exists continuous with , .
- Then is a partition into two disjoint nonempty open sets (preimages of opens under a continuous map are open).
- This contradicts the connectedness of (a fact proven from the intermediate value theorem / order-completeness of ).
- Therefore is connected.
Connections
The path-connectedness implication underpins many classical results:
- Intermediate Value TheoremIntermediate Value TheoremA continuous function on a closed interval hits every value between its endpointsRead more → — the key ingredient: is connected because satisfies the least upper bound property; the IVT is precisely the statement that continuous images of connected sets are connected.
- Heine–Borel TheoremHeine–Borel TheoremIn ℝⁿ, a subset is compact if and only if it is closed and boundedRead more → — closed bounded subsets of are compact; combined with path-connectedness, this lets us conclude that such sets (like the annulus) are both compact and connected.
- Brouwer Fixed-Point TheoremBrouwer Fixed-Point TheoremEvery continuous map from a compact convex set to itself has a fixed pointRead more → — the closed unit ball is path-connected (straight-line paths stay inside) and hence connected, a prerequisite for topological degree arguments.
- Urysohn's LemmaUrysohn's LemmaIn a normal space, disjoint closed sets can be separated by a continuous functionRead more → — in a normal space, connected and path-connected sets can be separated by continuous real-valued functions, tying separation axioms to path structure.
Lean4 Proof
import Mathlib.Topology.Connected.PathConnected
/-- Path-connected spaces are connected (Mathlib instance). -/
theorem path_connected_implies_connected
(X : Type*) [TopologicalSpace X] [PathConnectedSpace X] : ConnectedSpace X :=
inferInstance