theorem
proved
D_2_fails
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Masses.CoherenceExponent on GitHub at line 102.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
formal source
99 constructor <;> native_decide
100
101/-- D = 2 does NOT satisfy: 2^2 = 4 is not Fibonacci -/
102theorem D_2_fails : ¬ is_fibonacci (2^2) := by native_decide
103
104/-- D = 3 satisfies the Fibonacci constraint -/
105theorem D_3_fibonacci_constraint : is_fibonacci 3 ∧ is_fibonacci (2^3) := by
106 constructor <;> native_decide
107
108/-- D = 5 does NOT satisfy: 2^5 = 32 is not Fibonacci -/
109theorem D_5_fails : ¬ is_fibonacci (2^5) := by native_decide
110
111/-- D = 8 does NOT satisfy: 2^8 = 256 is not Fibonacci -/
112theorem D_8_fails : ¬ is_fibonacci (2^8) := by native_decide
113
114/-! ## Main Theorem -/
115
116/-- **Main Theorem**: The coherence exponent 5 is uniquely determined.
117
118The number 5 arises from:
1191. D = 3 is the unique non-trivial dimension where both D and 2^D are Fibonacci
1202. The Fibonacci identity F₆ - F₄ = F₅ gives 8 - 3 = 5
1213. Therefore E_coh = φ^{-5} is structurally determined, not a free parameter.
122-/
123theorem coherence_exponent_unique :
124 D = fib 4 ∧
125 octave = fib 6 ∧
126 coherence_exponent = fib 5 ∧
127 coherence_exponent = 5 := by
128 exact ⟨D_is_fib_4, octave_is_fib_6, coherence_exponent_is_fib_5, coherence_exponent_eq_5⟩
129
130/-! ## Connection to E_coh -/
131
132/-- The coherence energy E_coh = φ^{-5} in RS-native units. -/