Encyclopedia Mathematics Mathematics Differential Geometry From Rs Diff Geo Structure Count
ARTICLE 3 claims 1 theorem 2 models
Mathematics Differential Geometry From Rs Diff Geo Structure Count
A machine-checked theorem counts five canonical differential geometric structures, and ties them to a four-dimensional spacetime.
The five structures
Differential geometry studies shapes that are smooth enough to do calculus on. Over the centuries, mathematicians have singled out a small set of structures that can be placed on such a shape: a smooth manifold, which is just the bare calculus-ready surface; a Riemannian metric, which adds a way to measure distances and angles; a pseudo-Riemannian metric, which allows the distance to be negative in some directions, the setting for general relativity; a Kähler structure, which adds complex coordinates that are compatible with the metric; and a symplectic structure, which adds a way to measure areas, the setting for Hamiltonian mechanics. These five are the classical canon.
In Recognition Science, the framework's library of machine-checked theorems contains a declaration, diffGeoStructureCount, that proves this list is complete in a precise sense: it defines an inductive type with exactly those five constructors, and then proves by computation that the number of distinct structures is 5. The proof is a single line, `by decide`, which means the computer checks each of the five cases and finds no others. The declaration is part of a larger certificate that also records the framework's dimension claim: the recognition manifold, the smooth 3-manifold that the framework uses as its basic space, has dimension 3, and adding one dimension for time gives a 4-dimensional spacetime, which is Lorentzian, the signature used in special and general relativity.
What the declaration does not do is derive these five structures from the framework's axioms. It simply names them and counts them. It does not prove that these five are the only possible structures, only that the type as written has five elements. It does not prove that the recognition manifold is Riemannian, Kähler, or symplectic; it only states that the framework's basic space is a smooth 3-manifold. The connection between the count of five and the spacetime dimension of four is a definitional choice in the certificate, not a theorem that forces one from the other.
THEOREM diffGeoStructureCount · IndisputableMonolith/Mathematics/DifferentialGeometryFromRS.lean
theorem diffGeoStructureCount : Fintype.card DiffGeoStructure = 5 := by decide
MODEL DiffGeoStructure · IndisputableMonolith/Mathematics/DifferentialGeometryFromRS.lean
inductive DiffGeoStructure where
| smoothManifold | riemannian | pseudoRiemannian | kahler | symplectic
deriving DecidableEq, Repr, BEq, Fintype
MODEL rsSpacetimeDim_eq_4 · IndisputableMonolith/Mathematics/DifferentialGeometryFromRS.lean
theorem rsSpacetimeDim_eq_4 : rsSpacetimeDim = 4 := by decide
What this page does not claim
This declaration does not derive the five structures from the framework's axioms. It does not prove that these five are the only possible differential geometric structures in mathematics. It does not claim that the recognition manifold is Riemannian, Kähler, or symplectic.
Verify this page
Every tagged claim above names its theorem. To check one yourself rather than trust this page, elaborate the source module with Lean 4 and audit its axiom basis:
$ lake env lean IndisputableMonolith/Mathematics/DifferentialGeometryFromRS.lean
expected axiom basis: [propext, Classical.choice, Quot.sound] (the Lean kernel's standard three; no RS-specific axioms)
A page whose claims cannot be reproduced this way does not ship. In production, every anchor links to the exact declaration in the public source release, and this block carries the build receipt for the page itself.
Derived articles
This page is generated by a question-recursion engine: the questions its answers raise become the next pages. The current agenda, with open targets marked red:
- What is the physical recognition-to-linking bridge that would connect the framework's 3-dimensional manifold to the observed three spatial dimensions?
- How does the framework derive the pseudo-Riemannian metric, rather than merely naming it as a possible structure?
- What is the relationship between the five canonical structures and the eight-tick recognition cycle?
- Does the framework's library contain a proof that the recognition manifold is smooth, or is that an assumption?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM diffGeoStructureCount · IndisputableMonolith/Mathematics/DifferentialGeometryFromRS.lean
theorem diffGeoStructureCount : Fintype.card DiffGeoStructure = 5 := by decideThe declaration diffGeoStructureCount proves that the number of distinct structures in the type DiffGeoStructure is 5. diffGeoStructureCount · IndisputableMonolith/Mathematics/DifferentialGeometryFromRS.leanMODEL DiffGeoStructure · IndisputableMonolith/Mathematics/DifferentialGeometryFromRS.lean
inductive DiffGeoStructure where | smoothManifold | riemannian | pseudoRiemannian | kahler | symplectic deriving DecidableEq, Repr, BEq, FintypeThe type DiffGeoStructure has exactly five constructors: smoothManifold, riemannian, pseudoRiemannian, kahler, and symplectic. DiffGeoStructure · IndisputableMonolith/Mathematics/DifferentialGeometryFromRS.leanMODEL rsSpacetimeDim_eq_4 · IndisputableMonolith/Mathematics/DifferentialGeometryFromRS.lean
theorem rsSpacetimeDim_eq_4 : rsSpacetimeDim = 4 := by decideThe certificate records that the recognition manifold has dimension 3 and that adding one dimension for time gives a 4-dimensional Lorentzian spacetime. rsSpacetimeDim_eq_4 · IndisputableMonolith/Mathematics/DifferentialGeometryFromRS.lean