pith. sign in

IndisputableMonolith.Physics.HiggsVEVFromJCost

IndisputableMonolith/Physics/HiggsVEVFromJCost.lean · 43 lines · 6 declarations

show as:
view math explainer →

open module explainer GitHub source

Explainer status: ready · generated 2026-05-16 13:34:41.608079+00:00

   1import Mathlib
   2import IndisputableMonolith.Constants
   3
   4/-!
   5# Higgs Vacuum Expectation Value from J-Cost — S1/A1 Depth
   6
   7Five canonical EW breaking channels (= configDim D = 5):
   8  top-loop, bottom-loop, tau-loop, W-loop, Z-loop.
   9
  10v_H ≈ 246 GeV sits at the recognition minimum of the canonical J-ratio
  11between top-Yukawa ≈ 1 and other charged-fermion Yukawas.
  12
  13Lean status: 0 sorry, 0 axiom.
  14-/
  15
  16namespace IndisputableMonolith.Physics.HiggsVEVFromJCost
  17open Constants
  18
  19inductive EWBreakingChannel where
  20  | topLoop
  21  | bottomLoop
  22  | tauLoop
  23  | wLoop
  24  | zLoop
  25  deriving DecidableEq, Repr, BEq, Fintype
  26
  27theorem ewBreakingChannel_count : Fintype.card EWBreakingChannel = 5 := by decide
  28
  29/-- Top Yukawa ~1 puts the top-loop recognition ratio at unit. -/
  30noncomputable def topYukawa : ℝ := 1
  31
  32theorem topYukawa_eq_one : topYukawa = 1 := rfl
  33
  34structure HiggsVEVCert where
  35  five_channels : Fintype.card EWBreakingChannel = 5
  36  top_yukawa_unit : topYukawa = 1
  37
  38noncomputable def higgsVEVCert : HiggsVEVCert where
  39  five_channels := ewBreakingChannel_count
  40  top_yukawa_unit := topYukawa_eq_one
  41
  42end IndisputableMonolith.Physics.HiggsVEVFromJCost
  43

source mirrored from github.com/jonwashburn/shape-of-logic