Removing a point from a simply connected -manifold, , leaves it simply connected
ProvedSP4Mission.compl_singleton_simplyConnectedLet and let be a Hausdorff topological space with a charted-space structure modeled on (a topological -manifold without boundary), and assume is simply connected. Then for every point the punctured manifold is simply connected:
This is the standard consequence of van Kampen's theorem for the open cover of by and a coordinate ball around : the intersection is path connected and simply connected for , so is the free product of and . The hypothesis is necessary: removing a point from leaves the plane, which is simply connected, but removing a point from the simply connected manifold gives . It supplies the fundamental-group input for the weak contractibility of a punctured homotopy four-sphere, where Freedman records that the punctured manifolds are -connected.
Formalization Note Simple connectivity is Mathlib's SimplyConnectedSpace (path connected with trivial fundamental groupoid). No compactness or second countability is assumed; the manifold hypothesis is a topological atlas ChartedSpace (EuclideanSpace ℝ (Fin n)) M.
import Definitions.Def_SP4Sphere set_option autoImplicit false open scoped Manifold ContDiff open SP4Mission
theorem SP4Mission.compl_singleton_simplyConnected
(n : ℕ) (hn : 3 ≤ n) (M : Type*) [TopologicalSpace M] [T2Space M] [SimplyConnectedSpace M]
[ChartedSpace (EuclideanSpace ℝ (Fin n)) M] (p : M) :
SimplyConnectedSpace {x : M // x ≠ p} := by sorry