Encyclopedia Cosmology Cosmology Early Universe Omega Lambda Lt One

ARTICLE 5 claims 3 theorems 2 models

Cosmology Early Universe Omega Lambda Lt One

A machine-checked theorem places the universe's dark energy fraction below one, a bound cosmology already expects, but it does not derive the number itself.

A bounded dark energy

In cosmology, ΩΛ (Omega-Lambda) is the fraction of the universe's total energy density that behaves like a cosmological constant, the energy pushing space apart. Observations of distant supernovae, the cosmic microwave background, and galaxy clustering all agree that this fraction is about 0.69, meaning dark energy dominates the universe's contents but does not make up all of it. The standard model of cosmology, ΛCDM, treats this value as a free parameter that must be measured, and the Planck satellite's 2018 data gives ΩΛ = 0.6889 ± 0.0056.

The Recognition Science framework's machine-checked library of formal theorems contains a statement about this number. The declaration omega_lambda_lt_one proves, in the framework's formal system, that ΩΛ < 1. This is a subunitary bound: it says the dark energy fraction is strictly less than the whole, so the universe is not dominated by a cosmological constant to the exclusion of all other energy. The proof is short and depends on a more detailed numeric bracket, which establishes that ΩΛ lies between 0.6851 and 0.6852.

That bracket is where the framework's content lives. The framework models ΩΛ not as a vacuum energy density requiring renormalization, but as a fraction of ledger modes in an unexcited state within an eight-tick recognition cycle. The formula is ΩΛ = 11/16 − α/π, where α is the measured fine-structure constant. The 11/16 term, equal to 0.6875, comes from counting the vacuum modes; the small correction subtracts a perturbation from matter-coupled modes. The framework's library proves the bound and the bracket from this definition, and it also proves that ΩΛ is positive, so dark energy exists in this account.

What the declaration does not do is just as important as what it proves. The bound < 1 is consistent with observation, but it is a weak statement: any positive number less than 0.6851 would satisfy it. The framework does not derive the value 0.6889 from first principles; it takes the fine-structure constant α as a measured input, a free boundary datum, and the resulting ΩΛ ≈ 0.6852 sits about 0.7% below the Planck central value, within the measurement's uncertainty. The framework's claim is that its mode-counting formula produces a number in the right neighborhood, not that it predicts the exact measured value. The declaration also does not claim to resolve the cosmological constant problem in the sense of explaining why the observed value is so small compared to quantum field theory estimates; it reframes the problem by saying the QFT vacuum energy is a misidentification, but that reframing is a modeling choice, not a theorem about the physical universe.

For a reader, the practical upshot is a precise, machine-checked statement about a cosmological parameter within one specific theoretical framework. The bound ΩΛ < 1 is a sanity check that any viable cosmology must pass, and the framework's library certifies that its own construction passes it. The interesting part is not the bound itself, which is unsurprising, but the route: a discrete mode-counting argument that lands within observational error of a measured constant, using another measured constant as input.

THEOREM omega_lambda_lt_one · IndisputableMonolith/Cosmology/EarlyUniverse.lean
/-- Ω_Λ < 1 (subunitary). -/
theorem omega_lambda_lt_one : omega_lambda < 1 :=
  lt_trans omega_lambda_bracket.2 (by norm_num)
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
THEOREM omega_lambda_pos · IndisputableMonolith/Cosmology/EarlyUniverse.lean
/-- Ω_Λ is positive (dark energy exists). -/
theorem omega_lambda_pos : 0 < omega_lambda :=
  lt_trans (by norm_num) omega_lambda_bracket.1

What this page does not claim

The declaration does not derive the measured value of Ω<sub>Λ</sub> from first principles; it takes α as an external input. The bound Ω<sub>Λ</sub> < 1 is not a prediction of a specific value, only a subunitary constraint. The framework's reframing of the cosmological constant problem is a modeling choice, not a theorem about the physical universe.

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:

MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND