Encyclopedia Cosmology Cosmology Dark Energy Lambda Positive
ARTICLE 3 claims 3 theorems
Cosmology Dark Energy Lambda Positive
Dark energy is the mysterious force accelerating cosmic expansion; a formal framework derives its sign, not its size.
The positive constant
Dark energy is the name astronomers give to the unknown agent that makes the expansion of the universe accelerate. Discovered in 1998 through supernova observations, it is usually described by a cosmological constant, written Λ, which appears in Einstein's equations as a kind of energy density of empty space itself. The measured value is extraordinarily small, about 10⁻¹²² in Planck units, yet it dominates the universe's energy budget today, making up roughly 68 percent of the total. Its origin is one of the deepest unsolved problems in physics.
Within the Recognition Science framework, dark energy is modeled as a tension in a ledger. The framework imagines reality maintaining a discrete record of recognition events, a ledger. The ledger must stay balanced, meaning the total cost of its entries sums to zero. But the universe is expanding, creating new volume that demands new entries. The framework defines the cosmological constant as the cost per unit volume of maintaining that balance during expansion. In its formal library, a machine-checked collection of theorems, this is expressed by the definition cosmologicalConstant, which sets Λ equal to 3 times the square of the Hubble constant H₀, in natural units.
The declaration lambda_positive is a proved theorem in that library. It states that the cosmological constant, as defined by the framework, is greater than zero. The proof is a direct computation from the definition: since the Hubble constant is a positive number, its square is positive, and multiplying by 3 yields a positive result. The theorem does not derive the measured magnitude of Λ, nor does it explain why the constant has the tiny value observed. It establishes only the sign, the fact that the framework's model of dark energy is a positive energy density, consistent with the observed accelerating expansion.
The framework also provides a companion theorem, dark_energy_dominates, which proves that its model's dark energy fraction exceeds one half. This matches the observation that dark energy is the dominant component of the universe's energy budget. But again, the theorem works from a defined value, omegaLambda set to 0.68, which is labeled as the observed value rather than derived. The framework's contribution here is structural: it offers a picture in which a positive cosmological constant is a necessary consequence of balancing a ledger across an expanding space, not a free parameter. The numerical agreement with observation, such as it is, is an empirical check, not a theorem.
What the framework does not claim is equally important. It does not claim to have solved the cosmological constant problem, the vast discrepancy between the observed value and quantum field theory estimates. It does not claim that its definition of Λ, proportional to H₀², is a derivation of the measured value; the proportionality constant is a modeling choice. And it does not claim that the ledger picture is the true physical mechanism of dark energy. The declaration lambda_positive is a statement about a formal definition, proved by computation, and nothing more. It is a signpost, not a destination.
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 lambda_positive · cosmologicalConstant · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- **THEOREM**: The cosmological constant is positive (repulsive). -/
theorem lambda_positive : cosmologicalConstant > 0 := by
unfold cosmologicalConstant H0
norm_num
/-- 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 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
What this page does not claim
The framework does not derive the measured magnitude of the cosmological constant. The framework does not solve the cosmological constant problem of quantum field theory. The framework does not claim that its ledger model is the true physical mechanism of dark energy.
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 physical mechanism, if any, creates the ledger tension that the framework models as dark energy?
- How does the framework's definition of Λ, proportional to H₀², relate to the observed value of Λ in Planck units?
- Can the framework's ledger model produce a prediction for the dark energy equation of state that is testable beyond the value w = -1?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM lambda_positive · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- **THEOREM**: The cosmological constant is positive (repulsive). -/ theorem lambda_positive : cosmologicalConstant > 0 := by unfold cosmologicalConstant H0 norm_numThe declaration lambda_positive is a proved theorem in that library, stating that the cosmological constant, as defined by the framework, is greater than zero. lambda_positive · IndisputableMonolith/Cosmology/DarkEnergy.leanTHEOREM lambda_positive · cosmologicalConstant · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- **THEOREM**: The cosmological constant is positive (repulsive). -/ theorem lambda_positive : cosmologicalConstant > 0 := by unfold cosmologicalConstant H0 norm_num/-- 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 proof is a direct computation from the definition: since the Hubble constant is a positive number, its square is positive, and multiplying by 3 yields a positive result. lambda_positive · cosmologicalConstant · 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_numThe framework also provides a companion theorem, dark_energy_dominates, which proves that its model's dark energy fraction exceeds one half. dark_energy_dominates · IndisputableMonolith/Cosmology/DarkEnergy.lean