def
definition
yardstick
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Masses.Anchor on GitHub at line 123.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
-
independent -
Constants -
independent -
Generation -
Generation -
B_pow -
E_passive -
r0 -
Sector -
W -
yardstick -
Sector -
Sector -
Generation -
W -
E_passive -
W -
Generation -
Generation -
Sector
used by
-
mass_rung -
mass_rung_step -
r0_Electroweak_eq -
predict_mass -
predict_mass_sdgt -
yardstick -
predict_mass -
predict_mass_pos -
nuMass -
nuMassSum_eq_Y_times_factor -
sum_factor_pos -
yardstick_upper_bound -
r_charm -
lepton_yardstick_explicit -
V_RS_quartic_canonical -
canonicalNuRungs -
nu_sum_bound_consistent -
rsPrediction -
kappa_G_product -
phi_fibonacci_recursion
formal source
120 norm_num
121
122/-- Sector yardstick `A_s = 2^{B_pow} * E_coh * φ^{r0}`. -/
123@[simp] noncomputable def yardstick (s : Sector) : ℝ :=
124 (2 : ℝ) ^ (B_pow s) * E_coh * Constants.phi ^ (r0 s)
125
126end Anchor
127
128namespace Integers
129
130/-- Generation torsion (global, representation-independent).
131 τ(0) = 0, τ(1) = E_passive = 11, τ(2) = W = 17 -/
132@[simp] def tau (gen : ℕ) : ℤ :=
133 match gen with
134 | 0 => 0
135 | 1 => (Anchor.E_passive : ℤ) -- = 11
136 | _ => (Anchor.W : ℤ) -- = 17
137
138/-- Verify tau values. -/
139theorem tau_values : tau 0 = 0 ∧ tau 1 = 11 ∧ tau 2 = 17 := by
140 simp only [tau, Anchor.E_passive, Anchor.W, passive_field_edges, cube_edges,
141 active_edges_per_tick, D, wallpaper_groups]
142 norm_num
143
144/-- Rung integers for charged leptons.
145 e: 2 (baseline), mu: 2 + tau(1) = 13, tau: 2 + tau(2) = 19 -/
146@[simp] def r_lepton : String → ℤ
147 | "e" => 2
148 | "mu" => 2 + tau 1 -- = 2 + 11 = 13
149 | "tau" => 2 + tau 2 -- = 2 + 17 = 19
150 | _ => 0
151
152/-- Verify r_lepton values. -/
153theorem r_lepton_values : r_lepton "e" = 2 ∧ r_lepton "mu" = 13 ∧ r_lepton "tau" = 19 := by