theorem
proved
Z_electron
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Physics.AnchorPolicy on GitHub at line 106.
browse module
All declarations in this module, on Recognition.
explainer page
formal source
103def canonicalZBands : List ℤ := [24, 276, 1332]
104
105/-- Verify the Z values match RSBridge.ZOf. -/
106theorem Z_electron : ZOf Fermion.e = 1332 := by native_decide
107theorem Z_up : ZOf Fermion.u = 276 := by native_decide
108theorem Z_down : ZOf Fermion.d = 24 := by native_decide
109
110/-! ## Abstract RG Residue -/
111
112/-- **ANCHOR RESIDUE THEOREM**
113
114 Abstract RG residue for species at scale μ matches val.
115
116 **Proof Structure**:
117 1. The mass of a fermion species $i$ evolves as $m_i(\mu) = m_i(\mu_0) \exp(-\int_{\ln \mu_0}^{\ln \mu} \gamma_i(t) dt)$.
118 2. The integrated residue $f_i$ is defined using `RGTransport.integratedResidue`.
119 3. External RG transport calculations (QCD 4L/QED 2L) provide the specific values for each species.
120 4. This theorem maps these computed residues to the canonical SI units.
121
122 **STATUS**: HYPOTHESIS (empirical calibration) -/
123theorem f_residue (_γ : AnomalousDimension) (f : Fermion) (mu : ℝ) (val : ℝ) :
124 ∃ f_res : Fermion → ℝ → ℝ, f_res f mu = val := by
125 -- The existence is trivial: just construct a function that returns val at (f, mu).
126 -- For the RS-specific value, use integratedResidue, but the existence itself is trivial.
127 let f_res := fun f' μ' => if f' = f ∧ μ' = mu then val
128 else 0 -- arbitrary default
129 use f_res
130 simp only [f_res, and_self, ↓reduceIte]
131
132/-- **STATIONARITY THEOREM**
133
134 At the universal anchor, the RG residue is stationary
135 in ln μ (PMS-like), i.e., first-order radiative sensitivity vanishes.
136