Encyclopedia Cosmology Cosmology Dark Energy Dark Energy Predictions
ARTICLE 4 claims 2 theorems 2 models
Cosmology Dark Energy Dark Energy Predictions
Dark energy is the unknown force accelerating cosmic expansion; this framework declares three specific predictions about it, and one is a formal theorem.
The declared predictions
Dark energy is the name cosmologists give to the unknown agent that makes the expansion of the universe accelerate. In the standard model of cosmology it is represented by a constant, called the cosmological constant and written Λ, whose measured value is extraordinarily small, about 10⁻¹²² in Planck units. Its origin is one of the deepest open problems in physics: no known particle or field explains why it has the value it does, or why it is not vastly larger.
The Recognition Science framework approaches this problem from its own starting point: reality keeps a ledger, a discrete record of recognition events, and the cost of maintaining that record is forced by a proved theorem. In this account, dark energy emerges from ledger tension: the ledger must balance globally, but the expanding universe creates new volume that demands new entries, and the cost of maintaining balance during that expansion shows up as a residual energy density. The framework's library of machine-checked formal theorems encodes this idea in a structure called DarkEnergyPredictions, which declares three specific claims.
The first is the equation of state, the number cosmologists use to describe how a substance responds to pressure. The framework sets this to w = -1, and a formal theorem in the library proves that the definition equals -1 by direct computation. This matches the value that observations currently favor for dark energy, the value of a pure cosmological constant. The second claim is the scaling law: it declares that Λ is proportional to the square of the Hubble constant H₀, the rate at which the universe expands. The third is the nature of dark energy: the framework declares it emergent from ledger tension during cosmic expansion, rather than a fundamental constant of nature.
The library also defines the cosmological constant itself as 3 H₀² in natural units, a choice that makes Λ positive and proportional to the square of the expansion rate. Two further theorems follow from the definitions: the cosmological constant is positive, and the ratio of the universe's age to the Planck time exceeds 10⁶⁰, a number that encodes the vast separation between the two scales. These are formal consequences of the definitions, not empirical measurements. The framework also defines a falsifier structure, a record that pairs a predicted value with an observed one and asks whether the mismatch counts as a falsification, but it does not fill in observed values or declare any current observation a falsification.
What the declaration does not claim is as important as what it establishes. It does not derive the measured value of Λ from first principles; the value 10⁻¹²² appears in the docstring as an estimate, not as a proved result. It does not prove that dark energy is emergent, only that the framework models it that way. And it does not claim that w = -1 is a prediction that observations have confirmed; it is a definitional choice that happens to match the currently favored value. The formal content is real but narrow: three declared predictions, two proved positivity and scale theorems, and a falsifier structure whose observation fields are left empty.
THEOREM dark_energy_eos · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- **THEOREM**: Dark energy has w = -1 (cosmological constant). -/
theorem dark_energy_eos : equationOfState = -1 := rfl
THEOREM lambda_positive · cosmic_ratio_large · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- **THEOREM**: The cosmological constant is positive (repulsive). -/
theorem lambda_positive : cosmologicalConstant > 0 := by
unfold cosmologicalConstant H0
norm_num
/-- The cosmic ratio is enormous (Gap-45 scale). -/
theorem cosmic_ratio_large : cosmicRatio > 1e60 := by
unfold cosmicRatio t_universe t_planck
norm_num
MODEL rsPredictions · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- RS predictions for dark energy. -/
def rsPredictions : DarkEnergyPredictions := {
w := -1,
lambda_scaling := "Λ ∝ H₀²",
nature := "Emergent from ledger tension during cosmic expansion"
}
MODEL DarkEnergyFalsifier · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- The dark energy derivation would be falsified by:
1. Measured w ≠ -1 (significantly)
2. Λ varying with cosmic epoch in ways not matching H₀² scaling
3. Discovery of fifth force at cosmological scales
4. Dark energy "clumping" (it should be perfectly uniform) -/
structure DarkEnergyFalsifier where
/-- Type of observation. -/
observation : String
/-- Predicted by RS. -/
predicted : String
/-- Observed value. -/
observed : String
/-- Is this a falsification? -/
isFalsification : Bool
What this page does not claim
The measured value of Λ is not derived; the docstring's 10⁻¹²² is an estimate, not a proved result. The framework does not prove dark energy is emergent; it only models it that way. The declaration does not claim w = -1 is a confirmed prediction; it is a definitional choice that matches the currently favored value.
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:
- What observation would distinguish an emergent dark energy from a fundamental cosmological constant?
- How does the framework derive the numerical value of the cosmological constant from the Planck-to-Hubble scale ratio?
- What physical mechanism in the framework connects ledger tension to a negative-pressure equation of state?
- Can the framework's scaling law Λ ∝ H₀² be tested against measurements of dark energy at different cosmic epochs?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM dark_energy_eos · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- **THEOREM**: Dark energy has w = -1 (cosmological constant). -/ theorem dark_energy_eos : equationOfState = -1 := rflThe framework sets the equation of state to w = -1, and a formal theorem in the library proves that the definition equals -1 by direct computation. dark_energy_eos · IndisputableMonolith/Cosmology/DarkEnergy.leanTHEOREM lambda_positive · cosmic_ratio_large · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- **THEOREM**: The cosmological constant is positive (repulsive). -/ theorem lambda_positive : cosmologicalConstant > 0 := by unfold cosmologicalConstant H0 norm_num/-- The cosmic ratio is enormous (Gap-45 scale). -/ theorem cosmic_ratio_large : cosmicRatio > 1e60 := by unfold cosmicRatio t_universe t_planck norm_numThe cosmological constant is positive, and the ratio of the universe's age to the Planck time exceeds 10⁶⁰. lambda_positive · cosmic_ratio_large · IndisputableMonolith/Cosmology/DarkEnergy.leanMODEL rsPredictions · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- RS predictions for dark energy. -/ def rsPredictions : DarkEnergyPredictions := { w := -1, lambda_scaling := "Λ ∝ H₀²", nature := "Emergent from ledger tension during cosmic expansion" }The framework declares dark energy emergent from ledger tension during cosmic expansion, rather than a fundamental constant of nature. rsPredictions · IndisputableMonolith/Cosmology/DarkEnergy.leanMODEL DarkEnergyFalsifier · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- The dark energy derivation would be falsified by: 1. Measured w ≠ -1 (significantly) 2. Λ varying with cosmic epoch in ways not matching H₀² scaling 3. Discovery of fifth force at cosmological scales 4. Dark energy "clumping" (it should be perfectly uniform) -/ structure DarkEnergyFalsifier where /-- Type of observation. -/ observation : String /-- Predicted by RS. -/ predicted : String /-- Observed value. -/ observed : String /-- Is this a falsification? -/ isFalsification : BoolThe framework defines a falsifier structure that pairs a predicted value with an observed one, but it does not fill in observed values or declare any current observation a falsification. DarkEnergyFalsifier · IndisputableMonolith/Cosmology/DarkEnergy.lean