theorem
proved
hierarchy_phi_power_structure
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Unification.RegistryPredictionsProved on GitHub at line 155.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
formal source
152 linarith [phi_gt_onePointSixOne]
153
154/-- **HIERARCHY STRUCTURE**: Mass ratios are φ-powers of integer differences. -/
155theorem hierarchy_phi_power_structure (Δr : ℕ) (hΔr : Δr > 0) :
156 ∃ (ratio : ℝ), ratio = (phi : ℝ)^Δr ∧ ratio > 1 := by
157 use (phi : ℝ)^Δr
158 refine ⟨rfl, ?_⟩
159 have h1 : phi > 1 := one_lt_phi
160 have h_ge : Δr ≥ 1 := hΔr
161 calc 1 = 1^Δr := (one_pow Δr).symm
162 _ < phi^Δr := by
163 apply pow_lt_pow_left₀ h1 (by norm_num)
164 exact Nat.pos_iff_ne_zero.mp hΔr
165
166/-! ## Section: Combined Registry Certificate -/
167
168/-- **CERTIFICATE**: Registry predictions with calculated bounds. -/
169structure RegistryPredictionsCert where
170 omega_lambda_upper : 11/16 - (alpha / Real.pi) < 11/16
171 omega_lambda_lower : 0 < 11/16 - (alpha / Real.pi)
172 phi_6_lower : (17 : ℝ) < (phi : ℝ)^6
173 phi_6_upper : (phi : ℝ)^6 < (18 : ℝ)
174 phi_11_lower : (180 : ℝ) < (phi : ℝ)^11
175 hierarchy_exists : ∀ (Δr : ℕ), Δr > 0 →
176 ∃ (ratio : ℝ), ratio = (phi : ℝ)^Δr ∧ ratio > 1
177
178/-- **THEOREM**: Registry predictions certificate is inhabited. -/
179theorem registry_predictions_cert_exists : ∃ _ : RegistryPredictionsCert, True :=
180 ⟨⟨omega_lambda_lt_11_16,
181 omega_lambda_positive,
182 phi_6_hierarchy_bounds.1,
183 phi_6_hierarchy_bounds.2,
184 phi_11_hierarchy_lower,
185 fun Δr hΔr => hierarchy_phi_power_structure Δr hΔr⟩,