Encyclopedia Masses Masses Mass Genesis T10 Times Three Multiplier Ew Yardstick Eq Cell Reach Mul W
ARTICLE 4 claims 4 theorems
Masses Mass Genesis T10 Times Three Multiplier Ew Yardstick Eq Cell Reach Mul W
A machine-checked theorem ties the electroweak sector's internal scale to the number of particle species cells and the W boson's reach, forcing a factor of three.
The electroweak yardstick
The electroweak yardstick is a number that the Recognition Science framework derives for the electroweak sector, the part of particle physics that governs the weak nuclear force and electromagnetism. The framework models particle species as occupying cells in a discrete grid, and it assigns each gauge carrier, such as the W boson, a reach: how many cells it can touch. The theorem ew_yardstick_eq_cellReach_mul_W_add_channel_offset states that this yardstick equals the W boson's cell reach times a wallpaper count, plus twice the W boson's channel reach. In plain terms, the internal scale of the electroweak sector is built from two ingredients: how far the W boson reaches across cells, and how many cells it can touch at all.
The wallpaper count, written as Anchor.W, is 17. The W boson's cell reach is 3, and its channel reach is 2. Substituting these values gives 3 times 17 plus 2 times 2, which equals 55. The number 55 is the electroweak yardstick, Anchor.r0 for the electroweak sector. The theorem is a proved identity in the machine-checked library of formal theorems, meaning the arithmetic is verified by a computer. It does not by itself explain why the W boson has these reaches; those are separate definitions. What the theorem establishes is that the yardstick decomposes exactly into these two terms, with no remainder.
The factor of three in the cell reach is not accidental. A separate theorem, multiplier_forced_three, shows that if any integer M times 17 equals the yardstick minus 4, then M must be 3. The number 4 is the sum of the two channel reaches, so the yardstick minus 4 is 51, and 51 divided by 17 is exactly 3. This forces the multiplier to be three, not two or four. The framework reads this as the origin of the threefold structure in particle generations: the third generation exists because the arithmetic leaves no room for a fourth cell. A companion theorem, fourth_cell_would_break_yardstick, shows that four cells would make the yardstick equation fail.
What the declaration does not claim is just as important. It does not claim that the electroweak yardstick equals any measured physical constant, such as the fine-structure constant or the W boson mass. The number 55 is an internal unit in the framework's own scale, not a value in SI units. It does not claim that the W boson's reach of 3 is derived from first principles; that reach is a definitional choice, not a proved consequence. It does not claim that the factor of three explains the observed three generations of matter in the Standard Model; that connection is a hypothesis the framework offers, not a theorem it has proved. The theorem is a precise identity about the framework's own model, and its power lies in what it forces within that model, not in any direct comparison to experiment.
THEOREM ew_yardstick_eq_cellReach_mul_W_add_channel_offset · IndisputableMonolith/Masses/MassGenesis/T10TimesThreeMultiplier.lean
/-- **THE CROWN.** The electroweak yardstick is the inhabited-cell reach
times the wallpaper count, plus the channel-reach offset:
`r0(EW) = cellReach(W) × W + 2 × channelReach(W) = 3W + 4 = 55`. The `×3`
multiplier is the inhabited-cell reach; the `+4` is the C13 channel-reach
offset. -/
theorem ew_yardstick_eq_cellReach_mul_W_add_channel_offset :
Anchor.r0 Anchor.Sector.Electroweak
= cellReach (GaugeCarrier.couples .wBoson) * (Anchor.W : ℤ)
+ 2 * channelReach (GaugeCarrier.couples .wBoson) := by
rw [cellReach_wBoson, channelReach_wBoson]
simp only [Anchor.r0]
have hW : (Anchor.W : ℤ) = 17 := by
simp only [Anchor.W, wallpaper_groups]
norm_num
rw [hW]
norm_num
THEOREM multiplier_forced_three · IndisputableMonolith/Masses/MassGenesis/T10TimesThreeMultiplier.lean
/-- **The multiplier is forced to `3`.** Any `M` with `M × W` equal to the
electroweak wallpaper content (`r0(EW) − 4 = 51`) and `W = 17` satisfies
`M = 3`: the multiplier value is not a choice. -/
theorem multiplier_forced_three (M : ℤ)
(h : M * (Anchor.W : ℤ) = Anchor.r0 Anchor.Sector.Electroweak - 4) :
M = 3 := by
have hW : (Anchor.W : ℤ) = 17 := by
simp only [Anchor.W, wallpaper_groups]
norm_num
simp only [Anchor.r0] at h
rw [hW] at h
have h17 : (17 : ℤ) ≠ 0 := by norm_num
have h51 : M * 17 = 3 * 17 := by omega
exact mul_right_cancel₀ h17 h51
THEOREM multiplier_forced_three · IndisputableMonolith/Masses/MassGenesis/T10TimesThreeMultiplier.lean
/-- **The multiplier is forced to `3`.** Any `M` with `M × W` equal to the
electroweak wallpaper content (`r0(EW) − 4 = 51`) and `W = 17` satisfies
`M = 3`: the multiplier value is not a choice. -/
theorem multiplier_forced_three (M : ℤ)
(h : M * (Anchor.W : ℤ) = Anchor.r0 Anchor.Sector.Electroweak - 4) :
M = 3 := by
have hW : (Anchor.W : ℤ) = 17 := by
simp only [Anchor.W, wallpaper_groups]
norm_num
simp only [Anchor.r0] at h
rw [hW] at h
have h17 : (17 : ℤ) ≠ 0 := by norm_num
have h51 : M * 17 = 3 * 17 := by omega
exact mul_right_cancel₀ h17 h51
THEOREM fourth_cell_would_break_yardstick · IndisputableMonolith/Masses/MassGenesis/T10TimesThreeMultiplier.lean
/-- **The falsifier, priced.** A fourth inhabited cell — a colour-active,
charge-inactive fermion, the combination the nesting empties — would raise
the cell reach to `4` and the yardstick to `4W + 4 = 72 ≠ 55`. The
derivation therefore commits to the emptiness of the fourth cell: a banked
colour-active neutral fermion refutes it. -/
theorem fourth_cell_would_break_yardstick :
4 * (Anchor.W : ℤ) + 2 * channelReach (GaugeCarrier.couples .wBoson)
≠ Anchor.r0 Anchor.Sector.Electroweak := by
rw [channelReach_wBoson]
simp only [Anchor.r0]
have hW : (Anchor.W : ℤ) = 17 := by
simp only [Anchor.W, wallpaper_groups]
norm_num
rw [hW]
norm_num
What this page does not claim
The electroweak yardstick of 55 is not a measured physical constant in SI units. The W boson's reaches of 3 and 2 are definitional choices, not derived consequences. The factor of three does not by itself prove the existence of three generations in the Standard Model.
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/Masses/MassGenesis/T10TimesThreeMultiplier.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 quantity, if any, does the electroweak yardstick of 55 correspond to in the Standard Model?
- How does the framework derive the W boson's cell reach of 3 and channel reach of 2 from its axioms?
- Does the forced factor of three in this theorem connect to the observed three generations of matter, and if so, how?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM ew_yardstick_eq_cellReach_mul_W_add_channel_offset · IndisputableMonolith/Masses/MassGenesis/T10TimesThreeMultiplier.lean
/-- **THE CROWN.** The electroweak yardstick is the inhabited-cell reach times the wallpaper count, plus the channel-reach offset: `r0(EW) = cellReach(W) × W + 2 × channelReach(W) = 3W + 4 = 55`. The `×3` multiplier is the inhabited-cell reach; the `+4` is the C13 channel-reach offset. -/ theorem ew_yardstick_eq_cellReach_mul_W_add_channel_offset : Anchor.r0 Anchor.Sector.Electroweak = cellReach (GaugeCarrier.couples .wBoson) * (Anchor.W : ℤ) + 2 * channelReach (GaugeCarrier.couples .wBoson) := by rw [cellReach_wBoson, channelReach_wBoson] simp only [Anchor.r0] have hW : (Anchor.W : ℤ) = 17 := by simp only [Anchor.W, wallpaper_groups] norm_num rw [hW] norm_numThe electroweak yardstick equals the W boson's cell reach times a wallpaper count, plus twice the W boson's channel reach. ew_yardstick_eq_cellReach_mul_W_add_channel_offset · IndisputableMonolith/Masses/MassGenesis/T10TimesThreeMultiplier.leanTHEOREM multiplier_forced_three · IndisputableMonolith/Masses/MassGenesis/T10TimesThreeMultiplier.lean
/-- **The multiplier is forced to `3`.** Any `M` with `M × W` equal to the electroweak wallpaper content (`r0(EW) − 4 = 51`) and `W = 17` satisfies `M = 3`: the multiplier value is not a choice. -/ theorem multiplier_forced_three (M : ℤ) (h : M * (Anchor.W : ℤ) = Anchor.r0 Anchor.Sector.Electroweak - 4) : M = 3 := by have hW : (Anchor.W : ℤ) = 17 := by simp only [Anchor.W, wallpaper_groups] norm_num simp only [Anchor.r0] at h rw [hW] at h have h17 : (17 : ℤ) ≠ 0 := by norm_num have h51 : M * 17 = 3 * 17 := by omega exact mul_right_cancel₀ h17 h51The wallpaper count, written as Anchor.W, is 17. multiplier_forced_three · IndisputableMonolith/Masses/MassGenesis/T10TimesThreeMultiplier.leanTHEOREM multiplier_forced_three · IndisputableMonolith/Masses/MassGenesis/T10TimesThreeMultiplier.lean
/-- **The multiplier is forced to `3`.** Any `M` with `M × W` equal to the electroweak wallpaper content (`r0(EW) − 4 = 51`) and `W = 17` satisfies `M = 3`: the multiplier value is not a choice. -/ theorem multiplier_forced_three (M : ℤ) (h : M * (Anchor.W : ℤ) = Anchor.r0 Anchor.Sector.Electroweak - 4) : M = 3 := by have hW : (Anchor.W : ℤ) = 17 := by simp only [Anchor.W, wallpaper_groups] norm_num simp only [Anchor.r0] at h rw [hW] at h have h17 : (17 : ℤ) ≠ 0 := by norm_num have h51 : M * 17 = 3 * 17 := by omega exact mul_right_cancel₀ h17 h51If any integer M times 17 equals the yardstick minus 4, then M must be 3. multiplier_forced_three · IndisputableMonolith/Masses/MassGenesis/T10TimesThreeMultiplier.leanTHEOREM fourth_cell_would_break_yardstick · IndisputableMonolith/Masses/MassGenesis/T10TimesThreeMultiplier.lean
/-- **The falsifier, priced.** A fourth inhabited cell — a colour-active, charge-inactive fermion, the combination the nesting empties — would raise the cell reach to `4` and the yardstick to `4W + 4 = 72 ≠ 55`. The derivation therefore commits to the emptiness of the fourth cell: a banked colour-active neutral fermion refutes it. -/ theorem fourth_cell_would_break_yardstick : 4 * (Anchor.W : ℤ) + 2 * channelReach (GaugeCarrier.couples .wBoson) ≠ Anchor.r0 Anchor.Sector.Electroweak := by rw [channelReach_wBoson] simp only [Anchor.r0] have hW : (Anchor.W : ℤ) = 17 := by simp only [Anchor.W, wallpaper_groups] norm_num rw [hW] norm_numFour cells would make the yardstick equation fail. fourth_cell_would_break_yardstick · IndisputableMonolith/Masses/MassGenesis/T10TimesThreeMultiplier.lean