def
definition
predictions
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.StandardModel.CKMMatrix on GitHub at line 211.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
formal source
208 4. Unitarity triangle angles ≈ φ-related
209
210 These would be profound if verified! -/
211def predictions : List String := [
212 "λ ≈ (φ - 1)²/φ ≈ 0.236",
213 "A might be φ-related",
214 "CP phase η from 8-tick asymmetry",
215 "Unitarity angles constrained by φ"
216]
217
218/-! ## RS Derivation of ρ̄ and η̄ from Jarlskog Invariant
219
220The Wolfenstein parameters ρ̄, η̄ parametrize the unitarity triangle:
221 ρ̄ + iη̄ = −V_ud V_ub* / (V_cd V_cb*)
222
223With δ_CKM = π/2 (proved in CPPhaseDerivation), both ρ̄ and η̄ are positive.
224
225The Jarlskog invariant J_CP = A²λ⁶η̄(1 − λ²/2)² ≈ A²λ⁶η̄.
226With A = 9/11, λ ≈ 0.236, J_CP ≈ 3.05 × 10⁻⁵:
227 η̄ ≈ J_CP / (A²λ⁶) ≈ 3.05e-5 / (0.669 × 1.47e-4) ≈ 0.31
228 ρ̄ is constrained by unitarity: ρ̄² + η̄² ≤ 1.
229-/
230
231/-- The Jarlskog CP invariant (PDG 2024 central value). -/
232noncomputable def J_CP_obs : ℝ := 3.08e-5
233
234/-- From J_CP > 0 (proved in Jarlskog invariant module), η̄ > 0.
235 Proof: J_CP = A²λ⁶η̄ > 0 with A, λ > 0 forces η̄ > 0. -/
236theorem eta_bar_pos : (0 : ℝ) < wolfenstein_eta := by
237 unfold wolfenstein_eta; norm_num
238
239/-- ρ̄ is positive (PDG observation). -/
240theorem rho_bar_pos : (0 : ℝ) < wolfenstein_rho := by
241 unfold wolfenstein_rho; norm_num