def
definition
fibonacci_recurrence
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Information.LocalCache on GitHub at line 63.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
formal source
60/-- The Fibonacci partition recurrence: each level's capacity equals the sum
61 of the next two smaller levels. This arises from J-cost-optimal partitioning
62 (see paper §4 for the derivation). -/
63def fibonacci_recurrence (K : ℕ → ℝ) : Prop :=
64 ∀ ℓ : ℕ, K (ℓ + 2) = K (ℓ + 1) + K ℓ
65
66/-- The constant-ratio property: K_{ℓ+1}/K_ℓ = r for all ℓ. -/
67def constant_ratio (K : ℕ → ℝ) (r : ℝ) : Prop :=
68 ∀ ℓ : ℕ, K (ℓ + 1) = r * K ℓ
69
70/-- **KEY LEMMA**: Fibonacci recurrence + constant positive ratio → r² = r + 1.
71
72This is the rigorous replacement for the hand-wavy "self-similar cost" argument. -/
73theorem fibonacci_ratio_forces_golden (K : ℕ → ℝ) (r : ℝ)
74 (_hr_pos : 0 < r)
75 (hK_pos : ∀ ℓ, 0 < K ℓ)
76 (hfib : fibonacci_recurrence K)
77 (hratio : constant_ratio K r) :
78 r ^ 2 = r + 1 := by
79 -- From constant_ratio: K(ℓ+2) = r * K(ℓ+1) = r * (r * K(ℓ)) = r² * K(ℓ)
80 have hK2 : ∀ ℓ, K (ℓ + 2) = r ^ 2 * K ℓ := by
81 intro ℓ
82 have h1 := hratio (ℓ + 1) -- K(ℓ+2) = r * K(ℓ+1)
83 have h2 := hratio ℓ -- K(ℓ+1) = r * K(ℓ)
84 rw [h2] at h1
85 rw [h1]
86 ring
87 -- From fibonacci_recurrence: K(ℓ+2) = K(ℓ+1) + K(ℓ)
88 -- Combined: r² * K(ℓ) = r * K(ℓ) + K(ℓ) = (r + 1) * K(ℓ)
89 have hcombine : ∀ ℓ, r ^ 2 * K ℓ = (r + 1) * K ℓ := by
90 intro ℓ
91 have h1 := hK2 ℓ
92 have h2 := hfib ℓ
93 have h3 := hratio ℓ