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

bestPrediction

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

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.StandardModel.WeinbergAngle on GitHub at line 94.

browse module

All declarations in this module, on Recognition.

explainer page

A cached Ask Recognition explainer exists for this declaration.

open explainer

depends on

used by

formal source

  91    Error: ~3.2%
  92
  93    This is the most promising φ-connection! -/
  94noncomputable def bestPrediction : ℝ := prediction3
  95
  96theorem best_prediction_close_to_observed :
  97    |bestPrediction - sin2ThetaW_observed| < 0.01 := by
  98  unfold bestPrediction prediction3 sin2ThetaW_observed
  99  -- Need: |(3 - φ)/6 - 0.2229| < 0.01
 100  -- φ > 1.61 → (3 - φ)/6 < 1.39/6 = 0.2317
 101  -- φ < 1.62 → (3 - φ)/6 > 1.38/6 = 0.23
 102  have h_phi_gt : phi > 1.61 := phi_gt_onePointSixOne
 103  have h_phi_lt : phi < 1.62 := phi_lt_onePointSixTwo
 104  have h_pred_gt : (3 - phi) / 6 > 0.23 := by linarith
 105  have h_pred_lt : (3 - phi) / 6 < 0.232 := by linarith
 106  rw [abs_lt]
 107  constructor <;> linarith
 108
 109/-! ## 8-Tick Geometric Derivation -/
 110
 111/-- The 8-tick circle has 8 equally spaced phases at angles kπ/4 for k = 0, 1, ..., 7.
 112
 113    The electroweak embedding uses 3 of these phases for SU(2) and 1 for U(1).
 114    The mixing angle comes from the geometric arrangement.
 115
 116    Key insight: The "golden cut" of the 8-tick circle gives the mixing angle. -/
 117structure EightTickGeometry where
 118  /-- Number of phases in SU(2) sector -/
 119  su2_phases : ℕ := 3
 120  /-- Number of phases in U(1) sector -/
 121  u1_phases : ℕ := 1
 122  /-- Total phases -/
 123  total : ℕ := 8
 124