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

xiMap_div_reflection

proved
show as:
view math explainer →
module
IndisputableMonolith.NumberTheory.XiJBridge
domain
NumberTheory
line
138 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.NumberTheory.XiJBridge on GitHub at line 138.

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

 135  exact mul_inv_cancel₀ (xiMap_ne_zero σ)
 136
 137/-- The quotient of defect coordinates for reflected points squares. -/
 138theorem xiMap_div_reflection (σ : ℝ) : xiMap σ / xiMap (1 - σ) = (xiMap σ) ^ 2 := by
 139  rw [xiMap_reflection]
 140  have hx : xiMap σ ≠ 0 := xiMap_ne_zero σ
 141  field_simp
 142
 143/-! ## §5. Self-composition for paired zeros -/
 144
 145/-- **Self-composition formula for functional-equation pairs.**
 146
 147    For a paired zero (ρ, 1−ρ) with defect coordinate x = xiMap(σ):
 148
 149      J(x²) = 2·J(x)² + 4·J(x)
 150
 151    This is the "amplification equation": the composition defect of a
 152    functional-equation pair grows quadratically in the individual defect.
 153
 154    Proof: substitute x₁=x, x₂=1/x into the RCL. Then x₁·x₂=1 (J=0)
 155    and x₁/x₂=x², giving J(x²) = 2J(x)²+4J(x) since J(x)=J(1/x). -/
 156theorem paired_zero_composition (σ : ℝ) :
 157    Jcost ((xiMap σ) ^ 2) =
 158    2 * (Jcost (xiMap σ)) ^ 2 + 4 * Jcost (xiMap σ) := by
 159  have hx : xiMap σ ≠ 0 := xiMap_ne_zero σ
 160  have hx2 : (xiMap σ) ^ 2 ≠ 0 := pow_ne_zero 2 hx
 161  simp only [Jcost]
 162  field_simp
 163  ring
 164
 165/-- Self-composition in cosh form: the double-angle identity.
 166    cosh(4η) − 1 = 2·(cosh(2η) − 1)² + 4·(cosh(2η) − 1).
 167
 168    This follows from the cosh double-angle formula cosh(2t) = 2cosh²(t)−1,