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

higgsGaugeCoupling

definition
show as:
view math explainer →
module
IndisputableMonolith.StandardModel.ElectroweakBreaking
domain
StandardModel
line
236 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.StandardModel.ElectroweakBreaking on GitHub at line 236.

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

formal source

 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
 266  falsified : higgs_wrong ∨ vev_not_minimum → False