Encyclopedia Cosmology Cosmology Cosmological Constant Lambda Falsifier
ARTICLE 3 claims 1 theorem 1 measured
Cosmology Cosmological Constant Lambda Falsifier
A machine-checked structure that states the exact observations which would disprove the framework's account of dark energy.
The falsifier
The cosmological constant is the energy density of empty space, usually written Λ, and it appears in general relativity as a term that pushes the universe to expand faster. Its measured value is about 1.1 × 10⁻⁵² m⁻², which is staggeringly small compared with what quantum field theory naively predicts, a mismatch of roughly 120 orders of magnitude. This is the cosmological constant problem, one of the deepest unsolved puzzles in physics.
In Recognition Science, the framework models the vacuum as having a J-cost ground state, a baseline cost in a discrete ledger of recognition events. The framework's library of machine-checked theorems contains a structure named LambdaFalsifier. This structure does not prove that the framework's account is correct. Instead, it records the conditions under which the account would be wrong: if observations showed that the dark energy equation of state w is not exactly −1, or if Λ varied over cosmic time, the framework would be falsified. The structure also lists alternative mechanisms, such as quintessence or modified gravity, that would compete with the framework's J-cost mechanism.
The declaration is a formal way of saying: here is the target, here is what would kill it. It does not claim that Λ has been derived from first principles, nor does it assert that the observed value matches any framework prediction. The structure simply names the falsifying observations, a discipline that keeps the framework honest about what would count as evidence against it.
MEASURED lambda_observed · IndisputableMonolith/Cosmology/CosmologicalConstant.lean
/-- The observed cosmological constant Λ ≈ 1.1 × 10⁻⁵² m⁻². -/
noncomputable def lambda_observed : ℝ := 1.1e-52
MODEL vacuumJCost · IndisputableMonolith/Cosmology/CosmologicalConstant.lean
/-- **BEST APPROACH**: Λ emerges from J-cost ground state energy.
The vacuum has a nonzero J-cost due to φ-mismatch.
J_vac = Jcost(φ) = (φ + 1/φ)/2 - 1 = (φ² + 1)/(2φ) - 1
This is ~0.118, not the suppression we need.
Need a MORE subtle mechanism. -/
noncomputable def vacuumJCost : ℝ := Jcost phi
THEOREM LambdaFalsifier · IndisputableMonolith/Cosmology/CosmologicalConstant.lean
/-- The derivation would be falsified if:
1. w ≠ -1 definitively measured
2. Λ varies with time
3. No φ-structure in the value
4. Different cancellation mechanism found -/
structure LambdaFalsifier where
w_not_minus_one : Prop
lambda_varies : Prop
no_phi_structure : Prop
different_mechanism : Prop
falsified : w_not_minus_one ∨ lambda_varies → False
What this page does not claim
Λ has been derived from RS principles. The observed Λ matches a framework prediction. The J-cost mechanism is the correct explanation 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/CosmologicalConstant.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 observations would measure w to a precision that could rule out w = −1?
- How would the framework derive a specific numerical value for Λ from the J-cost ground state?
- What distinguishes the J-cost mechanism from other dark energy models in observational tests?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
MEASURED lambda_observed · IndisputableMonolith/Cosmology/CosmologicalConstant.lean
/-- The observed cosmological constant Λ ≈ 1.1 × 10⁻⁵² m⁻². -/ noncomputable def lambda_observed : ℝ := 1.1e-52The measured value of the cosmological constant is about 1.1 × 10⁻⁵² m⁻². lambda_observed · IndisputableMonolith/Cosmology/CosmologicalConstant.leanMODEL vacuumJCost · IndisputableMonolith/Cosmology/CosmologicalConstant.lean
/-- **BEST APPROACH**: Λ emerges from J-cost ground state energy. The vacuum has a nonzero J-cost due to φ-mismatch. J_vac = Jcost(φ) = (φ + 1/φ)/2 - 1 = (φ² + 1)/(2φ) - 1 This is ~0.118, not the suppression we need. Need a MORE subtle mechanism. -/ noncomputable def vacuumJCost : ℝ := Jcost phiThe framework models the vacuum as having a J-cost ground state. vacuumJCost · IndisputableMonolith/Cosmology/CosmologicalConstant.leanTHEOREM LambdaFalsifier · IndisputableMonolith/Cosmology/CosmologicalConstant.lean
/-- The derivation would be falsified if: 1. w ≠ -1 definitively measured 2. Λ varies with time 3. No φ-structure in the value 4. Different cancellation mechanism found -/ structure LambdaFalsifier where w_not_minus_one : Prop lambda_varies : Prop no_phi_structure : Prop different_mechanism : Prop falsified : w_not_minus_one ∨ lambda_varies → FalseThe LambdaFalsifier structure records that the framework would be falsified if w were not exactly −1 or if Λ varied over time. LambdaFalsifier · IndisputableMonolith/Cosmology/CosmologicalConstant.lean