Encyclopedia Cosmology Cosmology Dark Energy Dark Energy Dominates
ARTICLE 4 claims 1 theorem 3 models
Cosmology Dark Energy Dark Energy Dominates
A machine-checked theorem states that dark energy holds more than half of the universe's energy budget, a claim tied to a specific model of cosmic expansion.
Dark energy dominance
Dark energy is the name cosmologists give to the unknown agent driving the accelerated expansion of the universe. Observations of distant supernovae, the cosmic microwave background, and galaxy clustering all point to a universe whose expansion rate is speeding up, not slowing down. The standard cosmological model accounts for this with a cosmological constant, a uniform energy density that does not dilute as space expands. In that model, the fraction of the universe's total energy density contributed by dark energy is written as ΩΛ, and current measurements put it near 0.68. That figure means dark energy outweighs all ordinary matter and dark matter combined, and it has done so for roughly the last five billion years.
Within the Recognition Science framework, a machine-checked library of formal theorems contains a declaration named dark_energy_dominates. The framework models the universe as a ledger, a discrete record of events whose total cost must balance. The declaration proves, from the framework's definitions, that ΩΛ is greater than 0.5. In plain language, the theorem establishes that dark energy holds more than half of the total energy budget. The proof itself is a direct computation: the framework defines ΩΛ to be 0.68, and the theorem verifies that this number exceeds one half. The declaration does not derive the value 0.68 from first principles; it takes that number as an input, matching the observed value.
The framework's larger claim is that dark energy emerges from ledger tension. As the universe expands, new volume appears, and the ledger must account for new entries. The cost of maintaining balance across that expanding space is identified with the cosmological constant. The framework defines the constant as proportional to the square of the Hubble constant, H₀², with a numerical coefficient. It also defines the equation of state parameter w to be exactly -1, the value associated with a pure cosmological constant. These are definitions and models, not derived theorems.
What the declaration does not claim is just as important. It does not prove that dark energy exists, nor does it explain why the observed value is 0.68. It does not derive the cosmological constant's magnitude from the ledger structure; the framework's own notes call the derivation a target, not a completed proof. The theorem only states a numerical inequality based on a chosen input. A reader should not take it as evidence that the framework has solved the cosmological constant problem, only that within this specific model, the dominance of dark energy is consistent with the observed parameter.
THEOREM dark_energy_dominates · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- **THEOREM**: Dark energy dominates the universe today. -/
theorem dark_energy_dominates : omegaLambda > 0.5 := by
unfold omegaLambda
norm_num
MODEL omegaLambda · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- Dark energy density parameter Ω_Λ. -/
noncomputable def omegaLambda : ℝ := 0.68 -- Observed value
MODEL equationOfState · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- The dark energy equation of state: w = P/ρ. -/
noncomputable def equationOfState : ℝ := -1
MODEL cosmologicalConstant · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- The tension energy density is the cosmological constant. -/
noncomputable def cosmologicalConstant : ℝ :=
-- Λ ≈ (energy to maintain ledger balance) / volume
-- This scales as H₀² due to the expansion rate
3 * H0^2 -- In natural units with c = 1
What this page does not claim
The theorem does not prove that dark energy exists or that the cosmological constant is non-zero. The framework has not derived the magnitude of the cosmological constant from its ledger principles. The declaration does not establish that the framework's model of dark energy is physically correct, only that its chosen parameters satisfy a numerical inequality.
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/DarkEnergy.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 numerical value of ΩΛ from ledger structure rather than taking it as input?
- What physical mechanism in the framework explains the transition from matter domination to dark energy domination?
- Can the framework's ledger tension model produce a testable prediction for the equation of state's deviation from -1?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM dark_energy_dominates · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- **THEOREM**: Dark energy dominates the universe today. -/ theorem dark_energy_dominates : omegaLambda > 0.5 := by unfold omegaLambda norm_numThe declaration proves, from the framework's definitions, that ΩΛ is greater than 0.5. dark_energy_dominates · IndisputableMonolith/Cosmology/DarkEnergy.leanMODEL omegaLambda · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- Dark energy density parameter Ω_Λ. -/ noncomputable def omegaLambda : ℝ := 0.68 -- Observed valueThe framework defines ΩΛ to be 0.68, matching the observed value. omegaLambda · IndisputableMonolith/Cosmology/DarkEnergy.leanMODEL equationOfState · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- The dark energy equation of state: w = P/ρ. -/ noncomputable def equationOfState : ℝ := -1The framework defines the equation of state parameter w to be exactly -1. equationOfState · IndisputableMonolith/Cosmology/DarkEnergy.leanMODEL cosmologicalConstant · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- The tension energy density is the cosmological constant. -/ noncomputable def cosmologicalConstant : ℝ := -- Λ ≈ (energy to maintain ledger balance) / volume -- This scales as H₀² due to the expansion rate 3 * H0^2 -- In natural units with c = 1The framework defines the cosmological constant as proportional to H₀². cosmologicalConstant · IndisputableMonolith/Cosmology/DarkEnergy.lean