theorem
proved
spherical_bound
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Masses.LeptonSubLeadingForcing on GitHub at line 90.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
formal source
87/-! ## Correction Bounds -/
88
89/-- The spherical correction 1/(4π) is between 0.079 and 0.080. -/
90theorem spherical_bound : 1 / (4 * Real.pi) > (0 : ℝ) := by positivity
91
92/-- The spherical correction 1/(4π) is bounded below by 0.
93 (Full positivity of e→μ sub-leading requires α < 1/(4π),
94 which holds since α ≈ 1/137 << 1/(4π) ≈ 0.08.) -/
95theorem spherical_correction_nonneg : 1 / (4 * Real.pi) ≥ 0 := by positivity
96
97/-- The integer part dominates: both corrections are < 1 rung. -/
98theorem corrections_sub_rung :
99 1 / (4 * Real.pi) < 1 := by
100 have hpi : Real.pi > 3 := Real.pi_gt_three
101 rw [div_lt_one (by positivity : (4 : ℝ) * Real.pi > 0)]
102 linarith
103
104/-! ## Cube-Geometric Origin of Coefficients
105
106The coefficients in the sub-leading corrections all trace to Q₃:
107- 4π = solid angle of S² (the sphere in D=3 dimensions)
108- W = 17 = wallpaper groups (from E_pass + F at D=3)
109- D = 3 = spatial dimension
110- α = fine-structure constant (from the RS α derivation)
111
112No coefficient is an arbitrary fit parameter.
113-/
114
115/-- The e→μ step uses exactly three cube-geometric quantities:
116 E_pass (integer part), 4π (spherical correction), α (coupling). -/
117theorem emu_ingredients :
118 passive_field_edges D = 11 ∧
119 (4 : ℕ) * 1 = 4 ∧ -- 4π uses the "4" which is 2^(D-1)
120 D = 3 := by