Encyclopedia Cosmology Cosmology Eta Binterval Cert Rung 44 Equals Flip Times Torsion
ARTICLE 3 claims 3 theorems
Cosmology Eta Binterval Cert Rung 44 Equals Flip Times Torsion
One number, 44, links the baryon-to-photon ratio to a structural identity in the framework's machine-checked library.
The 44 connection
The baryon-to-photon ratio, often written η_B, is a number that describes the cosmic imbalance between matter and antimatter. It is the ratio of the number of protons and neutrons left over from the early universe to the number of photons, the particles of light, that fill the sky. The Planck 2018 measurement gives η_B = (6.10 ± 0.04) × 10⁻¹⁰, a tiny number that tells cosmologists how much ordinary matter exists for every billion photons.
The Recognition Science framework derives an interval prediction for this ratio. Its machine-checked library of formal theorems proves that φ⁻⁴⁴, where φ is the golden ratio, lies between 5.5 × 10⁻¹⁰ and 7.5 × 10⁻¹⁰. The observed value of 6.1 × 10⁻¹⁰ falls inside this window. The proof uses the Fibonacci identity φ⁴⁴ = F(44) × φ + F(43), with F(44) = 701408733 and F(43) = 433494437, to bound the power of φ without ever computing it exactly.
The declaration rung_44_equals_flip_times_torsion establishes a separate structural fact. It proves that the integer 44 equals the product of two framework-internal quantities: the flip count of a preferred axis in a Gray code, which measures a kind of chirality, and the absolute value of a torsion gap between two levels, which measures a difference in a filtration. The theorem is verified by direct computation, and it is the same 44 that appears in the exponent of the η_B prediction and in the framework's expression for the fine-structure constant.
What the declaration does not claim is that this structural identity is the physical cause of the measured baryon asymmetry. The theorem proves an equality between integers; it does not prove that the flip count and torsion gap are the mechanism that produced the matter-antimatter imbalance. That causal link is a hypothesis, not a proved result. The framework's library shows the numbers align, but the physics that connects the abstract structure to the early universe remains open.
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⟩
THEOREM 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
THEOREM rung_44_equals_flip_times_torsion · IndisputableMonolith/Cosmology/EtaBIntervalCert.lean
/-- **STRUCTURAL THEOREM**: 44 = flip_count(axis 0) × |Δτ₁₂|.
The rung of the baryon asymmetry is the product of:
- The chirality asymmetry of the Gray code (flip count of preferred axis)
- The generation torsion gap (CW filtration level difference)
This is the SAME "44" that appears in α⁻¹ = 44π × exp(-w₈ ln φ / 44π). -/
theorem rung_44_equals_flip_times_torsion :
(44 : ℕ) = bitFlipCount 0 * (torsionGap 0 1).natAbs := by
simp only [bitFlipCount, torsionGap, τ]
native_decide
What this page does not claim
The structural identity is not proved to be the physical cause of the baryon asymmetry. The interval prediction is not a derivation of the exact measured value of η_B. The framework does not claim that the fine-structure constant is derived from this same 44.
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, if any, connects the flip count and torsion gap to the early universe's matter-antimatter asymmetry?
- How does the framework derive the value of the golden ratio φ from its forcing chain?
- What is the precise definition of the torsion gap in the framework's filtration?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
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⟩The machine-checked library of formal theorems proves that φ⁻⁴⁴ lies between 5.5 × 10⁻¹⁰ and 7.5 × 10⁻¹⁰. eta_B_interval · IndisputableMonolith/Cosmology/EtaBIntervalCert.leanTHEOREM 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 value of 6.1 × 10⁻¹⁰ falls inside this window. observed_eta_in_interval · IndisputableMonolith/Cosmology/EtaBIntervalCert.leanTHEOREM rung_44_equals_flip_times_torsion · IndisputableMonolith/Cosmology/EtaBIntervalCert.lean
/-- **STRUCTURAL THEOREM**: 44 = flip_count(axis 0) × |Δτ₁₂|. The rung of the baryon asymmetry is the product of: - The chirality asymmetry of the Gray code (flip count of preferred axis) - The generation torsion gap (CW filtration level difference) This is the SAME "44" that appears in α⁻¹ = 44π × exp(-w₈ ln φ / 44π). -/ theorem rung_44_equals_flip_times_torsion : (44 : ℕ) = bitFlipCount 0 * (torsionGap 0 1).natAbs := by simp only [bitFlipCount, torsionGap, τ] native_decideThe declaration rung_44_equals_flip_times_torsion proves that the integer 44 equals the product of the flip count of a preferred axis and the absolute value of a torsion gap. rung_44_equals_flip_times_torsion · IndisputableMonolith/Cosmology/EtaBIntervalCert.lean