IndisputableMonolith.Gap45.Derivation
This module defines the Fibonacci sequence and verifies its initial terms plus selected coprimality properties. Researchers addressing the 45-tick synchronization gap would cite it to supply the combinatorial substrate for cumulative phase counting. The structure consists of a recursive definition followed by direct inductive checks on small indices.
claimThe Fibonacci sequence satisfies $F_1 = 1$, $F_2 = 1$, and $F_n = F_{n-1} + F_{n-2}$ for $n > 2$.
background
The module sits inside the Gap45 subdomain and supplies the number-theoretic objects required to motivate the 45 appearing in the dimension-forcing chain. It introduces the standard Fibonacci sequence beginning 1, 1, 2, 3, 5, 8, 13, 21, … together with its recursive definition on the natural numbers. The setting draws only on basic arithmetic imported from Mathlib; no Recognition Science primitives such as J-cost or the phi-ladder appear here.
proof idea
The module first installs the recursive fib definition. It then proves the explicit values fib 5 = 5 and fib 6 = 8 by direct computation, followed by two coprimality lemmas establishing that consecutive early terms are coprime.
why it matters in Recognition Science
The module feeds the PhysicalMotivation module, which converts the sequence into a cumulative-phase count that grounds the 45-tick synchronization. This step closes the explicit gap noted in the paper for the dimension-forcing argument (T8).
scope and limits
- Does not derive a closed-form expression for general terms.
- Does not relate the sequence to the J-function or phi fixed point.
- Does not contain the 45-tick synchronization argument itself.
- Does not import or reference any physics constants.
used by (1)
declarations in this module (38)
-
def
fib -
lemma
fib_0 -
lemma
fib_1 -
lemma
fib_2 -
lemma
fib_3 -
lemma
fib_4 -
lemma
fib_5 -
lemma
fib_6 -
theorem
fibonacci_5_is_5 -
theorem
fibonacci_6_is_8 -
theorem
fib_coprime_4_5 -
theorem
five_eight_coprime -
def
eight_tick_period -
def
closure_factor -
lemma
closure_factor_eq -
def
fibonacci_factor -
lemma
fibonacci_factor_eq -
theorem
fibonacci_factor_is_fib -
theorem
fibonacci_factor_coprime_with_8 -
def
gap -
theorem
gap_eq_45 -
theorem
gap_factorization -
theorem
gap_forced_from_eight_tick_and_fibonacci -
theorem
gap_coprime_with_8 -
theorem
forty_five_eq_nine_times_five -
theorem
forty_five_factorization -
def
full_period -
theorem
full_period_eq_360 -
theorem
full_period_is_product -
theorem
cycles_of_eight -
theorem
cycles_of_gap -
def
power_of_two -
theorem
lcm_360_forces_D_eq_3 -
theorem
D_3_gives_8 -
theorem
D_3_forced_from_structure -
def
closure_interpretation -
def
fibonacci_interpretation -
def
derivation_summary