Encyclopedia Cosmology Cosmology Eta Binterval Cert Forty Four Factorization
ARTICLE 3 claims 2 theorems 1 measured
Cosmology Eta Binterval Cert Forty Four Factorization
A simple arithmetic fact about the number 44, checked by machine, anchors a much larger claim about why the universe has more matter than antimatter.
The number 44
The number 44 is unremarkable in ordinary arithmetic: it is 4 times 11. The Recognition Science declaration forty_four_factorization proves exactly this, that 44 equals 4 multiplied by 11, as a theorem in its machine-checked library of formal theorems. The statement itself is trivial, a fact any schoolchild knows. What makes the declaration significant is not the arithmetic but the role the framework assigns to it: this same 44, the framework claims, is the structural integer governing the imbalance between matter and antimatter in the early universe.
In cosmology, the baryon-to-photon ratio, written η_B, measures how many particles of ordinary matter exist for every photon left over from the Big Bang. The observed value, from the Planck satellite's 2018 data, is about 6.1 times 10 to the minus 10, meaning roughly one proton for every 10 billion photons. The framework's library proves a separate interval certificate: the number φ to the power minus 44, where φ is the golden ratio, lies between 5.5 and 7.5 times 10 to the minus 10. That interval contains the measured value. The connection to 44 is that this exponent is not arbitrary; the framework identifies it as the product of two structural quantities from its own model, a flip count and a torsion gap, and the declaration forty_four_factorization records the arithmetic link.
The same 44 appears in the framework's expression for the fine-structure constant, α to the minus 1 equals 44π times an exponential factor. The framework treats this as evidence that a single structural integer governs both the strength of electromagnetism and the matter-antimatter asymmetry. The declaration itself, however, only proves the trivial factorization. The larger claims about chirality, torsion gaps, and the fine-structure constant are separate statements, each with its own proof or identification, and the simple arithmetic fact does not by itself establish any of them.
What the declaration does not claim is as important as what it proves. It does not prove that the baryon-to-photon ratio must be 6.1 times 10 to the minus 10; the interval certificate only shows that φ to the minus 44 falls in a range that contains the measured value. It does not derive the fine-structure constant from first principles; the appearance of 44 in that expression is an identification, not a derivation. And it does not prove that the flip count and torsion gap have physical meaning; those are definitions within the framework, not measured quantities. The theorem is a small, exact piece of arithmetic, and the framework's larger claims rest on it only as one link in a longer chain.
THEOREM forty_four_factorization · IndisputableMonolith/Cosmology/EtaBIntervalCert.lean
/-- The key integer: 44 = 4 × 11. -/
theorem forty_four_factorization : (44 : ℕ) = 4 * 11 := by norm_num
THEOREM eta_B_interval · IndisputableMonolith/Cosmology/EtaBIntervalCert.lean
/-- φ^(-44) ∈ (5.5 × 10⁻¹⁰, 7.5 × 10⁻¹⁰).
The observed η_B = (6.10 ± 0.04) × 10⁻¹⁰ falls inside this interval. -/
theorem eta_B_interval :
phi ^ (-(44 : ℝ)) > 5.5e-10 ∧ phi ^ (-(44 : ℝ)) < 7.5e-10 :=
⟨phi_pow_neg44_lower, phi_pow_neg44_upper⟩
MEASURED observed_eta_in_interval · IndisputableMonolith/Cosmology/EtaBIntervalCert.lean
/-- The observed η_B ≈ 6.1 × 10⁻¹⁰ is inside the predicted RS interval. -/
theorem observed_eta_in_interval :
(5.5e-10 : ℝ) < 6.1e-10 ∧ (6.1e-10 : ℝ) < 7.5e-10 := by
norm_num
What this page does not claim
The declaration does not prove that the baryon-to-photon ratio must equal the observed value. It does not derive the fine-structure constant from first principles. It does not establish that the flip count and torsion gap correspond to measurable physical quantities.
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/EtaBIntervalCert.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 mechanism sets the flip count and torsion gap to values whose product is 44?
- Does the appearance of 44 in the fine-structure constant expression have a derivation, or is it an identification?
- How does the framework connect the interval certificate for φ to the minus 44 to a model of baryogenesis?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM forty_four_factorization · IndisputableMonolith/Cosmology/EtaBIntervalCert.lean
/-- The key integer: 44 = 4 × 11. -/ theorem forty_four_factorization : (44 : ℕ) = 4 * 11 := by norm_numThe declaration forty_four_factorization proves that 44 equals 4 multiplied by 11. forty_four_factorization · IndisputableMonolith/Cosmology/EtaBIntervalCert.leanTHEOREM eta_B_interval · IndisputableMonolith/Cosmology/EtaBIntervalCert.lean
/-- φ^(-44) ∈ (5.5 × 10⁻¹⁰, 7.5 × 10⁻¹⁰). The observed η_B = (6.10 ± 0.04) × 10⁻¹⁰ falls inside this interval. -/ theorem eta_B_interval : phi ^ (-(44 : ℝ)) > 5.5e-10 ∧ phi ^ (-(44 : ℝ)) < 7.5e-10 := ⟨phi_pow_neg44_lower, phi_pow_neg44_upper⟩The framework's library proves that φ to the power minus 44 lies between 5.5 and 7.5 times 10 to the minus 10. eta_B_interval · IndisputableMonolith/Cosmology/EtaBIntervalCert.leanMEASURED observed_eta_in_interval · IndisputableMonolith/Cosmology/EtaBIntervalCert.lean
/-- The observed η_B ≈ 6.1 × 10⁻¹⁰ is inside the predicted RS interval. -/ theorem observed_eta_in_interval : (5.5e-10 : ℝ) < 6.1e-10 ∧ (6.1e-10 : ℝ) < 7.5e-10 := by norm_numThe observed baryon-to-photon ratio from Planck 2018 is about 6.1 times 10 to the minus 10, which falls inside that interval. observed_eta_in_interval · IndisputableMonolith/Cosmology/EtaBIntervalCert.lean