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

sectorOf

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

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Masses.RungConstructor.Basic on GitHub at line 24.

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

  21  deriving DecidableEq, Repr
  22
  23/-- Sector mapping for the rung constructor. -/
  24def sectorOf : Species → Sector
  25  | .fermion f =>
  26      match RSBridge.sectorOf f with
  27      | .lepton   => .Lepton
  28      | .neutrino => .Neutrino
  29      | .up       => .UpQuark
  30      | .down     => .DownQuark
  31  | .W | .Z | .H => .Electroweak
  32
  33/-- Charge-index q̃ used as input to the constructor motifs. -/
  34def tildeQ : Species → ℤ
  35  | .fermion f => RSBridge.tildeQ f
  36  | .W => 0
  37  | .Z => 0
  38  | .H => 0
  39
  40end RungConstructor
  41end Masses
  42end IndisputableMonolith