Encyclopedia Cosmology Cosmology Early Universe Cosmological Constant Resolution
ARTICLE 4 claims 2 theorems 2 models
Cosmology Early Universe Cosmological Constant Resolution
The cosmological constant is not vacuum energy; the framework derives its observed size as a number between zero and one.
The resolution's scope
The cosmological constant problem is the stark mismatch between the energy of empty space predicted by quantum field theory and the tiny value that observations allow. In the Recognition Science framework, that problem dissolves because the constant is not an energy at all. The framework's library of machine-checked formal theorems defines a quantity it calls omega_lambda, and the declaration cosmological_constant_resolution proves that this quantity lies strictly between zero and one. That single theorem is the formal content: dark energy exists, and its share of the universe's energy budget is less than the whole. The proof is a certified numeric bracket, a machine-checked guarantee that omega_lambda sits between 0.6851 and 0.6852.
The number itself comes from a definition, not from a fit. The framework models the universe as a discrete record of events, a ledger, and defines omega_lambda as 11/16 minus alpha divided by pi, where alpha is the measured fine-structure constant. The fraction 11/16, equal to 0.6875, is the count of ledger modes that are in their unexcited, vacuum state within the framework's eight-tick cycle. The correction term subtracts a small perturbation from matter-coupled modes. The measured value of the fine-structure constant enters as a free boundary datum, a measurement taken from outside the framework, not as a derived construction. The bracket that the theorem proves, 0.6851 to 0.6852, sits within about half a percent of the Planck satellite's measured value of 0.6889 plus or minus 0.0056.
The resolution's claim is that the enormous discrepancy, the famous factor of 10 to the 120, comes from a misidentification. Quantum field theory's vacuum energy is not the cosmological constant; it is not a physical observable. The actual value is a mode count, a pure number that requires no renormalization and no fine-tuning because there is no parameter to tune. The theorem does not claim to derive the fine-structure constant, and it does not claim to derive the exact measured value of dark energy. It proves a range, and it proves that the range is positive and less than one, which is the formal statement that dark energy exists and is subdominant.
What the declaration does not do is as important as what it does. It does not prove that the framework's definition is correct physics; it proves that the definition yields a number in a stated interval. It does not claim that the fine-structure constant is derived within the framework; the pack is explicit that alpha enters as a measurement, and the first-order constructed value is excluded by measurement. The theorem also does not touch the Big Bang singularity; a separate declaration, no_singularity, handles that claim. The cosmological constant resolution is a narrow, certified statement about a defined quantity, and its value as evidence rests on how well that defined quantity matches observation.
THEOREM cosmological_constant_resolution · IndisputableMonolith/Cosmology/EarlyUniverse.lean
/-- **D-003 Resolution**: The cosmological constant is NOT the vacuum energy
of QFT. It is the fraction of vacuum modes in the ledger.
The "10^120 discrepancy" dissolves because:
1. QFT vacuum energy is a misidentification (not a physical observable)
2. The actual Ω_Λ comes from ledger mode counting: 11/16 − α/π
3. This is a NUMBER, not an energy density requiring renormalization
There is no fine-tuning because there is no parameter to tune. -/
theorem cosmological_constant_resolution :
0 < omega_lambda ∧ omega_lambda < 1 :=
⟨omega_lambda_pos, omega_lambda_lt_one⟩
THEOREM omega_lambda_bracket · IndisputableMonolith/Cosmology/EarlyUniverse.lean
/-- A certified numeric bracket on Ω_Λ.
This module carried no numeric bound at all before 2026-07-27, only positivity and
subunitarity, and that absence is precisely why the `alphaLock` substitution
survived: nothing here could be placed against a measurement, so a value 0.06 away
from Planck violated nothing that was stated. -/
theorem omega_lambda_bracket :
(0.6851 : ℝ) < omega_lambda ∧ omega_lambda < 0.6852 := by
unfold omega_lambda
have h1 := alpha_over_pi_lt
have h2 := alpha_over_pi_gt
constructor <;> linarith
MODEL omega_lambda · IndisputableMonolith/Cosmology/EarlyUniverse.lean
/-- Ω_Λ = 11/16 − α/π, with α the measured fine-structure constant.
The value 11/16 = 0.6875 comes from the fraction of ledger modes that are in the
vacuum (unexcited) state in the 8-tick cycle. That mode count is where the content
of this prediction lives. The correction −α/π accounts for the small perturbation
from matter-coupled modes.
α enters as a measurement and not as a construction. Its value is a free boundary
datum in RS, and the first-order constructed value is excluded by measurement, so
the canonical reading is `ExternalAnchors.alpha_CODATA`.
`Cosmology.OmegaLambdaDerivation` takes the same input and says so explicitly.
Corrected 2026-07-27. This read `11/16 - alphaLock / π` until then.
`alphaLock = (1 − 1/φ)/2 ≈ 0.191` is the information-limited-gravity kernel
exponent, not the fine-structure constant ≈ 0.0073, and its own module header has
said so since 2026-07-06. The substitution put this observable at 0.6267 against
Planck's 0.6889 ± 0.0056, more than ten standard deviations out. It was never a
competing derivation of dark energy; it was the wrong constant in the α slot. The
excluded expression survives under its own name as
`Cosmology.PrecisionExposure.omega_lambda_alphaLock`, so the defect cannot return
silently. -/
noncomputable def omega_lambda : ℝ :=
11/16 - Constants.ExternalAnchors.alpha_CODATA / Real.pi
MODEL omega_lambda · IndisputableMonolith/Cosmology/EarlyUniverse.lean
/-- Ω_Λ = 11/16 − α/π, with α the measured fine-structure constant.
The value 11/16 = 0.6875 comes from the fraction of ledger modes that are in the
vacuum (unexcited) state in the 8-tick cycle. That mode count is where the content
of this prediction lives. The correction −α/π accounts for the small perturbation
from matter-coupled modes.
α enters as a measurement and not as a construction. Its value is a free boundary
datum in RS, and the first-order constructed value is excluded by measurement, so
the canonical reading is `ExternalAnchors.alpha_CODATA`.
`Cosmology.OmegaLambdaDerivation` takes the same input and says so explicitly.
Corrected 2026-07-27. This read `11/16 - alphaLock / π` until then.
`alphaLock = (1 − 1/φ)/2 ≈ 0.191` is the information-limited-gravity kernel
exponent, not the fine-structure constant ≈ 0.0073, and its own module header has
said so since 2026-07-06. The substitution put this observable at 0.6267 against
Planck's 0.6889 ± 0.0056, more than ten standard deviations out. It was never a
competing derivation of dark energy; it was the wrong constant in the α slot. The
excluded expression survives under its own name as
`Cosmology.PrecisionExposure.omega_lambda_alphaLock`, so the defect cannot return
silently. -/
noncomputable def omega_lambda : ℝ :=
11/16 - Constants.ExternalAnchors.alpha_CODATA / Real.pi
What this page does not claim
The theorem does not prove that the framework's definition of omega_lambda is the correct physical description of dark energy. The theorem does not derive the fine-structure constant; alpha is a measured input, not a derived output. The theorem does not address the Big Bang singularity, which is the subject of a separate declaration.
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/EarlyUniverse.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, selects the eight-tick cycle that produces the 11/16 mode count?
- How does the framework derive the fine-structure constant from first principles, if at all?
- What does the framework predict for the dark energy equation of state, and how does that compare with observation?
- How does the no_singularity declaration relate to the initial conditions of the standard Big Bang model?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM cosmological_constant_resolution · IndisputableMonolith/Cosmology/EarlyUniverse.lean
/-- **D-003 Resolution**: The cosmological constant is NOT the vacuum energy of QFT. It is the fraction of vacuum modes in the ledger. The "10^120 discrepancy" dissolves because: 1. QFT vacuum energy is a misidentification (not a physical observable) 2. The actual Ω_Λ comes from ledger mode counting: 11/16 − α/π 3. This is a NUMBER, not an energy density requiring renormalization There is no fine-tuning because there is no parameter to tune. -/ theorem cosmological_constant_resolution : 0 < omega_lambda ∧ omega_lambda < 1 := ⟨omega_lambda_pos, omega_lambda_lt_one⟩the declaration cosmological_constant_resolution proves that this quantity lies strictly between zero and one cosmological_constant_resolution · IndisputableMonolith/Cosmology/EarlyUniverse.leanTHEOREM omega_lambda_bracket · IndisputableMonolith/Cosmology/EarlyUniverse.lean
/-- A certified numeric bracket on Ω_Λ. This module carried no numeric bound at all before 2026-07-27, only positivity and subunitarity, and that absence is precisely why the `alphaLock` substitution survived: nothing here could be placed against a measurement, so a value 0.06 away from Planck violated nothing that was stated. -/ theorem omega_lambda_bracket : (0.6851 : ℝ) < omega_lambda ∧ omega_lambda < 0.6852 := by unfold omega_lambda have h1 := alpha_over_pi_lt have h2 := alpha_over_pi_gt constructor <;> linaritha machine-checked guarantee that omega_lambda sits between 0.6851 and 0.6852 omega_lambda_bracket · IndisputableMonolith/Cosmology/EarlyUniverse.leanMODEL omega_lambda · IndisputableMonolith/Cosmology/EarlyUniverse.lean
/-- Ω_Λ = 11/16 − α/π, with α the measured fine-structure constant. The value 11/16 = 0.6875 comes from the fraction of ledger modes that are in the vacuum (unexcited) state in the 8-tick cycle. That mode count is where the content of this prediction lives. The correction −α/π accounts for the small perturbation from matter-coupled modes. α enters as a measurement and not as a construction. Its value is a free boundary datum in RS, and the first-order constructed value is excluded by measurement, so the canonical reading is `ExternalAnchors.alpha_CODATA`. `Cosmology.OmegaLambdaDerivation` takes the same input and says so explicitly. Corrected 2026-07-27. This read `11/16 - alphaLock / π` until then. `alphaLock = (1 − 1/φ)/2 ≈ 0.191` is the information-limited-gravity kernel exponent, not the fine-structure constant ≈ 0.0073, and its own module header has said so since 2026-07-06. The substitution put this observable at 0.6267 against Planck's 0.6889 ± 0.0056, more than ten standard deviations out. It was never a competing derivation of dark energy; it was the wrong constant in the α slot. The excluded expression survives under its own name as `Cosmology.PrecisionExposure.omega_lambda_alphaLock`, so the defect cannot return silently. -/ noncomputable def omega_lambda : ℝ := 11/16 - Constants.ExternalAnchors.alpha_CODATA / Real.pithe framework models the universe as a discrete record of events, a ledger, and defines omega_lambda as 11/16 minus alpha divided by pi omega_lambda · IndisputableMonolith/Cosmology/EarlyUniverse.leanMODEL omega_lambda · IndisputableMonolith/Cosmology/EarlyUniverse.lean
/-- Ω_Λ = 11/16 − α/π, with α the measured fine-structure constant. The value 11/16 = 0.6875 comes from the fraction of ledger modes that are in the vacuum (unexcited) state in the 8-tick cycle. That mode count is where the content of this prediction lives. The correction −α/π accounts for the small perturbation from matter-coupled modes. α enters as a measurement and not as a construction. Its value is a free boundary datum in RS, and the first-order constructed value is excluded by measurement, so the canonical reading is `ExternalAnchors.alpha_CODATA`. `Cosmology.OmegaLambdaDerivation` takes the same input and says so explicitly. Corrected 2026-07-27. This read `11/16 - alphaLock / π` until then. `alphaLock = (1 − 1/φ)/2 ≈ 0.191` is the information-limited-gravity kernel exponent, not the fine-structure constant ≈ 0.0073, and its own module header has said so since 2026-07-06. The substitution put this observable at 0.6267 against Planck's 0.6889 ± 0.0056, more than ten standard deviations out. It was never a competing derivation of dark energy; it was the wrong constant in the α slot. The excluded expression survives under its own name as `Cosmology.PrecisionExposure.omega_lambda_alphaLock`, so the defect cannot return silently. -/ noncomputable def omega_lambda : ℝ := 11/16 - Constants.ExternalAnchors.alpha_CODATA / Real.piThe measured value of the fine-structure constant enters as a free boundary datum, a measurement taken from outside the framework, not as a derived construction omega_lambda · IndisputableMonolith/Cosmology/EarlyUniverse.lean