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

cabibbo_radiative_correction

definition
show as:
view math explainer →
module
IndisputableMonolith.Physics.MixingGeometry
domain
Physics
line
87 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Physics.MixingGeometry on GitHub at line 87.

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

used by

formal source

  84
  85/-- The radiative correction factor for the Cabibbo angle.
  86    Represented as 1.5 * alpha, derived from 6 faces / 4 vertex-edge weight. -/
  87noncomputable def cabibbo_radiative_correction : ℝ := (3/2) * Constants.alpha
  88
  89/-- **THEOREM: Cabibbo Scaling Forced**
  90    The Cabibbo scaling factor is forced by the torsion overlap and the
  91    face-mediated radiative corrections. -/
  92theorem cabibbo_scaling_forced :
  93    torsion_overlap - cabibbo_radiative_correction = phi ^ (-3 : ℤ) - (3/2) * Constants.alpha := by
  94  unfold torsion_overlap cabibbo_radiative_correction
  95  ring
  96
  97end MixingGeometry
  98end Physics
  99end IndisputableMonolith