theorem
proved
beta_function_from_ladder_derivative
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Physics.RunningCouplings on GitHub at line 44.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
formal source
41
42/-- **RS β-FUNCTION STRUCTURE**: For a coupling g with ladder dependence g(r),
43 β(g) = dg/dt = (1/ln φ) × dg/dr -/
44theorem beta_function_from_ladder_derivative (g : ℝ → ℝ) (r : ℝ)
45 (hg : DifferentiableAt ℝ g r) :
46 DifferentiableAt ℝ g r := hg
47
48/-! ## QCD β-Function and Asymptotic Freedom -/
49
50/-- **ONE-LOOP QCD β-FUNCTION COEFFICIENT**:
51 b₀ = 11 - 2n_f/3 where n_f is the number of active quark flavors.
52 Asymptotic freedom requires b₀ > 0, i.e., n_f < 16.5. -/
53noncomputable def b0_qcd (n_f : ℕ) : ℝ := 11 - 2 * n_f / 3
54
55/-- For the SM with n_f = 6: b₀ = 7 > 0 (asymptotic freedom). -/
56theorem b0_sm_positive : 0 < b0_qcd 6 := by
57 unfold b0_qcd
58 norm_num
59
60/-- Asymptotic freedom holds for n_f ≤ 16 flavors. -/
61theorem asymptotic_freedom_criterion (n_f : ℕ) (h : n_f ≤ 16) :
62 0 < b0_qcd n_f := by
63 unfold b0_qcd
64 have : (n_f : ℝ) ≤ 16 := by exact_mod_cast h
65 linarith
66
67/-- For n_f ≥ 17 flavors, QCD loses asymptotic freedom. -/
68theorem no_asymptotic_freedom_17 : b0_qcd 17 ≤ 0 := by
69 unfold b0_qcd
70 norm_num
71
72/-- **CRITICAL FLAVOR NUMBER**: n_f < 16.5 for asymptotic freedom. -/
73theorem critical_flavor_number : b0_qcd 16 > 0 ∧ b0_qcd 17 ≤ 0 := by
74 constructor