Encyclopedia Cosmology Cosmology Dark Energy Theta Phi Four Six Lt Phi Four
ARTICLE 4 claims 3 theorems 1 model
Cosmology Dark Energy Theta Phi Four Six Lt Phi Four
A single inequality, 6 < φ⁴, certifies that a candidate dark-energy fraction stays below a sharp one-sixth ceiling.
The fourfold dilution bound
The golden ratio φ, roughly 1.618, appears throughout mathematics and physics. One of its less famous powers is φ⁴, about 6.854. The inequality 6 < φ⁴ is a simple numerical fact, but in the Recognition Science framework it is a load-bearing bound. It says that the fourth power of the golden ratio exceeds six, which is exactly what one needs to show that the reciprocal 1/φ⁴ is smaller than 1/6.
The number 1/φ⁴, about 0.1459, is proposed as a candidate for the dark-energy occupancy fraction. The idea is that dark energy acts like a leakage or occupancy correction, a fraction of a unit ceiling set by the framework's cost function. In a four-dimensional spacetime setting, the minimal dimension-uniform attenuation of a unit cost is a fourfold dilution, hence the fourth power. The bound 6 < φ⁴ guarantees that this candidate fraction is strictly below the sharp 1/6 envelope, meaning it is a positive, sub-saturation value that fits the first-principles target.
The framework's machine-checked library of formal theorems proves the inequality using a previously established lower bound, 1.61 < φ. From that bound, the proof derives 6 < φ⁴, and from that, the strict inequality 1/φ⁴ < 1/6. The chain is closed: the candidate is positive, at most one, and strictly below the envelope, so it qualifies as an admissible attenuation fraction. The library also shows that the resulting dynamic amplitude is positive and below the J(φ) ceiling.
What the declaration does not claim is the physical premise. The algebraic content is closed, but the scientific burden remains open: justifying that four-dimensional φ-dilution is the actual dark-energy occupancy law. The framework proves the candidate and its bounds as a theorem; it does not prove that this candidate is the true description of dark energy. That physical identification is a separate step, explicitly flagged as the remaining work.
THEOREM six_lt_phi_four · IndisputableMonolith/Cosmology/DarkEnergyThetaPhiFour.lean
/-- `φ⁴` is larger than `6`, using the established lower bound `1.61 < φ`. -/
theorem six_lt_phi_four : (6 : ℝ) < phi ^ 4 := by
have h : (1.61 : ℝ) < phi := phi_gt_onePointSixOne
have hpos : (0 : ℝ) < phi := phi_pos
nlinarith [sq_nonneg (phi - 1.61), sq_nonneg (phi ^ 2 - (1.61 : ℝ) ^ 2)]
MODEL thetaPhiFour · IndisputableMonolith/Cosmology/DarkEnergyThetaPhiFour.lean
/-- The candidate dark-energy occupancy fraction: four-dimensional φ-dilution. -/
def thetaPhiFour : ℝ := 1 / phi ^ 4
THEOREM thetaPhiFour_lt_one_sixth · IndisputableMonolith/Cosmology/DarkEnergyThetaPhiFour.lean
/-- The candidate is strictly below the sharp `1/6` envelope. -/
theorem thetaPhiFour_lt_one_sixth : thetaPhiFour < (1 : ℝ) / 6 := by
unfold thetaPhiFour
have h6 : (6 : ℝ) < phi ^ 4 := six_lt_phi_four
have hphi4 : (0 : ℝ) < phi ^ 4 := pow_pos phi_pos 4
have h6pos : (0 : ℝ) < (6 : ℝ) := by norm_num
rw [div_lt_div_iff₀ hphi4 h6pos]
nlinarith
THEOREM thetaPhiFour_amplitude_pos · thetaPhiFour_amplitude_le_ceiling · IndisputableMonolith/Cosmology/DarkEnergyThetaPhiFour.lean
/-- The candidate's dynamic amplitude is positive. -/
theorem thetaPhiFour_amplitude_pos :
0 < attenuatedAmplitude thetaPhiFour :=
thetaDerived_amplitude_pos thetaPhiFourFirstPrinciples
/-- The candidate's dynamic amplitude is below the `J(φ)` ceiling. -/
theorem thetaPhiFour_amplitude_le_ceiling :
attenuatedAmplitude thetaPhiFour ≤ Cost.Jcost phi :=
thetaDerived_amplitude_le_ceiling thetaPhiFourFirstPrinciples
What this page does not claim
The physical premise that four-dimensional φ-dilution is the dark-energy occupancy law is not proved. The candidate 1/φ⁴ is not claimed to match any measured dark-energy value. The inequality 6 < φ⁴ is not claimed to hold for any number other than the golden ratio.
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/DarkEnergyThetaPhiFour.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:
- What physical argument would justify four-dimensional φ-dilution as the dark-energy occupancy law?
- How does the candidate fraction 1/φ⁴ compare with measured dark-energy density values?
- What is the sharp implied envelope 1/6 derived from in the forcing chain?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM six_lt_phi_four · IndisputableMonolith/Cosmology/DarkEnergyThetaPhiFour.lean
/-- `φ⁴` is larger than `6`, using the established lower bound `1.61 < φ`. -/ theorem six_lt_phi_four : (6 : ℝ) < phi ^ 4 := by have h : (1.61 : ℝ) < phi := phi_gt_onePointSixOne have hpos : (0 : ℝ) < phi := phi_pos nlinarith [sq_nonneg (phi - 1.61), sq_nonneg (phi ^ 2 - (1.61 : ℝ) ^ 2)]The inequality 6 < φ⁴ is a simple numerical fact, but in the Recognition Science framework it is a load-bearing bound. six_lt_phi_four · IndisputableMonolith/Cosmology/DarkEnergyThetaPhiFour.leanMODEL thetaPhiFour · IndisputableMonolith/Cosmology/DarkEnergyThetaPhiFour.lean
/-- The candidate dark-energy occupancy fraction: four-dimensional φ-dilution. -/ def thetaPhiFour : ℝ := 1 / phi ^ 4The number 1/φ⁴, about 0.1459, is proposed as a candidate for the dark-energy occupancy fraction. thetaPhiFour · IndisputableMonolith/Cosmology/DarkEnergyThetaPhiFour.leanTHEOREM thetaPhiFour_lt_one_sixth · IndisputableMonolith/Cosmology/DarkEnergyThetaPhiFour.lean
/-- The candidate is strictly below the sharp `1/6` envelope. -/ theorem thetaPhiFour_lt_one_sixth : thetaPhiFour < (1 : ℝ) / 6 := by unfold thetaPhiFour have h6 : (6 : ℝ) < phi ^ 4 := six_lt_phi_four have hphi4 : (0 : ℝ) < phi ^ 4 := pow_pos phi_pos 4 have h6pos : (0 : ℝ) < (6 : ℝ) := by norm_num rw [div_lt_div_iff₀ hphi4 h6pos] nlinarithThe bound 6 < φ⁴ guarantees that this candidate fraction is strictly below the sharp 1/6 envelope. thetaPhiFour_lt_one_sixth · IndisputableMonolith/Cosmology/DarkEnergyThetaPhiFour.leanTHEOREM thetaPhiFour_amplitude_pos · thetaPhiFour_amplitude_le_ceiling · IndisputableMonolith/Cosmology/DarkEnergyThetaPhiFour.lean
/-- The candidate's dynamic amplitude is positive. -/ theorem thetaPhiFour_amplitude_pos : 0 < attenuatedAmplitude thetaPhiFour := thetaDerived_amplitude_pos thetaPhiFourFirstPrinciples/-- The candidate's dynamic amplitude is below the `J(φ)` ceiling. -/ theorem thetaPhiFour_amplitude_le_ceiling : attenuatedAmplitude thetaPhiFour ≤ Cost.Jcost phi := thetaDerived_amplitude_le_ceiling thetaPhiFourFirstPrinciplesThe library also shows that the resulting dynamic amplitude is positive and below the J(φ) ceiling. thetaPhiFour_amplitude_pos · thetaPhiFour_amplitude_le_ceiling · IndisputableMonolith/Cosmology/DarkEnergyThetaPhiFour.lean