Encyclopedia Geometry Geometry Schlaefli Triangulation3 D Triangulation Schlaefli Data
ARTICLE 2 claims 1 theorem 1 model
Geometry Schlaefli Triangulation3 D Triangulation Schlaefli Data
A machine-checked identity shows that in any finite 3D triangulation, the sum of local tetrahedral angle variations cancels exactly, leaving a global invariant.
The triangulation ledger
A finite 3D triangulation is a way of filling a region of space with tetrahedra, the simplest solid shapes, meeting only along faces, edges, and vertices. In classical geometry, the Schläfli identity is a local relation: for a single tetrahedron, the sum over its six edges of the edge length times the variation of the dihedral angle at that edge equals zero. This is a differential statement, describing how the shape changes under a smooth deformation.
The framework's declaration TriangulationSchlaefliData packages this local derivative data for every tetrahedron in a finite triangulation. It is a structure that assigns to each tetrahedron a record of its six edge lengths and the derivatives of its six dihedral angles. The key theorem, global_schlaefli_of_local, proves that summing these local identities over all tetrahedra yields a global identity: the total left-hand side equals the right-hand side, which is zero. In plain terms, the local cancellations inside each tetrahedron survive the summing process, so the whole triangulation obeys the same Schläfli relation as its parts.
This is a purely combinatorial and geometric fact, established in the framework's machine-checked library of formal theorems. It does not depend on any physical assumption about space, forces, or recognition. The declaration itself is a definitional choice: it chooses how to organize the local derivative data. The theorem that follows is a proved statement, derived from the definition and the local Schläfli identity for each tetrahedron.
What this does not claim is broader significance. It does not say that all triangulations are rigid, that the identity holds for non-Euclidean geometries, or that this global cancellation has any physical consequence. It is a structural lemma about finite 3D triangulations in Euclidean space, nothing more. The framework's larger claims about space and recognition are not touched by this declaration.
THEOREM global_schlaefli_of_local · IndisputableMonolith/Geometry/SchlaefliTriangulation3D.lean
/-- Summing local tetrahedral Schläfli identities gives the global finite
triangulation identity. -/
theorem global_schlaefli_of_local
(K : Triangulation3D) (D : TriangulationSchlaefliData K) (e' : Fin 6) :
globalSchlaefliLHS K D e' = globalSchlaefliRHS K D e' := by
unfold globalSchlaefliLHS globalSchlaefliRHS
have hlocal : ∀ τ : Fin K.nT,
(∑ e : Fin 6,
Real.sqrt ((K.tet τ).sqEdge e) * (D.tetData τ).dihedralDeriv e e')
= 0 := by
intro τ
exact (D.tetData τ).schlaefli e'
simp_rw [hlocal]
simp
MODEL TriangulationSchlaefliData · IndisputableMonolith/Geometry/SchlaefliTriangulation3D.lean
/-- Local Schläfli derivative data on every tetrahedron of a finite
triangulation. -/
structure TriangulationSchlaefliData (K : Triangulation3D) where
tetData : ∀ τ : Fin K.nT, TetraSchlaefliDerivativeData (K.tet τ)
What this page does not claim
The identity holds only for Euclidean tetrahedra, not for curved or non-Euclidean geometries. The declaration says nothing about rigidity, uniqueness, or physical consequences of triangulations. The global cancellation is a theorem about the sum, not a statement about any individual tetrahedron's behavior.
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/Geometry/SchlaefliTriangulation3D.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 local Schläfli identity for a single tetrahedron and how is it proved?
- Does the global Schläfli identity hold for triangulations of curved or non-Euclidean spaces?
- How does this geometric identity relate to the framework's broader claims about recognition and physical space?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM global_schlaefli_of_local · IndisputableMonolith/Geometry/SchlaefliTriangulation3D.lean
/-- Summing local tetrahedral Schläfli identities gives the global finite triangulation identity. -/ theorem global_schlaefli_of_local (K : Triangulation3D) (D : TriangulationSchlaefliData K) (e' : Fin 6) : globalSchlaefliLHS K D e' = globalSchlaefliRHS K D e' := by unfold globalSchlaefliLHS globalSchlaefliRHS have hlocal : ∀ τ : Fin K.nT, (∑ e : Fin 6, Real.sqrt ((K.tet τ).sqEdge e) * (D.tetData τ).dihedralDeriv e e') = 0 := by intro τ exact (D.tetData τ).schlaefli e' simp_rw [hlocal] simpThe key theorem proves that summing these local identities over all tetrahedra yields a global identity: the total left-hand side equals the right-hand side, which is zero. global_schlaefli_of_local · IndisputableMonolith/Geometry/SchlaefliTriangulation3D.leanMODEL TriangulationSchlaefliData · IndisputableMonolith/Geometry/SchlaefliTriangulation3D.lean
/-- Local Schläfli derivative data on every tetrahedron of a finite triangulation. -/ structure TriangulationSchlaefliData (K : Triangulation3D) where tetData : ∀ τ : Fin K.nT, TetraSchlaefliDerivativeData (K.tet τ)The framework's declaration TriangulationSchlaefliData packages this local derivative data for every tetrahedron in a finite triangulation. TriangulationSchlaefliData · IndisputableMonolith/Geometry/SchlaefliTriangulation3D.lean