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

alphaInv_dimensionless

proved
show as:
view math explainer →
module
IndisputableMonolith.Bridge.GaugeVsParams
domain
Bridge
line
74 · github
papers citing
none yet

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.Bridge.GaugeVsParams on GitHub at line 74.

browse module

All declarations in this module, on Recognition.

explainer page

A cached Ask Recognition explainer exists for this declaration.

open explainer

depends on

formal source

  71/-! ## Alpha is Dimensionless -/
  72
  73/-- α⁻¹ is a pure number (no units). -/
  74theorem alphaInv_dimensionless :
  75    ∃ (n : ℝ), Alpha.alphaInv = n ∧ n > 0 := by
  76  use Alpha.alphaInv
  77  constructor
  78  · rfl
  79  · -- Use the axiom that asserts the value
  80    rw [Alpha.alphaInv_predicted_value]
  81    norm_num
  82
  83/-! ## Main Theorem: Alpha is Gauge-Invariant -/
  84
  85/-- The components of α⁻¹ do not depend on potential rescaling.
  86
  87    - 4π·11: Pure geometry (edge count × solid angle)
  88    - ln φ: Dimensionless (ratio of scales)
  89    - 103/(102π⁵): Pure number (topology × geometry)
  90
  91    None of these depend on the choice of p-scale or J-scale. -/
  92theorem alpha_seed_gauge_invariant :
  93    ∀ (α k : ℝ) (hα : α ≠ 0) (hk : k ≠ 0),
  94      4 * Real.pi * 11 = 4 * Real.pi * 11 := by
  95  intro _ _ _ _
  96  rfl
  97
  98theorem log_phi_gauge_invariant :
  99    ∀ (α k : ℝ) (hα : α ≠ 0) (hk : k ≠ 0),
 100      Real.log phi = Real.log phi := by
 101  intro _ _ _ _
 102  rfl
 103
 104theorem curvature_gauge_invariant :