def
definition
higgsFermionCoupling
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.StandardModel.ElectroweakBreaking on GitHub at line 235.
browse module
All declarations in this module, on Recognition.
explainer page
formal source
232 - g_HVV = 2 m_V² / v (gauge bosons)
233
234 Heavier particles couple more strongly! -/
235noncomputable def higgsFermionCoupling (m_f v : ℝ) : ℝ := m_f / v
236noncomputable def higgsGaugeCoupling (m_V v : ℝ) : ℝ := 2 * m_V^2 / v
237
238/-! ## Summary -/
239
240/-- RS derivation of electroweak breaking:
241
242 1. **Higgs potential = J-cost**: Same mathematical form
243 2. **VEV = J-cost minimum**: Symmetry breaks spontaneously
244 3. **W, Z masses**: From coupling to VEV
245 4. **Photon massless**: U(1)_EM unbroken
246 5. **Higgs boson**: Radial excitation of Higgs field
247 6. **Hierarchy**: May be φ-related (under investigation) -/
248def summary : List String := [
249 "Higgs potential = J-cost functional",
250 "VEV = J-cost minimum",
251 "W, Z get mass, photon stays massless",
252 "Higgs boson discovered at 125 GeV",
253 "Hierarchy problem: v << M_Planck"
254]
255
256/-! ## Falsification Criteria -/
257
258/-- The derivation would be falsified if:
259 1. Higgs mechanism is wrong
260 2. VEV doesn't minimize J-cost
261 3. Additional Higgs bosons found (complicates story) -/
262structure ElectroweakBreakingFalsifier where
263 higgs_wrong : Prop
264 vev_not_minimum : Prop
265 extra_higgs : Prop