Encyclopedia Cosmology Cosmology Baryon Density Rs
ARTICLE 3 claims 3 theorems
Cosmology Baryon Density Rs
Cosmology's baryon density measures ordinary matter's share of the universe; Recognition Science offers a formula for it, but its machine-checked proof stops short of that claim.
Baryon density in the framework
In cosmology, the baryon density parameter Ωb is the fraction of the universe's total energy density that resides in ordinary matter: protons, neutrons, and the atoms they form. The Planck satellite's 2018 measurements put this value at roughly 0.0493, meaning ordinary matter accounts for about 4.93 percent of the universe's content. Dark matter and dark energy make up the rest, but baryons are the stuff of stars, planets, and us.
The Recognition Science (RS) framework attempts to derive this number from first principles. Its central object is the cost function J(x) = (x + 1/x)/2 - 1, which measures the price of recognizing one quantity relative to another. The framework's research note proposes several formulas linking J to Ωb, such as J(φ)/φ² ≈ 0.0451 or J(φ)·(1-J(φ))/2 ≈ 0.052, where φ is the golden ratio. The last expression lands close to the measured 0.0493, but the note itself labels this a research idea, not a result.
The machine-checked library of formal theorems in the framework proves only three general facts about the cost function: it equals zero when its two inputs match, it never goes negative for positive inputs, and a certain threshold value φ - 3/2 is positive. These facts hold for any pair of positive numbers, not specifically for baryon density. The module defines a structure called BaryonDensityCert that packages these three theorems, but it never defines what m and e mean in cosmology's terms.
In plain language: the module proves the cost function behaves sensibly, but it does not connect that function to baryons. The docstring is explicit on this point, stating that the module proves nothing specific to the subject. Making this a genuine theorem about baryon density would require defining m and e using cosmology's own quantities, which the module does not do.
This gap matters for anyone reading the framework's literature. The numerical agreement between J(φ)·(1-J(φ))/2 and the Planck value is suggestive, but it remains an unformalized hypothesis, not a derived prediction. The framework's own honesty here is a model for how to separate a promising idea from a proved result.
THEOREM domainCost_at_eq · IndisputableMonolith/Cosmology/Baryon_Density_RS.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/Baryon_Density_RS.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 cert_inhabited · IndisputableMonolith/Cosmology/Baryon_Density_RS.lean
theorem cert_inhabited : Nonempty BaryonDensityCert := ⟨cert⟩
What this page does not claim
RS derives the baryon density from first principles. The numerical agreement with Planck's value constitutes a proof. The module defines m and e in cosmological terms.
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/Baryon_Density_RS.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 cost function into a genuine baryon density theorem?
- Which of the proposed formulas for Omega_b, if any, survives a proper derivation?
- How does the framework's approach to baryon density compare with standard cosmological parameter estimation?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM domainCost_at_eq · IndisputableMonolith/Cosmology/Baryon_Density_RS.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0The cost function J(x) = (x + 1/x)/2 - 1 equals zero when its two inputs match. domainCost_at_eq · IndisputableMonolith/Cosmology/Baryon_Density_RS.leanTHEOREM domainCost_nonneg · IndisputableMonolith/Cosmology/Baryon_Density_RS.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 function never goes negative for positive inputs. domainCost_nonneg · IndisputableMonolith/Cosmology/Baryon_Density_RS.leanTHEOREM cert_inhabited · IndisputableMonolith/Cosmology/Baryon_Density_RS.lean
theorem cert_inhabited : Nonempty BaryonDensityCert := ⟨cert⟩The module proves nothing specific to baryon density. cert_inhabited · IndisputableMonolith/Cosmology/Baryon_Density_RS.lean