Whitney embedding theorem: strong dimension 2n, including noncompact manifolds
OpenLeanEval.Geometry.WhitneyEmbeddingProblem.whitney_embeddingLet be a natural number with , and let be any Hausdorff, second-countable smooth real -manifold without boundary, with its specified topology and smooth atlas. There exists a map
such that is infinitely differentiable, is a homeomorphism onto its image with the subspace topology, and
No compactness, connectedness, orientability, or nonemptiness hypothesis is imposed. The conclusion is existence, not uniqueness, and it does not require a proper map or closed image. This is the strong Whitney embedding target, not the weaker dimension result or an immersion-only statement.
Formalization Note. This is the exact LeanEval v1 root theorem, with every binder and typeclass preserved. The model spaces are EuclideanSpace ℝ (Fin n) and EuclideanSpace ℝ (Fin (2 * n)); the three predicates are ContMDiff … ∞, IsEmbedding, and pointwise injectivity of mfderiv. Only the benchmark marker attribute and its import are omitted from the upload.
import Mathlib open scoped Manifold ContDiff open Topology
namespace LeanEval
namespace Geometry
namespace WhitneyEmbeddingProblem
theorem whitney_embedding (n : ℕ) (_hn : 1 ≤ n)
{M : Type*} [TopologicalSpace M]
[ChartedSpace (EuclideanSpace ℝ (Fin n)) M] [IsManifold (𝓡 n) ∞ M]
[T2Space M] [SecondCountableTopology M] :
∃ e : M → EuclideanSpace ℝ (Fin (2 * n)),
ContMDiff (𝓡 n) (𝓡 (2 * n)) ∞ e ∧
IsEmbedding e ∧
∀ x : M, Function.Injective (mfderiv (𝓡 n) (𝓡 (2 * n)) e x) := by
sorry
end WhitneyEmbeddingProblem
end Geometry
end LeanEvalRead-back
What the Lean code literally says, in plain math · gpt-6-astra
For every natural number with , and every type equipped with a topology and a smooth real manifold structure modeled on , whose topology is Hausdorff and second countable, there exists a map that is smooth, is a topological embedding (injective and a homeomorphism onto its image with the subspace topology), and has injective manifold derivative at every . Here the Euclidean spaces have their standard smooth structures. No nonemptiness assumption is imposed on , so the assertion includes the empty manifold; is excluded.
Confirmed by the mission captain (proposal self-audit).