Encyclopedia Cosmology Cosmology Baryon Density Rs Baryon Density Cert
ARTICLE 3 claims 3 theorems
Cosmology Baryon Density Rs Baryon Density Cert
A machine-checked certificate proves three abstract properties of a cost function, but it does not derive the universe's baryon density.
The baryon density certificate
The baryon density of the universe, usually written Ωb, is the fraction of the cosmos's energy that resides in ordinary matter: protons, neutrons, and the atoms they form. Measurements from the cosmic microwave background, such as those by the Planck satellite, put this number near 0.0493, meaning about 4.93 percent of the universe's energy is baryonic. The rest is dark matter and dark energy.
Within the Recognition Science framework, a file named BaryonDensityCert contains a formal structure. A structure in the framework's machine-checked library of formal theorems is a set of requirements that a proof must satisfy. This particular structure demands three things. First, a cost function, which measures the recognition cost between two quantities, must return zero when the two quantities are equal. Second, the same cost function must never return a negative number when both inputs are positive. Third, a specific threshold, defined as the golden ratio minus 1.5, must be greater than zero. The library proves these three facts hold for the cost function J(x) = (x + 1/x)/2 - 1.
In Recognition Science, this cost function is central: a proved theorem shows that any cost function satisfying five plain conditions must equal this J. The baryon density certificate therefore establishes that the framework's core cost object behaves well in a narrow, technical sense. It proves the cost vanishes at equality, stays nonnegative on positive inputs, and that a particular threshold is positive. These are general facts about J, not facts about cosmology.
The certificate does not claim to derive the measured baryon density. The file's own research note records several candidate formulas for Ωb in terms of J and the golden ratio, and one of them, J(φ)·(1-J(φ))/2, gives 0.052, which is close to 0.0493. But the formal proofs inside the certificate never mention baryons, protons, or the universe. They quantify over arbitrary real numbers m and e. The structure is a template, shared verbatim with 2383 sibling modules in the library, each one waiting for a definition of its subject's own terms. What would turn this certificate into a theorem about baryon density is a definition of m and e in cosmological terms, and that definition does not exist here.
What the certificate does establish is a clean, reusable foundation. It shows that the framework's cost function has the basic properties any physical quantity would need before it could be used in a derivation. The near-agreement of one candidate formula with the measured value is a research note, a pointer for future work, not a result. The honest reading is that the baryon density remains an open target for the framework, and this certificate is a small, sound step toward it.
THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · 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 (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]
THEOREM BaryonDensityCert · IndisputableMonolith/Cosmology/Baryon_Density_RS.lean
structure BaryonDensityCert where
cost_at_eq : ∀ r : ℝ, r ≠ 0 → domainCost r r = 0
cost_nonneg : ∀ m e : ℝ, 0 < m → 0 < e → 0 ≤ domainCost m e
threshold_pos : 0 < canonicalThreshold
THEOREM domainCost · IndisputableMonolith/Cosmology/Baryon_Density_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
What this page does not claim
The certificate does not derive the value 0.0493 for the baryon density. The certificate does not prove that any candidate formula for Omega_b is correct. The certificate does not establish that the framework's cost function applies to cosmology at all.
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 definition of mass m and energy e in cosmological terms would turn this certificate into a theorem about baryon density?
- Which of the candidate formulas for Omega_b, if any, can be derived from the framework's forcing chain?
- Does the near-agreement of J(phi)*(1-J(phi))/2 with the measured value survive a full error analysis?
- What would a full derivation of the baryon density require beyond the cost function's basic properties?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · 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_unit0theorem 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]The baryon density certificate proves the cost function vanishes at equality, stays nonnegative on positive inputs, and that a particular threshold is positive. domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Cosmology/Baryon_Density_RS.leanTHEOREM BaryonDensityCert · IndisputableMonolith/Cosmology/Baryon_Density_RS.lean
structure BaryonDensityCert where cost_at_eq : ∀ r : ℝ, r ≠ 0 → domainCost r r = 0 cost_nonneg : ∀ m e : ℝ, 0 < m → 0 < e → 0 ≤ domainCost m e threshold_pos : 0 < canonicalThresholdThe certificate does not claim to derive the measured baryon density. BaryonDensityCert · IndisputableMonolith/Cosmology/Baryon_Density_RS.leanTHEOREM domainCost · IndisputableMonolith/Cosmology/Baryon_Density_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)The formal proofs inside the certificate never mention baryons, protons, or the universe. domainCost · IndisputableMonolith/Cosmology/Baryon_Density_RS.lean