Encyclopedia Cosmology Cosmology Dark Energy Equation3 From Jcost

ARTICLE 3 claims 1 theorem 1 model

Cosmology Dark Energy Equation3 From Jcost

A machine-checked module about dark energy turns out to prove only general facts about a cost function, not cosmology.

The dark energy module

In cosmology, dark energy is the name for the unknown agent driving the accelerated expansion of the universe. The simplest model treats it as a cosmological constant, a uniform energy density that stays fixed as space grows. That model carries an equation of state parameter, written w, which relates pressure to energy density; for a cosmological constant, w equals exactly -1. Observations of distant supernovae and the cosmic microwave background are consistent with w close to -1, which is why the constant has remained the standard assumption since the late 1990s.

The module DarkEnergyEquation3_FromJCost in the Recognition Science library was written with that cosmology in mind. Its research note records an intended path: define a cost function on the ratio of dark energy density to the critical density, then show that the cost vanishes at the observed value, confirming the w = -1 ground state. The actual Lean code does not take that path. The definition of domainCost is simply J(m/e), the recognition cost (a forced measure of discrepancy) applied to the ratio of two real numbers m and e, with no reference to dark energy, density, or any cosmological quantity.

What the module proves is three general facts about that cost function. First, when the two inputs are equal, the cost is zero: J(r/r) = 0 for any nonzero r. Second, for positive inputs, the cost is never negative. Third, the number phi - 3/2 is positive, where phi is the golden ratio. These are true statements about the cost function, but they are not statements about the universe. The declaration names sound cosmological, but the content is generic and is shared verbatim with 2383 sibling modules in the library.

The module does assemble these three facts into a structure called DEoS3Cert, and it proves that this structure is inhabited, meaning the three facts are consistent. That is a valid piece of formal mathematics, but it is not a derivation of dark energy. The gap is explicit in the code: what would make this a theorem about cosmology is a definition of m and e in terms of actual physical densities. No such definition appears in the module. The prose note admits this directly, saying the paragraph above is a research note recording where the idea was meant to go, not a result.

In Recognition Science, the honest reading is clear. The framework's library proves that a certain cost function has basic properties: zero at equality, nonnegativity, and a positive threshold. Those properties are available for any future theory that defines its own m and e. The dark energy application remains open, not because the framework forbids it, but because the module does not supply the physical bridge. A reader should take this page as an example of how the framework separates what is proved from what is hoped, and as a reminder that a name on a file does not make the content cosmological.

THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Cosmology/DarkEnergyEquation3_FromJCost.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 (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 : 0 < canonicalThreshold := by
  unfold canonicalThreshold; linarith [phi_gt_onePointFive]
MODEL domainCost · IndisputableMonolith/Cosmology/DarkEnergyEquation3_FromJCost.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)

What this page does not claim

The module does not prove that dark energy exists or that w equals -1. The module does not derive the observed value of Omega_Lambda from the cost function. The module does not establish that the golden ratio appears in cosmology.

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/DarkEnergyEquation3_FromJCost.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