def
definition
octave
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Masses.CoherenceExponent on GitHub at line 56.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
-
octave -
layerSysPlus_comp -
OctaveAlgHom -
OctaveLoop -
rs_device -
octave -
tick -
breathCycle -
octavePhase -
phiRung_neg -
ticksToOctaves -
businessCyclePeriod -
businessCyclePeriod_lower -
businessCyclePeriod_pos -
businessCyclePeriod_upper -
economicPhases -
eight_economic_phases -
ledgerConservation_eq_one -
octaveGrowthMultiplier -
flipAt512 -
Gap45Region -
J_at_phi_approx -
framework_self_consistent -
octave -
perfectFourth -
strictMusicRealization -
impulse_after_octaves_mono_decay -
impulse_at_saturation -
impulse_per_octave -
impulse_tambora_eq_zero -
octavePeriod_eq_eight -
octavePeriod_is_minimal_cover -
veiRatio_at_saturation -
volcanicForcingAsJCostImpulseCert -
bremermannBound -
n_resolutions_time -
octave_is_eight -
one_resolution_per_8tick -
T_min_at_D3 -
coherence_exponent
formal source
53def D : ℕ := 3
54
55/-- The octave period is 2^D -/
56def octave : ℕ := 2 ^ D
57
58/-- Verify: octave = 8 -/
59theorem octave_eq_8 : octave = 8 := by
60 unfold octave D
61 norm_num
62
63/-- D equals F₄ -/
64theorem D_is_fib_4 : D = fib 4 := by
65 unfold D
66 rw [fib_4_eq]
67
68/-- Octave (2^D) equals F₆ -/
69theorem octave_is_fib_6 : octave = fib 6 := by
70 rw [octave_eq_8, fib_6_eq]
71
72/-! ## The Coherence Exponent -/
73
74/-- The Fibonacci deficit: 2^D - D = 5 -/
75def coherence_exponent : ℕ := octave - D
76
77/-- The coherence exponent equals 5 -/
78theorem coherence_exponent_eq_5 : coherence_exponent = 5 := by
79 unfold coherence_exponent octave D
80 norm_num
81
82/-- The coherence exponent equals F₅ -/
83theorem coherence_exponent_is_fib_5 : coherence_exponent = fib 5 := by
84 rw [coherence_exponent_eq_5, fib_5_eq]
85
86/-- The coherence exponent arises from the Fibonacci identity -/