Encyclopedia Foundation Foundation Period Depends On Dimension Final Period Canonical Eq
ARTICLE 4 claims 3 theorems 1 model
Foundation Period Depends On Dimension Final Period Canonical Eq
A machine-checked theorem pins the recognition cycle's length to eight ticks, with the dimension of space doing the forcing, not the other way around.
The canonical period
The declaration final_period_canonical_eq is a theorem in the Recognition Science framework's machine-checked library of formal theorems. It states that the canonical final period equals 8. In plainer terms, it establishes that the fundamental cycle of recognition events, the tick (a single discrete step in the framework's ledger of events), has a length of eight for the canonical case. The theorem is a proof, not a definition: it derives the number 8 from prior structure rather than assuming it.
The derivation's shape matters. The framework first proves, from a topological fact called Alexander duality, that the dimension of space, D, must be 3. This step makes no reference to the number 8. The period is then defined as a function of dimension: PeriodFromDimension(D) = 2^D. With D = 3, the period is 2^3, which is 8. The theorem final_period_canonical_eq packages this reasoning: the canonical instance, where D is 3, has a period of 8. The number 8 is a consequence of the dimension, not a premise that goes into proving the dimension.
The framework's library also proves the reverse direction as an equivalence: if the period is 8, then the dimension is 3. This bidirectional theorem shows the two statements are logically interchangeable. However, the framework is explicit about the honest direction of explanation. The dimension is forced by linking, and the period follows from the dimension. The label "8-tick" is a result, not an assumption.
What the theorem does not claim is equally precise. It does not claim that the number 8 appears without prior structure; it relies on the dimension being 3. It does not claim that periods other than 8 are impossible; for a dimension of 2, the period would be 4, and for a dimension of 4, it would be 16. The theorem's scope is the canonical case, where the dimension is already established as 3.
THEOREM final_period_canonical_eq · IndisputableMonolith/Foundation/PeriodDependsOnDimension.lean
/-- At the canonical instance, the period is 8 (as a consequence of
D = 3, not as a premise). -/
theorem final_period_canonical_eq :
final_period_canonical.period = 8 := rfl
THEOREM final_period_canonical_eq · IndisputableMonolith/Foundation/PeriodDependsOnDimension.lean
/-- At the canonical instance, the period is 8 (as a consequence of
D = 3, not as a premise). -/
theorem final_period_canonical_eq :
final_period_canonical.period = 8 := rfl
MODEL PeriodFromDimension · IndisputableMonolith/Foundation/PeriodDependsOnDimension.lean
/-- The fundamental period length from the spatial dimension: `2^D`.
This is a **definition** that does not presuppose `D = 3`.
Writing `8` here would be wrong in general; writing `2^D` is
dimension-generic. -/
def PeriodFromDimension (D : ℕ) : ℕ := 2 ^ D
THEOREM period_eq_eight_iff_D_eq_three · IndisputableMonolith/Foundation/PeriodDependsOnDimension.lean
/-- Period equals 8 iff `D = 3`. Proved from `power_of_2_forces_D3`.
Neither direction is the "natural" one; they are equivalent. -/
theorem period_eq_eight_iff_D_eq_three (D : ℕ) :
PeriodFromDimension D = 8 ↔ D = 3 := by
constructor
· intro h
unfold PeriodFromDimension at h
exact power_of_2_forces_D3 D h
· intro h; subst h; rfl
What this page does not claim
The theorem does not prove that the dimension is 3; it relies on that being established elsewhere. The theorem does not say that 8 is the only possible period for all dimensions. The theorem does not claim that the period is physically observable in any direct sense.
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/Foundation/PeriodDependsOnDimension.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 topological argument forces the spatial dimension to be exactly three?
- How does the framework define the recognition event that the period counts?
- What empirical consequence would distinguish an eight-tick period from a four-tick one?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM final_period_canonical_eq · IndisputableMonolith/Foundation/PeriodDependsOnDimension.lean
/-- At the canonical instance, the period is 8 (as a consequence of D = 3, not as a premise). -/ theorem final_period_canonical_eq : final_period_canonical.period = 8 := rflThe declaration final_period_canonical_eq is a theorem in the Recognition Science framework's machine-checked library of formal theorems. final_period_canonical_eq · IndisputableMonolith/Foundation/PeriodDependsOnDimension.leanTHEOREM final_period_canonical_eq · IndisputableMonolith/Foundation/PeriodDependsOnDimension.lean
/-- At the canonical instance, the period is 8 (as a consequence of D = 3, not as a premise). -/ theorem final_period_canonical_eq : final_period_canonical.period = 8 := rflIt states that the canonical final period equals 8. final_period_canonical_eq · IndisputableMonolith/Foundation/PeriodDependsOnDimension.leanMODEL PeriodFromDimension · IndisputableMonolith/Foundation/PeriodDependsOnDimension.lean
/-- The fundamental period length from the spatial dimension: `2^D`. This is a **definition** that does not presuppose `D = 3`. Writing `8` here would be wrong in general; writing `2^D` is dimension-generic. -/ def PeriodFromDimension (D : ℕ) : ℕ := 2 ^ DThe period is then defined as a function of dimension: PeriodFromDimension(D) = 2^D. PeriodFromDimension · IndisputableMonolith/Foundation/PeriodDependsOnDimension.leanTHEOREM period_eq_eight_iff_D_eq_three · IndisputableMonolith/Foundation/PeriodDependsOnDimension.lean
/-- Period equals 8 iff `D = 3`. Proved from `power_of_2_forces_D3`. Neither direction is the "natural" one; they are equivalent. -/ theorem period_eq_eight_iff_D_eq_three (D : ℕ) : PeriodFromDimension D = 8 ↔ D = 3 := by constructor · intro h unfold PeriodFromDimension at h exact power_of_2_forces_D3 D h · intro h; subst h; rflThe framework's library also proves the reverse direction as an equivalence: if the period is 8, then the dimension is 3. period_eq_eight_iff_D_eq_three · IndisputableMonolith/Foundation/PeriodDependsOnDimension.lean