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

Z_lepton_eq

proved
show as:
view math explainer →
module
IndisputableMonolith.RSBridge.ZMapDerivation
domain
RSBridge
line
81 · github
papers citing
none yet

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.RSBridge.ZMapDerivation on GitHub at line 81.

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

  78/-! ## The Derivation: Z_ℓ = 1332 -/
  79
  80/-- Z_poly with (a,b) = (1,1) at Q̃ = -6 gives 1332. -/
  81theorem Z_lepton_eq : Z_poly 1 1 (-6) = 1332 := by native_decide
  82
  83/-- Decomposition: 36 + 1296 = 1332. -/
  84theorem Z_lepton_decomposition :
  85    (1 : ℤ) * (-6) ^ 2 = 36 ∧
  86    (1 : ℤ) * (-6) ^ 4 = 1296 ∧
  87    (36 : ℤ) + 1296 = 1332 := by
  88  refine ⟨by norm_num, by norm_num, by norm_num⟩
  89
  90/-- Consistency: the derived Z equals 1332, matching Anchor.lean's hardcoded value. -/
  91theorem Z_lepton_matches_anchor_value :
  92    Z_poly 1 1 Q_tilde_e = 1332 := by
  93  simp [Z_poly, Q_tilde_e, integerization_scale_eq]
  94
  95/-- The hardcoded ZOf for the electron is 1332. -/
  96theorem anchor_electron_Z : RSBridge.ZOf .e = 1332 := rfl
  97
  98/-- All three leptons share the same charge index. -/
  99theorem leptons_same_Z :
 100    RSBridge.ZOf .e = RSBridge.ZOf .mu ∧
 101    RSBridge.ZOf .mu = RSBridge.ZOf .tau := by
 102  exact ⟨rfl, rfl⟩
 103
 104/-! ## Z is strictly increasing (for hierarchy ordering) -/
 105
 106theorem Z_poly_strictly_increasing (a b : ℕ) (ha : 1 ≤ a) (hb : 1 ≤ b)
 107    (q₁ q₂ : ℕ) (hq : q₂ < q₁) (_hq₂ : 0 < q₂) :
 108    Z_poly a b q₂ < Z_poly a b q₁ := by
 109  unfold Z_poly
 110  have h2 : (q₂ : ℤ) ^ 2 < (q₁ : ℤ) ^ 2 := by
 111    exact_mod_cast Nat.pow_lt_pow_left hq (by omega)