Encyclopedia Cosmology Cosmology Dark Energy Phi Dilution Derivation Self Similar Attenuation Forced
ARTICLE 4 claims 4 theorems
Cosmology Dark Energy Phi Dilution Derivation Self Similar Attenuation Forced
A single equation, ρ = 1/(1+ρ), pins the dark-energy dilution factor to the golden ratio's reciprocal, and the proof is machine-checked.
The forced attenuation ratio
Dark energy is often treated as a free parameter in cosmology, a number you tune to match the observed acceleration of the universe. The Recognition Science framework takes a different route: it tries to derive such numbers from first principles. One of its results concerns the factor by which some occupancy, a measure of how much of a physical quantity survives, attenuates as it passes through a single dimension of recognition. The declaration self_similar_attenuation_forced states that this factor is not arbitrary. If the factor ρ is positive and obeys the reciprocal self-similarity equation ρ = 1/(1+ρ), then ρ must equal 1/φ, the reciprocal of the golden ratio φ ≈ 1.618. The proof routes through the same scale-forcing theorem that fixes the golden ratio as the unique self-similar scaling: it shows that 1/ρ is a fixed point of the map t ↦ 1 + 1/t, and the only such fixed point greater than 1 is φ.
The equation ρ = 1/(1+ρ) has a plain meaning. It says that the attenuation factor after one step equals the reciprocal of one plus itself. This is a self-similar condition: the factor is defined in terms of its own value, and the unique positive solution is the golden ratio's reciprocal. The framework's library, a machine-checked collection of formal theorems, proves this in the declaration self_similar_attenuation_forced, with no gaps and no extra axioms. The result is not a numerical coincidence; it is a forced consequence of the equation. The same fixed-point theorem that forces the golden ratio as the scale of the framework also forces this attenuation factor, which shows the two are the same underlying structure.
This single-dimension result feeds a larger derivation. The framework defines a dimension-uniform dilution law: an occupancy function occ n for n independent recognition dimensions, constrained by two premises. The first is that occupancy across m + n dimensions is the product of the two sub-occupancies, a multiplicative shadow of log-additivity in cost. The second is that a single dimension attenuates by the reciprocal self-similarity fixed point, exactly the ρ above. From these two premises alone, the framework derives by induction that occ n = (1/φ)^n, the φ-dilution law. The exponent is then fixed to the forced spacetime dimension, which the framework proves equals 4 (one temporal octave plus three spatial dimensions from Alexander duality). The result is the dark-energy occupancy θ = φ⁻⁴, a value that was previously asserted and is now derived.
What this does not claim is important. The theorem establishes a conditional: if a positive ρ satisfies ρ = 1/(1+ρ), then ρ = 1/φ. It does not assert that dark energy actually obeys this equation in the physical universe. That is a modeling premise, a choice about how to represent dark energy within the framework, not a consequence of the theorem. The framework also does not claim that the golden ratio itself is measured in any cosmological observation. The derivation is internal: it shows that within the framework's axioms, the attenuation factor and the dark-energy occupancy are forced. Whether this matches the observed value of dark energy is an empirical check, not part of the proof. The theorem also does not claim that the exponent 4 is derived from the attenuation equation alone; it relies on a separate, forced spacetime dimension result.
The practical upshot is that the framework replaces a tuned parameter with a derived one. Instead of saying dark energy has some value because we observed it, the framework says: if you accept these two premises, the value is forced. The machine-checked proof gives the derivation a solid footing, and the consistency of the premises is shown by an explicit example, the canonical dilution law occ n = (1/φ)^n. The reader can now see that the golden ratio's reciprocal is not an aesthetic choice but the unique solution to a self-similarity condition, and that this single fact cascades into a full dilution law at the forced dimension.
THEOREM self_similar_attenuation_forced · IndisputableMonolith/Cosmology/DarkEnergyPhiDilutionDerivation.lean
/-- **The self-similar attenuation ratio is forced to `φ⁻¹`.** Any positive `ρ` solving the
reciprocal self-similarity equation `ρ = 1/(1+ρ)` equals `1/φ`. The proof routes through the
*scale-forcing* theorem: `1/ρ` solves `x = recipShift x` with `x > 1`, hence `1/ρ = φ`. -/
theorem self_similar_attenuation_forced {ρ : ℝ} (hpos : 0 < ρ)
(hfp : ρ = 1 / (1 + ρ)) : ρ = 1 / Constants.phi := by
have hsum_ne : (1 + ρ) ≠ 0 := by positivity
have key : ρ * (1 + ρ) = 1 := by rwa [eq_div_iff hsum_ne] at hfp
have hρ_lt_one : ρ < 1 := by nlinarith [key, hpos]
have hx_gt_one : (1 : ℝ) < 1 / ρ := by
have h := one_div_lt_one_div_of_lt hpos hρ_lt_one
simpa using h
have hfix : ReciprocalGenerator.recipShift (1 / ρ) = 1 / ρ := by
unfold ReciprocalGenerator.recipShift ReciprocalGenerator.recip
rw [one_div ρ, inv_inv]
rw [eq_comm, inv_eq_one_div, div_eq_iff hpos.ne']
linear_combination -key
have hxphi : 1 / ρ = Constants.phi :=
(ReciprocalGenerator.recipShift_fixed_iff hx_gt_one).mp hfix
calc ρ = 1 / (1 / ρ) := (one_div_one_div ρ).symm
_ = 1 / Constants.phi := by rw [hxphi]
THEOREM occ_eq_pow · IndisputableMonolith/Cosmology/DarkEnergyPhiDilutionDerivation.lean
/-- **The dilution law, derived.** `n` independent dimensions dilute by `φ⁻ⁿ`. -/
theorem occ_eq_pow : ∀ n : ℕ, L.occ n = (1 / Constants.phi) ^ n := by
intro n
induction n with
| zero => rw [pow_zero]; exact L.occ_zero
| succ k ih =>
have hc := L.composes k 1
rw [hc, ih, L.occ_one_eq_inv_phi, pow_succ]
THEOREM dilutionExponent_eq_four · IndisputableMonolith/Cosmology/DarkEnergyPhiDilutionDerivation.lean
/-- The forced exponent equals `4` (1 temporal octave + 3 spatial from Alexander duality). -/
theorem dilutionExponent_eq_four : dilutionExponent = 4 :=
SpacetimeEmergence.spacetime_dim_eq_four
THEOREM derivedTheta_eq_phiFour · IndisputableMonolith/Cosmology/DarkEnergyPhiDilutionDerivation.lean
/-- **Headline: `θ = φ⁻⁴` is forced.** Any dimension-uniform dilution law yields exactly the
four-dimensional φ-dilution `θ = φ⁻⁴` at the forced spacetime dimension. -/
theorem derivedTheta_eq_phiFour (L : DimensionUniformDilution) :
derivedTheta L = DarkEnergyThetaPhiFour.thetaPhiFour := by
unfold derivedTheta
rw [L.occ_eq_pow, dilutionExponent_eq_four]
unfold DarkEnergyThetaPhiFour.thetaPhiFour
rw [div_pow, one_pow]
What this page does not claim
The theorem does not assert that dark energy obeys the equation ρ = 1/(1+ρ) in the physical universe; that is a modeling premise. The framework does not claim that the golden ratio is measured in any cosmological observation. The exponent 4 is not derived from the attenuation equation alone; it relies on a separate forced spacetime dimension result.
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/DarkEnergyPhiDilutionDerivation.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 measurement would confirm or refute that dark energy follows the φ⁻⁴ dilution law?
- How does the forced spacetime dimension of 4 emerge from Alexander duality in the framework?
- What is the empirical status of the dark-energy occupancy θ = φ⁻⁴ against cosmological observations?
- Does the self-similarity equation ρ = 1/(1+ρ) have any other positive solutions if the positivity premise is dropped?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM self_similar_attenuation_forced · IndisputableMonolith/Cosmology/DarkEnergyPhiDilutionDerivation.lean
/-- **The self-similar attenuation ratio is forced to `φ⁻¹`.** Any positive `ρ` solving the reciprocal self-similarity equation `ρ = 1/(1+ρ)` equals `1/φ`. The proof routes through the *scale-forcing* theorem: `1/ρ` solves `x = recipShift x` with `x > 1`, hence `1/ρ = φ`. -/ theorem self_similar_attenuation_forced {ρ : ℝ} (hpos : 0 < ρ) (hfp : ρ = 1 / (1 + ρ)) : ρ = 1 / Constants.phi := by have hsum_ne : (1 + ρ) ≠ 0 := by positivity have key : ρ * (1 + ρ) = 1 := by rwa [eq_div_iff hsum_ne] at hfp have hρ_lt_one : ρ < 1 := by nlinarith [key, hpos] have hx_gt_one : (1 : ℝ) < 1 / ρ := by have h := one_div_lt_one_div_of_lt hpos hρ_lt_one simpa using h have hfix : ReciprocalGenerator.recipShift (1 / ρ) = 1 / ρ := by unfold ReciprocalGenerator.recipShift ReciprocalGenerator.recip rw [one_div ρ, inv_inv] rw [eq_comm, inv_eq_one_div, div_eq_iff hpos.ne'] linear_combination -key have hxphi : 1 / ρ = Constants.phi := (ReciprocalGenerator.recipShift_fixed_iff hx_gt_one).mp hfix calc ρ = 1 / (1 / ρ) := (one_div_one_div ρ).symm _ = 1 / Constants.phi := by rw [hxphi]If a positive ρ satisfies ρ = 1/(1+ρ), then ρ must equal 1/φ, the reciprocal of the golden ratio. self_similar_attenuation_forced · IndisputableMonolith/Cosmology/DarkEnergyPhiDilutionDerivation.leanTHEOREM occ_eq_pow · IndisputableMonolith/Cosmology/DarkEnergyPhiDilutionDerivation.lean
/-- **The dilution law, derived.** `n` independent dimensions dilute by `φ⁻ⁿ`. -/ theorem occ_eq_pow : ∀ n : ℕ, L.occ n = (1 / Constants.phi) ^ n := by intro n induction n with | zero => rw [pow_zero]; exact L.occ_zero | succ k ih => have hc := L.composes k 1 rw [hc, ih, L.occ_one_eq_inv_phi, pow_succ]From the two premises of composition and single-dimension self-similar attenuation, the framework derives by induction that occ n = (1/φ)^n. occ_eq_pow · IndisputableMonolith/Cosmology/DarkEnergyPhiDilutionDerivation.leanTHEOREM dilutionExponent_eq_four · IndisputableMonolith/Cosmology/DarkEnergyPhiDilutionDerivation.lean
/-- The forced exponent equals `4` (1 temporal octave + 3 spatial from Alexander duality). -/ theorem dilutionExponent_eq_four : dilutionExponent = 4 := SpacetimeEmergence.spacetime_dim_eq_fourThe exponent is fixed to the forced spacetime dimension, which equals 4. dilutionExponent_eq_four · IndisputableMonolith/Cosmology/DarkEnergyPhiDilutionDerivation.leanTHEOREM derivedTheta_eq_phiFour · IndisputableMonolith/Cosmology/DarkEnergyPhiDilutionDerivation.lean
/-- **Headline: `θ = φ⁻⁴` is forced.** Any dimension-uniform dilution law yields exactly the four-dimensional φ-dilution `θ = φ⁻⁴` at the forced spacetime dimension. -/ theorem derivedTheta_eq_phiFour (L : DimensionUniformDilution) : derivedTheta L = DarkEnergyThetaPhiFour.thetaPhiFour := by unfold derivedTheta rw [L.occ_eq_pow, dilutionExponent_eq_four] unfold DarkEnergyThetaPhiFour.thetaPhiFour rw [div_pow, one_pow]The result is the dark-energy occupancy θ = φ⁻⁴. derivedTheta_eq_phiFour · IndisputableMonolith/Cosmology/DarkEnergyPhiDilutionDerivation.lean