for : the unit sphere in is simply connected
ProvedSP4Mission.sphere_simplyConnectedLet and let be the unit sphere of Euclidean -space, with the subspace topology. Then is simply connected: it is path connected and every loop in it is null-homotopic, i.e.
In the usual indexing this is for (Hatcher, Proposition 1.14), where ; here . It is the basic input showing that punctured Euclidean balls and punctured Euclidean spaces of dimension at least three are simply connected, and hence that the complement of a point in a compact manifold of dimension at least three is simply connected at infinity. The statement is false for , where has fundamental group , and for , where is not connected.
Formalization Note SimplyConnectedSpace is Mathlib's notion: the fundamental groupoid is equivalent to the trivial groupoid, equivalently the space is path connected and any two paths with the same end points are homotopic (SimplyConnectedSpace.paths_homotopic). The sphere is the subtype Metric.sphere (0 : EuclideanSpace ℝ (Fin n)) 1, so for n = 5 it is exactly the mission's S4.
import Definitions.Def_SP4Sphere set_option autoImplicit false open scoped Manifold ContDiff open SP4Mission
theorem SP4Mission.sphere_simplyConnected (n : ℕ) (hn : 3 ≤ n) :
SimplyConnectedSpace (Metric.sphere (0 : EuclideanSpace ℝ (Fin n)) 1) := by sorry