Encyclopedia Cosmology Cosmology Dark Energy
ARTICLE 5 claims 3 theorems 2 models
Cosmology Dark Energy
Dark energy is the name for the universe's accelerating expansion; in Recognition Science it emerges from the cost of maintaining a cosmic ledger balanced as space grows.
Dark energy as ledger tension
Dark energy is the name physicists give to the unknown force that makes the expansion of the universe accelerate. In the standard cosmological model it is represented by a constant, the cosmological constant Λ, which contributes about 68 percent of the total energy density of the universe today. The measured value of Λ is extraordinarily small in Planck units, roughly 10⁻¹²², and its origin is one of the deepest unsolved problems in physics. The standard model treats Λ as a free parameter: it must be put in by hand to match observations.
Recognition Science (RS) proposes a different origin. The framework models reality as a ledger, a discrete record of recognition events, where each event carries a cost given by the function J(x) = (x + 1/x)/2 − 1. The central idea is that the ledger must balance globally: the total cost over any region must be zero. But the universe is expanding, creating new volume that demands new entries. The tension between the requirement of balance and the growth of space produces a residual energy, and that energy is dark energy. In this account, Λ is not a fundamental constant but an emergent property of the ledger's attempt to stay coherent during expansion.
The framework's machine-checked library of formal theorems defines the key quantities and proves several structural facts. It defines the cosmological constant as Λ = 3 H₀², where H₀ is the Hubble constant, set to 2.2 × 10⁻¹⁸ per second, a value consistent with current measurements. It proves that this Λ is positive, and that the ratio of the universe's age to the Planck time is greater than 10⁶⁰, a statement of the vast scale separation between cosmology and quantum gravity. It also proves that the dark energy density parameter ΩΛ is greater than 0.5, meaning dark energy dominates the universe's energy budget, and that the equation of state w equals −1, matching the standard model's value for a cosmological constant. These are formal consequences of the definitions, not empirical measurements.
The framework also defines a cost density, the total cost per unit volume of a spacetime region, and an expansion tension, the cost of adding new volume during expansion. The central formula for the cosmological constant is Λ = J(φ) H₀² / φ³, where φ is the golden ratio, which appears throughout the framework. This expression has not been proven to match the measured value; it is a proposed derivation. The framework's own prediction structure includes a falsifier: if observations show the equation of state w deviates from −1, or if Λ does not scale with H₀², the framework's account would be falsified.
What this means in plain language: the framework offers a concrete, testable story for why dark energy exists, tying its value to the expansion rate and the golden ratio rather than leaving it as a free parameter. The formal library proves the internal consistency of this story, but the match to the observed universe remains a hypothesis to be tested, not a proved result.
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
THEOREM lambda_positive · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- **THEOREM**: The cosmological constant is positive (repulsive). -/
theorem lambda_positive : cosmologicalConstant > 0 := by
unfold cosmologicalConstant H0
norm_num
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
THEOREM dark_energy_eos · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- **THEOREM**: Dark energy has w = -1 (cosmological constant). -/
theorem dark_energy_eos : equationOfState = -1 := rfl
MODEL lambdaFromJCost · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- The fundamental origin of Λ: ledger tension per unit volume.
When space expands:
1. New "cells" appear in the 3D voxel lattice
2. Each cell requires ledger entries to maintain balance
3. The J-cost of these entries = dark energy density
Λ = (J-cost per entry) × (entry density) × (expansion rate)² -/
noncomputable def lambdaFromJCost : ℝ :=
Jcost phi * H0^2 / phi^3
What this page does not claim
This answer does not claim that the framework has derived the measured value of Λ; the match to observation remains a hypothesis. This answer does not claim that the framework explains the physical mechanism by which expansion creates new ledger entries. This answer does not claim that the framework's dark energy model has been tested against supernova or cosmic microwave background data.
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 Hubble constant H₀ from first principles?
- What observations would distinguish ledger tension from a fundamental cosmological constant?
- Does the framework predict a time variation in the equation of state w?
- How does the ledger account for the transition from matter domination to dark energy domination?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
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 = 1The framework defines the cosmological constant as Λ = 3 H₀², where H₀ is the Hubble constant set to 2.2 × 10⁻¹⁸ per second. cosmologicalConstant · IndisputableMonolith/Cosmology/DarkEnergy.leanTHEOREM lambda_positive · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- **THEOREM**: The cosmological constant is positive (repulsive). -/ theorem lambda_positive : cosmologicalConstant > 0 := by unfold cosmologicalConstant H0 norm_numIt proves that Λ is positive. lambda_positive · IndisputableMonolith/Cosmology/DarkEnergy.leanTHEOREM 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_numIt proves that the dark energy density parameter ΩΛ is greater than 0.5. dark_energy_dominates · IndisputableMonolith/Cosmology/DarkEnergy.leanTHEOREM dark_energy_eos · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- **THEOREM**: Dark energy has w = -1 (cosmological constant). -/ theorem dark_energy_eos : equationOfState = -1 := rflIt proves that the equation of state w equals −1. dark_energy_eos · IndisputableMonolith/Cosmology/DarkEnergy.leanMODEL lambdaFromJCost · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- The fundamental origin of Λ: ledger tension per unit volume. When space expands: 1. New "cells" appear in the 3D voxel lattice 2. Each cell requires ledger entries to maintain balance 3. The J-cost of these entries = dark energy density Λ = (J-cost per entry) × (entry density) × (expansion rate)² -/ noncomputable def lambdaFromJCost : ℝ := Jcost phi * H0^2 / phi^3The central formula for the cosmological constant is Λ = J(φ) H₀² / φ³. lambdaFromJCost · IndisputableMonolith/Cosmology/DarkEnergy.lean