Encyclopedia Cosmology Cosmology Baryon Asymmetry From Phi Ladder Phi8 Gt 46
ARTICLE 3 claims 2 theorems 1 model
Cosmology Baryon Asymmetry From Phi Ladder Phi8 Gt 46
A machine-checked theorem shows that the eighth power of the golden ratio exceeds 46, a small step in a framework's attempt to derive the universe's matter-antimatter imbalance.
A large-number bound
The golden ratio φ, approximately 1.618, is the positive solution to r² = r + 1. Its powers grow quickly: φ² is about 2.618, φ⁴ about 6.854, and φ⁸ is about 46.98. The theorem phi8_gt_46 in the framework's machine-checked library of formal theorems proves the exact inequality φ⁸ > 46, using only the defining quadratic equation and the fact that φ > 1.61. This is a pure number statement, independent of any physical interpretation.
The inequality matters because it is the first rung of a ladder. The framework defines a recognition event as a discrete record of a comparison, and its cost function forces a specific scaling constant. From that constant, the framework derives a particle mass ladder where each rung is a power of φ. The baryon asymmetry rung is set at 44, so the framework's predicted value for η_B, the ratio of matter to photons in the universe, is φ⁻⁴⁴. The theorem φ⁸ > 46, combined with squaring steps, yields φ⁴⁴ > 10⁸, which in turn proves η_B < 10⁻⁸. This is the framework's way of showing its predicted asymmetry is small, as observations require.
The proof of φ⁸ > 46 is elementary. The library first proves φ⁸ = 21φ + 13 by repeated squaring of the defining equation. Then, using the separately proved fact that φ > 1.61, a linear arithmetic step gives 21φ + 13 > 21 × 1.61 + 13 = 46.81 > 46. The entire chain, from the quadratic equation to the final inequality, is checked by the Lean kernel with no axioms beyond the standard three. The theorem itself is a tautology about real numbers; it does not assert anything about the physical universe.
What the theorem does not claim is just as important. It does not prove that the baryon asymmetry is actually φ⁻⁴⁴; that is a definitional choice, not a derived result. The rung number 44 is an identification, not a consequence of the forcing chain. The theorem also does not compare its value to any measured cosmological data. The measured η_B is about 6 × 10⁻¹⁰, and φ⁻⁴⁴ is about 1.3 × 10⁻⁹, a factor of about two off. The framework treats this as an empirical check, not a theorem. Finally, the inequality alone says nothing about why there is more matter than antimatter; it only bounds a number the framework defines.
THEOREM phi8_gt_46 · IndisputableMonolith/Cosmology/BaryonAsymmetryFromPhiLadder.lean
theorem phi8_gt_46 : phi ^ 8 > 46 := by
rw [phi8_val]; linarith [phi_gt_onePointSixOne]
MODEL etaB_RS · IndisputableMonolith/Cosmology/BaryonAsymmetryFromPhiLadder.lean
noncomputable def etaB_RS : ℝ := (phi ^ baryonRung)⁻¹
THEOREM phi44_gt_1e8 · etaB_small · IndisputableMonolith/Cosmology/BaryonAsymmetryFromPhiLadder.lean
/-- φ^44 > 10^8. -/
theorem phi44_gt_1e8 : phi ^ 44 > (10:ℝ)^8 := by
have h12 : phi ^ 12 > 321 := by
have h2 := phi_sq_eq
have h3 : phi ^ 3 = 2 * phi + 1 := by nlinarith
have h4 : phi ^ 4 = 3 * phi + 2 := by nlinarith
have h5 : phi ^ 5 = 5 * phi + 3 := by nlinarith
have h6 : phi ^ 6 = 8 * phi + 5 := by nlinarith
have h8 := phi8_val
have h12v : phi ^ 12 = phi ^ 6 * phi ^ 6 := by ring
rw [h12v]; nlinarith [phi_gt_onePointSixOne]
have h44 : phi ^ 44 = phi ^ 32 * phi ^ 12 := by ring
rw [h44]
norm_num
nlinarith [mul_pos (by linarith [phi32_gt_4M] : (0:ℝ) < phi^32) (by linarith : (0:ℝ) < phi^12),
phi32_gt_4M, h12]
/-- η_B < 10^(-8). -/
theorem etaB_small : etaB_RS * (10:ℝ)^8 < 1 := by
unfold etaB_RS baryonRung
rw [inv_mul_lt_iff₀ (pow_pos phi_pos 44)]
simp only [mul_one]
exact phi44_gt_1e8
What this page does not claim
The rung number 44 is derived, not chosen. The framework's η_B matches the measured cosmological asymmetry. The theorem explains why matter dominates antimatter.
Verify this page
Every tagged claim above names its theorem. To check one yourself rather than trust this page, elaborate the source module with Lean 4 and audit its axiom basis:
$ lake env lean IndisputableMonolith/Cosmology/BaryonAsymmetryFromPhiLadder.lean
expected axiom basis: [propext, Classical.choice, Quot.sound] (the Lean kernel's standard three; no RS-specific axioms)
A page whose claims cannot be reproduced this way does not ship. In production, every anchor links to the exact declaration in the public source release, and this block carries the build receipt for the page itself.
Derived articles
This page is generated by a question-recursion engine: the questions its answers raise become the next pages. The current agenda, with open targets marked red:
- How does the framework derive the rung number 44 from its forcing chain?
- What physical mechanism in the framework converts the mass ladder into a baryon asymmetry?
- How does the framework's predicted η_B compare to the measured value when both are given with uncertainties?
- What other rungs of the phi ladder have been checked against particle masses?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM phi8_gt_46 · IndisputableMonolith/Cosmology/BaryonAsymmetryFromPhiLadder.lean
theorem phi8_gt_46 : phi ^ 8 > 46 := by rw [phi8_val]; linarith [phi_gt_onePointSixOne]The theorem phi8_gt_46 proves the exact inequality φ⁸ > 46. phi8_gt_46 · IndisputableMonolith/Cosmology/BaryonAsymmetryFromPhiLadder.leanMODEL etaB_RS · IndisputableMonolith/Cosmology/BaryonAsymmetryFromPhiLadder.lean
noncomputable def etaB_RS : ℝ := (phi ^ baryonRung)⁻¹The framework's predicted value for η_B is φ⁻⁴⁴. etaB_RS · IndisputableMonolith/Cosmology/BaryonAsymmetryFromPhiLadder.leanTHEOREM phi44_gt_1e8 · etaB_small · IndisputableMonolith/Cosmology/BaryonAsymmetryFromPhiLadder.lean
/-- φ^44 > 10^8. -/ theorem phi44_gt_1e8 : phi ^ 44 > (10:ℝ)^8 := by have h12 : phi ^ 12 > 321 := by have h2 := phi_sq_eq have h3 : phi ^ 3 = 2 * phi + 1 := by nlinarith have h4 : phi ^ 4 = 3 * phi + 2 := by nlinarith have h5 : phi ^ 5 = 5 * phi + 3 := by nlinarith have h6 : phi ^ 6 = 8 * phi + 5 := by nlinarith have h8 := phi8_val have h12v : phi ^ 12 = phi ^ 6 * phi ^ 6 := by ring rw [h12v]; nlinarith [phi_gt_onePointSixOne] have h44 : phi ^ 44 = phi ^ 32 * phi ^ 12 := by ring rw [h44] norm_num nlinarith [mul_pos (by linarith [phi32_gt_4M] : (0:ℝ) < phi^32) (by linarith : (0:ℝ) < phi^12), phi32_gt_4M, h12]/-- η_B < 10^(-8). -/ theorem etaB_small : etaB_RS * (10:ℝ)^8 < 1 := by unfold etaB_RS baryonRung rw [inv_mul_lt_iff₀ (pow_pos phi_pos 44)] simp only [mul_one] exact phi44_gt_1e8The theorem φ⁴⁴ > 10⁸ proves η_B < 10⁻⁸. phi44_gt_1e8 · etaB_small · IndisputableMonolith/Cosmology/BaryonAsymmetryFromPhiLadder.lean