inductive
definition
Sector
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Masses.RSBridge.Anchor on GitHub at line 31.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
-
totalCost_nonneg -
SpectralSector -
B_pow -
E_coh -
r0 -
r0_Electroweak_eq -
Sector -
yardstick -
Z -
B_pow_alt -
B_pow_eq_alt -
r0_alt -
r0_eq_alt -
cross_sector_shift -
gap -
predict_mass -
predict_mass_sdgt -
rung -
rung_sdgt -
cos2_theta_W_bounds -
cos2_theta_positive -
mass_rung_scaling -
predict_mass -
predict_mass_pos -
QuarkAbsoluteMassResidual -
down_generation_spacing -
quark_mass_positive -
r_down_values -
sectorOf -
Sector -
sectorOf -
Species -
ell_baseline -
step_down_gen2 -
tau_neutrino -
tau_sdgt -
match_rsbridge_rung -
down_generation_ordering -
lepton_total_span -
N_diff_eq_edges_at_D3
formal source
28namespace IndisputableMonolith
29namespace RSBridge
30
31inductive Sector | up | down | lepton | neutrino
32deriving DecidableEq, Repr
33
34inductive Fermion
35| d | s | b | u | c | t | e | mu | tau | nu1 | nu2 | nu3
36deriving DecidableEq, Repr, Inhabited
37
38def sectorOf : Fermion → Sector
39| .d | .s | .b => .down
40| .u | .c | .t => .up
41| .e | .mu | .tau => .lepton
42| .nu1 | .nu2 | .nu3 => .neutrino
43
44def tildeQ : Fermion → ℤ
45| .u | .c | .t => 4
46| .d | .s | .b => -2
47| .e | .mu | .tau => -6
48| .nu1 | .nu2 | .nu3 => 0
49
50def ZOf (f : Fermion) : ℤ :=
51 let q := tildeQ f
52 match sectorOf f with
53 | .up | .down => 4 + q*q + q*q*q*q
54 | .lepton => q*q + q*q*q*q
55 | .neutrino => 0
56
57/-- The display function F(Z) = ln(1 + Z/φ) / ln(φ).
58
59 This is the **closed form** that the integrated RG residue is claimed to equal
60 at the anchor scale μ⋆. The claim is:
61 `f_i(μ⋆) = gap(ZOf i)`