Encyclopedia Cosmology Cosmology Rs Cosmo Module 002
ARTICLE 4 claims 4 theorems
Cosmology Rs Cosmo Module 002
A small machine-checked module that proves three general facts about a cost function, and records a research note about a cosmological constant that it does not prove.
What the module is
Cosmology RS Module 002 is a short file in the Recognition Science framework's machine-checked library of formal theorems. The file defines a cost function, proves three elementary facts about it, and attaches a research note about the cosmological constant. The note is not a theorem; the proofs do not touch cosmology.
The cost function is cost, a measure of how expensive a recognition event is when an observed quantity m is compared to an expected quantity e. The module defines it as J(m/e), where J(x) = (x + 1/x)/2 - 1. The three proved facts are: the cost is zero when m equals e, the cost is never negative for positive inputs, and the golden-ratio constant phi is greater than 1.5. These are general properties of J, not claims about any physical system.
The research note says the product of the cosmological constant and the Planck length squared, Lambda ell_P^2, equals 8*phi^5/45, about 1.99e-122, close to the measured value of 1.99e-122. The note labels this as a research note, not a result. The module proves none of it. To become a theorem about cosmology, the module would need to define m and e in cosmological terms, which it does not do.
In plain language: the module proves three small, true facts about a cost formula, and it records an idea about the cosmological constant that remains unproved. The idea is a hypothesis, not an established result.
THEOREM domainCost_at_eq · IndisputableMonolith/Cosmology/RS_Cosmo_Module_002.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by
unfold domainCost; rw [div_self h]; exact Jcost_unit0
THEOREM domainCost_nonneg · IndisputableMonolith/Cosmology/RS_Cosmo_Module_002.lean
theorem domainCost_nonneg (m e : ℝ) (hm : 0 < m) (he : 0 < e) : 0 ≤ domainCost m e := by
unfold domainCost; exact Jcost_nonneg (div_pos hm he)
THEOREM canonicalThreshold_pos · IndisputableMonolith/Cosmology/RS_Cosmo_Module_002.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
unfold canonicalThreshold; linarith [phi_gt_onePointFive]
THEOREM domainCost · IndisputableMonolith/Cosmology/RS_Cosmo_Module_002.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
What this page does not claim
The module does not prove the cosmological constant value. The module does not define m or e in cosmological terms. The module does not establish any physical prediction about the 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/RS_Cosmo_Module_002.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 definitions of m and e would turn the research note into a theorem?
- How does the framework derive the value 8*phi^5/45 for the cosmological constant?
- What is the measured value of the cosmological constant and its uncertainty?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM domainCost_at_eq · IndisputableMonolith/Cosmology/RS_Cosmo_Module_002.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0The cost is zero when m equals e. domainCost_at_eq · IndisputableMonolith/Cosmology/RS_Cosmo_Module_002.leanTHEOREM domainCost_nonneg · IndisputableMonolith/Cosmology/RS_Cosmo_Module_002.lean
theorem domainCost_nonneg (m e : ℝ) (hm : 0 < m) (he : 0 < e) : 0 ≤ domainCost m e := by unfold domainCost; exact Jcost_nonneg (div_pos hm he)The cost is never negative for positive inputs. domainCost_nonneg · IndisputableMonolith/Cosmology/RS_Cosmo_Module_002.leanTHEOREM canonicalThreshold_pos · IndisputableMonolith/Cosmology/RS_Cosmo_Module_002.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by unfold canonicalThreshold; linarith [phi_gt_onePointFive]The golden-ratio constant phi is greater than 1.5. canonicalThreshold_pos · IndisputableMonolith/Cosmology/RS_Cosmo_Module_002.leanTHEOREM domainCost · IndisputableMonolith/Cosmology/RS_Cosmo_Module_002.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)The note is not a theorem; the proofs do not touch cosmology. domainCost · IndisputableMonolith/Cosmology/RS_Cosmo_Module_002.lean