Encyclopedia Foundation Foundation Period Depends On Dimension Period Dimension Bidirectional
ARTICLE 3 claims 3 theorems
Foundation Period Depends On Dimension Period Dimension Bidirectional
The framework's eight-step recognition cycle and its three-dimensional space are two faces of one equation, each forcing the other.
The bidirectional link
The number 8 and the number 3 are tied together in a simple way: two to the power of three equals eight. In the Recognition Science framework, this arithmetic becomes a structural claim about the universe's internal accounting. The framework models reality as a ledger, a discrete record of recognition events, where each step in a cycle is a tick. The declaration periodDimensionBidirectional packages the proof that the period of this cycle, the number of ticks, is exactly two raised to the power of the spatial dimension, and that this relationship runs in both directions.
Classically, this is the kind of equivalence a mathematician expects from a definition. If the period is defined as 2^D, then asking when that period equals 8 is the same as asking when D equals 3. The framework's contribution is not the arithmetic but the forced connection. Its machine-checked library of formal theorems proves that three-dimensional space, which it derives from a topological condition on linking, forces the eight-tick cycle. Conversely, if the period is eight, the dimension must be three. The declaration bundles these two directions into one object, making explicit that neither fact is prior to the other; they stand or fall together.
This bidirectional theorem resolves a concern about circularity. A critic might say that calling the cycle "eight-tick" already assumes three dimensions, making the later derivation of three dimensions from the cycle circular. The framework's answer is that the dimension is not derived from the number eight. The dimension is derived independently from a topological statement about linking, and the period is then defined as a function of that dimension. The number 8 is a consequence, not a premise. The declaration periodDimensionBidirectional records this non-circularity as a formal theorem, with the dimension forced by Alexander duality and the period following from the definition.
What the declaration does not claim is just as important. It does not claim that the physical mechanism connecting recognition to linking is understood; that bridge remains open. It does not claim that the number 8 has any meaning outside this framework, and it does not claim that the period and dimension are merely correlated. The theorem is a logical equivalence within the framework's own definitions, and its power is that it makes the dependence explicit and bidirectional.
THEOREM PeriodFromDimension_def · IndisputableMonolith/Foundation/PeriodDependsOnDimension.lean
/-- The period is `2^D`; no numeric value of 8 is hardcoded. -/
theorem PeriodFromDimension_def (D : ℕ) : PeriodFromDimension D = 2 ^ D := rfl
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
THEOREM no_period_circularity · IndisputableMonolith/Foundation/PeriodDependsOnDimension.lean
/-- **DIAGNOSTIC THEOREM.** The linking argument for `D = 3` does not
presuppose the 8-tick period.
Statement: every `D` with non-trivial linking equals 3, and this
is proved *without* the predicate `EightTickFromDimension D =
eight_tick` as a hypothesis.
Proof: `linking_requires_D3` is proved from Alexander duality in
`Foundation/AlexanderDuality`. Its hypothesis is `SupportsNontrivialLinking`,
which is defined as `SphereAdmitsCircleLinking`, which is defined via the
reduced cohomology of `S¹`. None of those refer to the 8-tick.
Hence D = 3 is pinned first; the period 8 then follows as `2^D = 2^3`. -/
theorem no_period_circularity :
(∀ D : ℕ, SupportsNontrivialLinking D → D = 3) ∧
(PeriodFromDimension 3 = 8) :=
⟨linking_requires_D3, rfl⟩
What this page does not claim
The physical bridge from recognition events to spatial linking is not established by this declaration. The number 8 is not claimed to be fundamental outside the framework's definition of period. The declaration does not prove that three-dimensional space exists; it proves an equivalence within the framework's model.
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 condition on linking forces the dimension to be three?
- How does the framework define a recognition event in physical terms?
- What would a two-dimensional or four-dimensional universe look like under this framework?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM PeriodFromDimension_def · IndisputableMonolith/Foundation/PeriodDependsOnDimension.lean
/-- The period is `2^D`; no numeric value of 8 is hardcoded. -/ theorem PeriodFromDimension_def (D : ℕ) : PeriodFromDimension D = 2 ^ D := rflThe period of the recognition cycle is exactly two raised to the power of the spatial dimension. PeriodFromDimension_def · 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 period equals eight if and only if the dimension equals three. period_eq_eight_iff_D_eq_three · IndisputableMonolith/Foundation/PeriodDependsOnDimension.leanTHEOREM no_period_circularity · IndisputableMonolith/Foundation/PeriodDependsOnDimension.lean
/-- **DIAGNOSTIC THEOREM.** The linking argument for `D = 3` does not presuppose the 8-tick period. Statement: every `D` with non-trivial linking equals 3, and this is proved *without* the predicate `EightTickFromDimension D = eight_tick` as a hypothesis. Proof: `linking_requires_D3` is proved from Alexander duality in `Foundation/AlexanderDuality`. Its hypothesis is `SupportsNontrivialLinking`, which is defined as `SphereAdmitsCircleLinking`, which is defined via the reduced cohomology of `S¹`. None of those refer to the 8-tick. Hence D = 3 is pinned first; the period 8 then follows as `2^D = 2^3`. -/ theorem no_period_circularity : (∀ D : ℕ, SupportsNontrivialLinking D → D = 3) ∧ (PeriodFromDimension 3 = 8) := ⟨linking_requires_D3, rfl⟩The dimension is forced by a topological condition on linking, independent of the number eight. no_period_circularity · IndisputableMonolith/Foundation/PeriodDependsOnDimension.lean