Encyclopedia Cosmology Cosmology Phase Saturation Vacuum No Dark Energy Evolution
ARTICLE 3 claims 2 theorems 1 model
Cosmology Phase Saturation Vacuum No Dark Energy Evolution
Dark energy in this framework is not something that changes over time; it is a fixed property of the vacuum's ledger.
The constant vacuum
In cosmology, dark energy is the name for whatever is causing the expansion of the universe to accelerate. A central question about it is whether its density has stayed the same over cosmic history or has changed. The standard model of cosmology, Lambda-CDM, treats it as a constant, often called the cosmological constant. This framework's machine-checked library of formal theorems contains a declaration, no_dark_energy_evolution, that states the same thing in its own terms: for any redshift z, which is a measure of cosmic time, the equation of state equals -1. The equation of state is a number that describes the relationship between a substance's pressure and its energy density; a value of -1 is the signature of a cosmological constant, meaning the density does not dilute as the universe expands.
The declaration itself is a simple formal statement, but it is anchored in a larger structure. The framework models the universe as a discrete ledger, a record of recognition events with a finite capacity. Dark energy, in this account, is the equilibrium fraction of that ledger residing in the vacuum state. The fraction is given by the formula ΩΛ = 11/16 - α/π, where α is the fine-structure constant, a measured input. The number 11/16 comes from counting passive modes in a three-dimensional geometry, a combinatorial result that is proved in the library. The declaration no_dark_energy_evolution is a theorem, meaning it is proved within the framework's axioms, and it states that this fraction, and hence the equation of state, does not change with redshift.
What this declaration does not claim is as important as what it does. It does not claim that dark energy is constant in the sense of being a fundamental law of physics; it is a consequence of the framework's model of the vacuum. It does not claim that the value of the dark energy density is derived from first principles; the fine-structure constant enters as a measured boundary condition. It also does not claim that the physical mechanism of phase saturation, which connects this cosmic behavior to biological scales, is proven; that bridge is a hypothesis with a named falsifier. The declaration is a formal statement about a model, not an empirical measurement or a complete physical theory.
The practical upshot is a clear prediction: if this framework is correct, future observations of the universe's expansion should continue to be consistent with a constant dark energy density, with no evidence of evolution. This is a concrete, testable consequence that distinguishes this account from models where dark energy changes over time. The framework offers a reason for the constancy, rooted in its discrete ledger, rather than simply assuming it as an unexplained input.
THEOREM no_dark_energy_evolution · IndisputableMonolith/Cosmology/PhaseSaturationVacuum.lean
/-- No dark energy evolution: w(z) = -1 for all redshifts. -/
theorem no_dark_energy_evolution :
∀ _z : ℝ, (equation_of_state : ℤ) = -1 := by
intro _; rfl
MODEL Omega_Lambda · IndisputableMonolith/Cosmology/PhaseSaturationVacuum.lean
/-- The RS prediction for the dark energy fraction.
Ω_Λ = 11/16 - α/π: cube-geometry seed minus the measured-α EM correction. -/
def Omega_Lambda : ℝ := 11/16 - alpha / Real.pi
THEOREM geometric_seed_eq · IndisputableMonolith/Cosmology/PhaseSaturationVacuum.lean
/-- The geometric seed 11/16 is the passive mode fraction. -/
theorem geometric_seed_eq : (passive_modes : ℝ) / (mode_budget : ℝ) = 11 / 16 := by
norm_num [passive_modes, mode_budget]
What this page does not claim
The declaration does not prove that dark energy is constant as a fundamental law of physics. The declaration does not derive the value of the fine-structure constant from first principles. The declaration does not prove the physical bridge between biological phase saturation and cosmic vacuum 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/PhaseSaturationVacuum.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 is the physical mechanism that connects phase saturation at biological scales to vacuum energy at cosmic scales?
- How does the framework derive the number of passive modes from the geometry of three-dimensional space?
- What observations would falsify the hypothesis that the vacuum fraction is at equilibrium?
- Does the framework's constancy of dark energy conflict with any current cosmological data?
- What is the significance of the equation of state being exactly -1 in this model?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM no_dark_energy_evolution · IndisputableMonolith/Cosmology/PhaseSaturationVacuum.lean
/-- No dark energy evolution: w(z) = -1 for all redshifts. -/ theorem no_dark_energy_evolution : ∀ _z : ℝ, (equation_of_state : ℤ) = -1 := by intro _; rflThe declaration no_dark_energy_evolution is a theorem stating that for any redshift z, the equation of state equals -1. no_dark_energy_evolution · IndisputableMonolith/Cosmology/PhaseSaturationVacuum.leanMODEL Omega_Lambda · IndisputableMonolith/Cosmology/PhaseSaturationVacuum.lean
/-- The RS prediction for the dark energy fraction. Ω_Λ = 11/16 - α/π: cube-geometry seed minus the measured-α EM correction. -/ def Omega_Lambda : ℝ := 11/16 - alpha / Real.piThe dark energy fraction is given by the formula ΩΛ = 11/16 - α/π, where α is the fine-structure constant, a measured input. Omega_Lambda · IndisputableMonolith/Cosmology/PhaseSaturationVacuum.leanTHEOREM geometric_seed_eq · IndisputableMonolith/Cosmology/PhaseSaturationVacuum.lean
/-- The geometric seed 11/16 is the passive mode fraction. -/ theorem geometric_seed_eq : (passive_modes : ℝ) / (mode_budget : ℝ) = 11 / 16 := by norm_num [passive_modes, mode_budget]The number 11/16 comes from counting passive modes in a three-dimensional geometry, a combinatorial result that is proved in the library. geometric_seed_eq · IndisputableMonolith/Cosmology/PhaseSaturationVacuum.lean