Encyclopedia Cosmology Cosmology Dark Energy Spacetime Region
ARTICLE 5 claims 1 theorem 4 models
Cosmology Dark Energy Spacetime Region
A machine-checked structure defines a patch of space by its volume, its ledger entries, and their cost, grounding a framework's model of dark energy.
SpacetimeRegion
A spacetime region is a bounded patch of the universe, the kind of object cosmologists divide the sky into when they measure how fast distant galaxies are receding. In the Recognition Science framework, such a region is not just a geometric volume. The framework's machine-checked library of formal statements defines a SpacetimeRegion as a structure with four parts: a positive volume, a count of ledger entries, the total cost of those entries, and a proof that the volume is positive. The ledger, a discrete record of events, is the framework's core image: reality keeps a running account of recognition events, and each event carries a forced cost.
The structure itself is a definition, not a theorem. It chooses what a region is for the framework's purposes. From it, the framework derives quantities that cosmologists recognize. The cost density is the region's total cost divided by its volume. The entry density is the number of ledger entries per unit volume. A region is called balanced when its total cost is exactly zero. These are definitions that set up the framework's account of dark energy, not measurements of the sky.
In Recognition Science, dark energy emerges from ledger tension. The ledger must balance globally, but the universe is expanding, creating new volume that demands new entries. The framework defines the cosmological constant as three times the square of the Hubble constant, in natural units where the speed of light is one. It defines the equation of state as exactly minus one, matching the value that makes dark energy drive accelerated expansion. The library proves this equation of state equals negative one, and another proof shows the cosmological constant is positive.
These are formal consequences of the framework's definitions, not empirical discoveries. The framework's own predictions record that the equation of state is minus one and that the cosmological constant scales with the square of the Hubble constant. The structure also records a falsifier: an observation type, a predicted value, an observed value, and a boolean flag for whether the observation falsifies the framework. This is a hypothesis with a named check, not a confirmed result.
What the declaration does not claim matters as much as what it establishes. It does not prove that dark energy exists; it defines a model and derives its consequences. It does not derive the measured value of the cosmological constant from first principles; the Hubble constant enters as a defined number, and the framework's expression for the constant is a definitional choice. The structure does not assert that spacetime is discrete; it models a region with a finite count of entries as a framework assumption. These limits are explicit in the framework's own files, which separate what is proved from what is chosen.
MODEL SpacetimeRegion · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- A region of spacetime with ledger entries. -/
structure SpacetimeRegion where
/-- Proper volume (in Planck units). -/
volume : ℝ
/-- Volume is positive. -/
volume_pos : volume > 0
/-- Number of ledger entries. -/
entries : ℕ
/-- Total J-cost of entries. -/
totalCost : ℝ
MODEL SpacetimeRegion · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- A region of spacetime with ledger entries. -/
structure SpacetimeRegion where
/-- Proper volume (in Planck units). -/
volume : ℝ
/-- Volume is positive. -/
volume_pos : volume > 0
/-- Number of ledger entries. -/
entries : ℕ
/-- Total J-cost of entries. -/
totalCost : ℝ
MODEL costDensity · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- The cost density: J-cost per unit volume. -/
noncomputable def costDensity (R : SpacetimeRegion) : ℝ := R.totalCost / R.volume
THEOREM dark_energy_eos · lambda_positive · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- **THEOREM**: Dark energy has w = -1 (cosmological constant). -/
theorem dark_energy_eos : equationOfState = -1 := rfl
/-- **THEOREM**: The cosmological constant is positive (repulsive). -/
theorem lambda_positive : cosmologicalConstant > 0 := by
unfold cosmologicalConstant H0
norm_num
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 declaration does not prove that dark energy exists; it defines a model and derives its consequences. It does not derive the measured value of the cosmological constant from first principles; the Hubble constant enters as a defined number. The structure does not assert that spacetime is discrete; it models a region with a finite count of entries as a framework assumption.
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 define the Hubble constant that enters the cosmological constant expression?
- What observation would the framework's falsifier structure accept as a genuine falsification of dark energy?
- Does the framework derive the number of ledger entries in a region from physics, or is it an input?
- How does the framework's ledger tension model relate to the classical cosmological constant problem?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
MODEL SpacetimeRegion · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- A region of spacetime with ledger entries. -/ structure SpacetimeRegion where /-- Proper volume (in Planck units). -/ volume : ℝ /-- Volume is positive. -/ volume_pos : volume > 0 /-- Number of ledger entries. -/ entries : ℕ /-- Total J-cost of entries. -/ totalCost : ℝA spacetime region is a bounded patch of the universe, the kind of object cosmologists divide the sky into when they measure how fast distant galaxies are receding. SpacetimeRegion · IndisputableMonolith/Cosmology/DarkEnergy.leanMODEL SpacetimeRegion · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- A region of spacetime with ledger entries. -/ structure SpacetimeRegion where /-- Proper volume (in Planck units). -/ volume : ℝ /-- Volume is positive. -/ volume_pos : volume > 0 /-- Number of ledger entries. -/ entries : ℕ /-- Total J-cost of entries. -/ totalCost : ℝThe framework's machine-checked library of formal statements defines a SpacetimeRegion as a structure with four parts: a positive volume, a count of ledger entries, the total cost of those entries, and a proof that the volume is positive. SpacetimeRegion · IndisputableMonolith/Cosmology/DarkEnergy.leanMODEL costDensity · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- The cost density: J-cost per unit volume. -/ noncomputable def costDensity (R : SpacetimeRegion) : ℝ := R.totalCost / R.volumeThe cost density is the region's total cost divided by its volume. costDensity · IndisputableMonolith/Cosmology/DarkEnergy.leanTHEOREM dark_energy_eos · lambda_positive · IndisputableMonolith/Cosmology/DarkEnergy.lean
/-- **THEOREM**: Dark energy has w = -1 (cosmological constant). -/ theorem dark_energy_eos : equationOfState = -1 := rfl/-- **THEOREM**: The cosmological constant is positive (repulsive). -/ theorem lambda_positive : cosmologicalConstant > 0 := by unfold cosmologicalConstant H0 norm_numThe library proves this equation of state equals negative one, and another proof shows the cosmological constant is positive. dark_energy_eos · lambda_positive · 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 structure also records a falsifier: an observation type, a predicted value, an observed value, and a boolean flag for whether the observation falsifies the framework. DarkEnergyFalsifier · IndisputableMonolith/Cosmology/DarkEnergy.lean