Cantor intersection theorem for connectedness: a nested intersection of compact connected sets is connected
ProvedisPreconnected_iInter_of_antitone_isCompactLet be a Hausdorff topological space and let
be a decreasing sequence of compact, connected (more precisely: preconnected) subsets of . Then the intersection
is again preconnected.
This is the connectedness companion of Cantor's intersection theorem (which asserts that is nonempty when every is). Compactness is essential: in the plane the decreasing sequence of closed connected sets has empty — hence connected — intersection, but replacing "compact" by "closed" in general fails, the standard counterexample being a decreasing sequence of closed connected subsets of the plane whose intersection is a pair of disjoint horizontal rays.
The proof is the standard separation argument: if with disjoint, closed and nonempty, then and are disjoint compact sets, so by the Hausdorff property they can be surrounded by disjoint open sets and . The compact sets decrease and have empty intersection, so one of them is empty; that is then split by and into two nonempty relatively open pieces, contradicting its connectedness.
Preconnectedness (rather than connectedness) is the right formulation because the intersection may be empty.
import Mathlib open Set Topology
theorem isPreconnected_iInter_of_antitone_isCompact
{α : Type*} [TopologicalSpace α] [T2Space α] {s : ℕ → Set α}
(hanti : Antitone s) (hcomp : ∀ n, IsCompact (s n))
(hconn : ∀ n, IsPreconnected (s n)) :
IsPreconnected (⋂ n, s n) := by sorry