pith. machine review for the scientific record. sign in
theorem proved term proof high

dimensional_rigidity_full_forward

show as:
view Lean formalization →

The theorem shows that any natural number D satisfying the sphere circle-linking invariant, the apsidal-angle condition of exactly 2π, and the synchronization-period minimizer property among all D ≥ 3 must equal 3. Researchers modeling dimensional selection in Recognition Science would cite it when deriving three spatial dimensions from the forcing chain. The proof is a one-line wrapper that applies the main dimensional rigidity lemma to the three supplied hypotheses.

claimLet $D$ be a natural number. If the $D$-sphere admits a circle-linking invariant, the apsidal angle equals $2π$, and $D$ is at least 3 while minimizing the synchronization period over all such dimensions, then $D=3$.

background

The Draft V1 module mirrors paper theorems using explicit hypothesis interfaces rather than new axioms, delegating the linking invariant to the cohomology-based predicate SphereAdmitsCircleLinking D. Constraint K is the closed-form apsidal-angle condition apsidalAngle D = 2π, while Constraint S requires both D ≥ 3 and that syncPeriod D is minimal among all admissible dimensions. The local setting imports quotient geometry, composition laws, and Alexander duality to keep the certified surface honest when external topology is needed.

proof idea

The proof is a one-line wrapper that applies the main dimensional rigidity lemma to the three hypotheses LinkingInvariantHypothesis D, ConstraintK D, and ConstraintS D.

why it matters in Recognition Science

This establishes the forward direction of dimensional rigidity and feeds directly into the corollary no_higher_dimensional_alternative showing that no D > 3 can satisfy all three constraints simultaneously. It aligns with the Recognition Science forcing chain (T8) that derives D = 3 from the eight-tick octave and self-similar fixed point phi. The paper notes that the converse direction remains dependent on further geometric infrastructure.

scope and limits

Lean usage

have h3 : D = 3 := dimensional_rigidity_full_forward D hT hK hS

formal statement (Lean)

 309theorem dimensional_rigidity_full_forward (D : ℕ)
 310    (hT : LinkingInvariantHypothesis D) (hK : ConstraintK D) (hS : ConstraintS D) :
 311    D = 3 :=

proof body

Term-mode proof.

 312  dimensional_rigidity_main D hT hK hS
 313
 314/-- Paper corollary: there is no `D > 3` satisfying all three constraints simultaneously.
 315
 316We prove this using the (K)-based forcing `ConstraintK D → D=3`. -/

used by (1)

From the project-wide theorem graph. These declarations reference this one in their body.

depends on (14)

Lean names referenced from this declaration's body.