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

Z_poly_zero

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

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.RSBridge.ZMapDerivation on GitHub at line 63.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

depends on

formal source

  60  unfold Z_poly; ring
  61
  62/-- Z vanishes at neutral: Z(0) = 0. -/
  63theorem Z_poly_zero (a b : ℕ) : Z_poly a b 0 = 0 := by
  64  unfold Z_poly; ring
  65
  66/-! ## Coefficient Minimality -/
  67
  68/-- The minimal choice: both terms present, minimum a + b. -/
  69theorem minimal_coefficients :
  70    ∀ a b : ℕ, 1 ≤ a → 1 ≤ b → 2 ≤ a + b :=
  71  fun _ _ ha hb => by omega
  72
  73/-- (1,1) achieves the minimum. -/
  74theorem unit_coefficients_minimal :
  75    ∀ a b : ℕ, 1 ≤ a → 1 ≤ b → 1 + 1 ≤ a + b :=
  76  fun _ _ ha hb => by omega
  77
  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]