Encyclopedia Gravity Gravity Analysis Regge4 Dschlaefli Pathwise Freudenthal4 Simplex Flat Directiona

ARTICLE 4 claims 4 theorems

Gravity Analysis Regge4 Dschlaefli Pathwise Freudenthal4 Simplex Flat Directiona

A machine-checked proof shows that in a flat four-dimensional simplex, the sum of all hinge-area weighted angle changes vanishes along every straight-line path through the seed.

The flat directional identity

A simplex is the simplest shape in any dimension: a point in zero dimensions, a line segment in one, a triangle in two, a tetrahedron in three, and the four-dimensional analogue with five vertices in four. In four dimensions, a simplex has ten edges and ten triangular hinges, each hinge being the shared face of two tetrahedral cells. The Schläfli identity is a classical formula relating how the dihedral angles of a simplex change when its edges are deformed, weighted by the areas of the corresponding hinges. It is the four-dimensional analogue of the fact that the angles of a triangle sum to π.

The declaration freudenthal4SimplexFlatDirectionalSchlaefliPresent_true is a theorem in the framework's machine-checked library of formal theorems. It proves that for a specific flat seed simplex, the weighted sum of angle derivatives vanishes along every affine velocity through that seed. Concretely, for any choice of ten real numbers representing how each edge length changes, the sum over all ten hinges of the hinge area times the directional derivative of the dihedral angle equals zero. The proof relies on the Freudenthal and Kuhn combinatorial description of the simplex edges and hinges, and on explicit rational arithmetic for the flat configuration.

The identity holds only at the flat seed, not for general simplices. The library also contains a companion declaration freudenthal4SimplexPathwiseSchlaefliPresent set to false, meaning the full pathwise identity for arbitrary non-degenerate four-simplices is not yet established. The flat directional result is a non-vacuous witness: it uses strictly positive hinge areas, so it is not a trivial statement about zero areas. It does not flip the gap_action_recovery flag, and it does not inhabit a zero-measure Schläfli shell.

This result matters because it is a concrete, verified instance of the Schläfli identity in four dimensions, a setting where the full identity remains open. It provides a checkable anchor for the framework's treatment of recognition, the discrete record of geometric events, by showing that the flat configuration satisfies the expected derivative relation. The open targets include the full pathwise identity on non-degenerate simplices and the convergence of the framework's action to the Einstein-Hilbert action in four dimensions.

THEOREM freudenthal4SimplexFlatDirectionalSchlaefliPresent_true · IndisputableMonolith/Gravity/Analysis/Regge4DSchlaefliPathwise.lean
freudenthal4SimplexFlatDirectionalSchlaefliPresent_true · IndisputableMonolith/Gravity/Analysis/Regge4DSchlaefliPathwise.lean:459
theorem freudenthal4SimplexFlatDirectionalSchlaefliPresent_true :
    freudenthal4SimplexFlatDirectionalSchlaefliPresent = true :=
  rfl
THEOREM freudenthal4SimplexFlatDirectionalSchlaefli · IndisputableMonolith/Gravity/Analysis/Regge4DSchlaefliPathwise.lean
freudenthal4SimplexFlatDirectionalSchlaefli · IndisputableMonolith/Gravity/Analysis/Regge4DSchlaefliPathwise.lean:414
/-- **THEOREM (Gate A2-style at flat).** For every squared-edge velocity
through the flat seed, the area-weighted directional angle sum vanishes:

`Σ_h A_h · (Σ_e v_e · ∂θ_h/∂ℓ²_e) = 0`.

This is the flat directional contraction of `freudenthal4SimplexFlatSchlaefli`
and is the 4D analog of the flat evaluation of the 3D pathwise Schläfli kill
along every edge direction. -/
theorem freudenthal4SimplexFlatDirectionalSchlaefli (v : Fin 10 → ℝ) :
    (∑ h : Fin 10, hingeAreaFlat h * flatDirectionalAngleDeriv v h) = 0 := by
  unfold flatDirectionalAngleDeriv flatAngleJacobian
  calc
    (∑ h : Fin 10, hingeAreaFlat h *
        (∑ e : Fin 10, v e * (flatSchlaefliSummand h e / hingeAreaFlat h)))
        = ∑ h : Fin 10, ∑ e : Fin 10,
            v e * flatSchlaefliSummand h e := by
          refine Finset.sum_congr rfl fun h _ => ?_
          rw [Finset.mul_sum]
          refine Finset.sum_congr rfl fun e _ => ?_
          calc
            hingeAreaFlat h * (v e * (flatSchlaefliSummand h e / hingeAreaFlat h))
                = v e * (hingeAreaFlat h * (flatSchlaefliSummand h e / hingeAreaFlat h)) := by
                  ring
            _ = v e * flatSchlaefliSummand h e := by rw [mul_div_cancel_area]
    _ = ∑ e : Fin 10, v e * (∑ h : Fin 10, flatSchlaefliSummand h e) := by
          rw [Finset.sum_comm]
          refine Finset.sum_congr rfl fun e _ => ?_
          rw [Finset.mul_sum]
    _ = ∑ e : Fin 10, v e * 0 := by
          refine Finset.sum_congr rfl fun e _ => ?_
          rw [freudenthal4SimplexFlatSchlaefli e]
    _ = 0 := by simp
THEOREM freudenthal4SimplexPathwiseSchlaefliPresent_false · IndisputableMonolith/Gravity/Analysis/Regge4DSchlaefliPathwise.lean
freudenthal4SimplexPathwiseSchlaefliPresent_false · IndisputableMonolith/Gravity/Analysis/Regge4DSchlaefliPathwise.lean:553
theorem freudenthal4SimplexPathwiseSchlaefliPresent_false :
    freudenthal4SimplexPathwiseSchlaefliPresent = false :=
  rfl
THEOREM flatHingeData · IndisputableMonolith/Gravity/Analysis/Regge4DSchlaefliPathwise.lean
def flatHingeData (h : Fin 10) : HingeDataN where
  measure := hingeAreaFlat h
  measure_nonneg := le_of_lt (hingeAreaFlat_pos h)

What this page does not claim

The full pathwise Schläfli identity for arbitrary non-degenerate four-simplices is not proved. The result does not establish the convergence of the framework's action to the Einstein-Hilbert action in four dimensions. The declaration does not assert any physical law about gravity; it is a statement about a flat geometric configuration.

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/Gravity/Analysis/Regge4DSchlaefliPathwise.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:

MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND