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

alpha_s_positive

proved
show as:
view math explainer →
module
IndisputableMonolith.Constants.StrongCoupling
domain
Constants
line
40 · github
papers citing
none yet

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.Constants.StrongCoupling on GitHub at line 40.

browse module

All declarations in this module, on Recognition.

explainer page

A cached Ask Recognition explainer exists for this declaration.

open explainer

Derivations using this theorem

depends on

used by

formal source

  37
  38noncomputable def alpha_s_prediction : ℝ := phi ^ (-(3 : ℤ)) / Real.pi
  39
  40theorem alpha_s_positive : 0 < alpha_s_prediction := by
  41  unfold alpha_s_prediction
  42  exact div_pos (zpow_pos phi_pos _) Real.pi_pos
  43
  44/-! ## Structural Constraints
  45
  46The three gauge couplings at the recognition scale satisfy:
  47  1/α_EM + 1/α_weak + 1/α_s = cube_edges(D) × π
  48
  49This is the RS analog of gauge coupling unification. -/
  50
  51noncomputable def gauge_sum_prediction : ℝ :=
  52  (cube_edges 3 : ℝ) * Real.pi
  53
  54theorem gauge_sum_value : gauge_sum_prediction = 12 * Real.pi := by
  55  unfold gauge_sum_prediction cube_edges
  56  simp [D]
  57
  58theorem gauge_sum_bounds :
  59    (36 : ℝ) < gauge_sum_prediction ∧ gauge_sum_prediction < (48 : ℝ) := by
  60  rw [gauge_sum_value]
  61  constructor <;> nlinarith [Real.pi_gt_three, Real.pi_lt_four]
  62
  63/-! ## Certificate -/
  64
  65structure StrongCouplingCert where
  66  positive : 0 < alpha_s_prediction
  67  gauge_structure : gauge_sum_prediction = 12 * Real.pi
  68  gauge_bounded : (36 : ℝ) < gauge_sum_prediction ∧ gauge_sum_prediction < 48
  69
  70theorem strong_coupling_cert_exists : Nonempty StrongCouplingCert :=