Explanation of the theorem down_generation_spacing
(1) In plain English: The declaration proves that the rung integer for the strange quark minus the rung for the down quark equals 11, and the rung for the bottom quark minus the down quark equals 17. These fixed differences encode the generational spacing within the down-type quark sector.
(2) Why it matters in Recognition Science: The spacing is a direct consequence of the torsion schedule {0, 11, 17} derived from cube geometry. It yields parameter-free mass ratios m_s/m_d = phi^11 and m_b/m_d = phi^17 inside the RS mass formula, confirming the same structural hierarchy already verified for leptons and up-type quarks.
(3) How to read the formal statement:
theorem down_generation_spacing :
r_down "s" - r_down "d" = 11 ∧ r_down "b" - r_down "d" = 17 := by
simp only [r_down, tau, Anchor.E_passive, Anchor.W, passive_field_edges,
cube_edges, active_edges_per_tick, D, wallpaper_groups]
omega
It is a proved theorem (not an axiom or definition) asserting the two integer equalities. The proof unfolds the r_down definition, simplifies using geometry parameters, and discharges the arithmetic with the omega tactic.
(4) Visible dependencies or certificates: The proof relies on r_down (and auxiliary constants tau, D, wallpaper_groups) together with the sector parameters verified by downquark_sector_params. The result is packaged inside the certificate structure via quark_verification_cert_exists, which also includes the symmetric up_generation_spacing, r_down_values (absolute rungs d=4, s=15, b=21), and quark_mass_positive.
(5) What this declaration does not prove: It does not derive the rung values or the underlying mass formula from the core forcing chain; those reside in the imported Anchor module. It performs no numerical comparison against the imported PDG constants m_d_exp, m_s_exp, m_b_exp. It does not address up-type quarks, leptons, or any link to the T0–T8 forcing theorems.