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

deltaCP_degrees

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

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.StandardModel.PMNSMatrix on GitHub at line 56.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

depends on

used by

formal source

  53noncomputable def sin2_theta13_observed : ℝ := 0.0220
  54
  55/-- The CP-violating phase δ_CP ≈ 197° (normal ordering). -/
  56noncomputable def deltaCP_degrees : ℝ := 197
  57
  58/-! ## The PMNS Matrix Structure -/
  59
  60/-- The PMNS matrix in standard parametrization:
  61
  62U = ⎛ c₁₂c₁₃         s₁₂c₁₃         s₁₃e^{-iδ} ⎞
  63    ⎜ -s₁₂c₂₃-c₁₂s₂₃s₁₃e^{iδ}  c₁₂c₂₃-s₁₂s₂₃s₁₃e^{iδ}  s₂₃c₁₃ ⎟
  64    ⎝ s₁₂s₂₃-c₁₂c₂₃s₁₃e^{iδ}  -c₁₂s₂₃-s₁₂c₂₃s₁₃e^{iδ}  c₂₃c₁₃ ⎠
  65
  66where c_ij = cos θ_ij and s_ij = sin θ_ij
  67-/
  68structure PMNSParameters where
  69  theta12 : ℝ  -- Solar angle
  70  theta23 : ℝ  -- Atmospheric angle
  71  theta13 : ℝ  -- Reactor angle
  72  deltaCP : ℝ  -- CP phase
  73
  74/-- The best-fit PMNS parameters. -/
  75noncomputable def bestFitPMNS : PMNSParameters := {
  76  theta12 := theta12_degrees * Real.pi / 180,
  77  theta23 := theta23_degrees * Real.pi / 180,
  78  theta13 := theta13_degrees * Real.pi / 180,
  79  deltaCP := deltaCP_degrees * Real.pi / 180
  80}
  81
  82/-! ## φ-Connection Hypotheses -/
  83
  84/-- **Hypothesis 1: Golden Ratio Mixing**
  85
  86    sin²θ₁₂ = 1/(1 + φ²) = 1/(1 + 2.618) = 1/3.618 ≈ 0.276