def
definition
sin2ThetaW_RS
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.StandardModel.Q3Representations on GitHub at line 134.
browse module
All declarations in this module, on Recognition.
explainer page
used by
formal source
131 More precisely: the RS mass formula for the Higgs uses:
132 m_H² = 2λv² where λ = (3 - φ)/3 · sin²θ_W (from the Q₃ reduction)
133 This gives m_H ≈ v · √(2(3-φ)/3 · sin²θ_W) -/
134noncomputable def sin2ThetaW_RS : ℝ := (3 - phi) / 6
135
136theorem sin2ThetaW_RS_val : sin2ThetaW_RS = (3 - phi) / 6 := rfl
137
138/-- sin²θ_W^RS is positive. -/
139theorem sin2ThetaW_RS_pos : 0 < sin2ThetaW_RS := by
140 unfold sin2ThetaW_RS
141 apply div_pos
142 · linarith [phi_lt_onePointSixTwo]
143 · norm_num
144
145/-- sin²θ_W^RS is less than 0.5. -/
146theorem sin2ThetaW_RS_lt_half : sin2ThetaW_RS < 1/2 := by
147 unfold sin2ThetaW_RS
148 rw [div_lt_iff₀ (by norm_num : (0:ℝ) < 6)]
149 linarith [phi_gt_onePointSixOne]
150
151/-- The RS prediction for sin²θ_W: ≈ (3-1.618)/6 ≈ 0.230. -/
152theorem sin2ThetaW_RS_approx : 0.228 < sin2ThetaW_RS ∧ sin2ThetaW_RS < 0.232 := by
153 unfold sin2ThetaW_RS
154 constructor
155 · rw [lt_div_iff₀ (by norm_num : (0:ℝ) < 6)]
156 linarith [phi_lt_onePointSixTwo]
157 · rw [div_lt_iff₀ (by norm_num : (0:ℝ) < 6)]
158 linarith [phi_gt_onePointSixOne]
159
160/-! ## The Higgs Rung Assignment -/
161
162/-- The W-boson rung on the φ-ladder (from the mass law). -/
163def w_rung : ℤ := 21
164