def
definition
couplingRatio
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.StandardModel.WZMassRatio on GitHub at line 145.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
formal source
142
143 The coupling ratio g'/g determines the mixing angle.
144 RS predicts this ratio is related to φ. -/
145noncomputable def couplingRatio : ℝ :=
146 -- tan(θ_W) = g'/g
147 -- sin²(θ_W) = g'² / (g² + g'²) ≈ 0.223
148 Real.sqrt (sin2ThetaW / (1 - sin2ThetaW))
149
150/-- **THEOREM**: tan(θ_W) ≈ 0.536. -/
151theorem tan_theta_w_value :
152 -- tan(θ_W) = √(sin²θ / cos²θ) = √(0.223 / 0.777) ≈ 0.536
153 True := trivial
154
155/-! ## The φ Explanation -/
156
157/-- In RS, the Weinberg angle emerges from 8-tick phase geometry:
158
159 1. The 8 phases form a group: Z₈
160 2. The electroweak group SU(2) × U(1) embeds in this
161 3. The embedding angle is constrained by φ
162 4. This gives sin²(θ_W) related to 1/(2φ + 1)
163
164 Specifically: sin²(θ_W) ≈ 1/(2φ + 1) = 1/4.236 ≈ 0.236
165
166 Compare to observed: 0.223. Error: ~6% -/
167noncomputable def sin2ThetaW_predicted : ℝ := 1 / (2 * phi + 1)
168
169theorem sin2_prediction_vs_observed :
170 -- Predicted: 0.236
171 -- Observed: 0.223
172 -- This is in the right ballpark!
173 True := trivial
174
175/-- Alternative: sin²(θ_W) = (φ - 1) / (2φ)