def
definition
predictions
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 203.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
formal source
200 1. sin²(θ_W) ~ 1/(2φ + 1) ≈ 0.236 (vs observed 0.223)
201 2. Running with energy follows φ-ladder
202 3. Mass ratio m_W/m_Z = cos(θ_W) ≈ 0.88 ✓ -/
203def predictions : List String := [
204 "sin²(θ_W) related to 1/(2φ + 1)",
205 "m_W / m_Z ≈ 0.88",
206 "θ_W constrained by 8-tick geometry"
207]
208
209/-! ## Falsification Criteria -/
210
211/-- The derivation would be falsified by:
212 1. No φ-connection to sin²(θ_W)
213 2. Mass ratio not following cos(θ_W)
214 3. Running not following φ-scaling -/
215structure WZFalsifier where
216 falsifier : String
217 status : String
218
219def experimentalStatus : List WZFalsifier := [
220 ⟨"m_W / m_Z measurement", "0.8815 ± 0.0002, precisely known"⟩,
221 ⟨"sin²(θ_W) measurement", "0.2229 ± 0.0003"⟩,
222 ⟨"φ-connection", "In progress - promising"⟩
223]
224
225end WZMassRatio
226end StandardModel
227end IndisputableMonolith