pith. machine review for the scientific record. sign in
def

Z

definition
show as:
view math explainer →
module
IndisputableMonolith.Masses.Anchor
domain
Masses
line
186 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Masses.Anchor on GitHub at line 186.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

depends on

used by

formal source

 183namespace ChargeIndex
 184
 185/-- Integer map used by the anchor relation (Paper 1). -/
 186@[simp] def Z (sector : Anchor.Sector) (Q : ℚ) : ℤ :=
 187  let Q6 : ℤ := (6 : ℤ) * Q.num / Q.den
 188  match sector with
 189  | .Lepton      => (Q6 ^ (2 : ℕ)) + (Q6 ^ (4 : ℕ))
 190  | .UpQuark     => 4 + (Q6 ^ (2 : ℕ)) + (Q6 ^ (4 : ℕ))
 191  | .DownQuark   => 4 + (Q6 ^ (2 : ℕ)) + (Q6 ^ (4 : ℕ))
 192  | .Electroweak => 0
 193
 194end ChargeIndex
 195
 196/-! ## Summary: Parameter-Free Derivation
 197
 198All sector constants trace back to:
 1991. D = 3 (dimension, from T9 linking)
 2002. cube_edges(D) = 12 (hypercube formula)
 2013. active_edges_per_tick = 1 (atomic tick, from T2)
 2024. passive_field_edges = 11 (12 - 1)
 2035. wallpaper_groups = 17 (crystallographic, Fedorov 1891)
 204
 205NO free parameters. NO fitting to mass data.
 206-/
 207
 208end Masses
 209end IndisputableMonolith