AlexKontorovich/PrimeNumberTheoremAnd
Source indexedtheorem · leanprover/lean4:v4.32.0
CH2.phi_star_affine_periodic
PrimeNumberTheoremAnd.IEANTN.CH2.CH2_part1 · PrimeNumberTheoremAnd/IEANTN/CH2/CH2_part1.lean:3611 to 3636
Mathematical statement
Exact Lean statement
@[blueprint
"phi_star-affine-periodic"
(title := "$\\Phi^{\\pm,\\ast}_\\nu$ affine periodic")
(statement := /-- For any integer $m$,
$$ \Phi^{\pm,\star}_{\nu}(z-m) = \Phi^{\pm,\star}_{\nu}(z) + m\, \Phi^{\pm,\circ}_{\nu}(z). $$
-/)
(proof := /-- Follows from previous lemma. -/)
(latexEnv := "sublemma")
(discussion := 1082)]
theorem phi_star_affine_periodic (ν ε : ℝ) (hν : ν > 0) (z : ℂ) (m : ℤ)
(hw : -2 * π * I * z + ν ≠ 0)
(hwm : -2 * π * I * (z - m) + ν ≠ 0) :
Phi_star ν ε (z - m) = Phi_star ν ε z + m * Phi_circ ν ε zComplete declaration
Lean source
Full Lean sourceLean 4
@[blueprint "phi_star-affine-periodic" (title := "$\\Phi^{\\pm,\\ast}_\\nu$ affine periodic") (statement := /-- For any integer $m$,$$ \Phi^{\pm,\star}_{\nu}(z-m) = \Phi^{\pm,\star}_{\nu}(z) + m\, \Phi^{\pm,\circ}_{\nu}(z). $$ -/) (proof := /-- Follows from previous lemma. -/) (latexEnv := "sublemma") (discussion := 1082)]theorem phi_star_affine_periodic (ν ε : ℝ) (hν : ν > 0) (z : ℂ) (m : ℤ) (hw : -2 * π * I * z + ν ≠ 0) (hwm : -2 * π * I * (z - m) + ν ≠ 0) : Phi_star ν ε (z - m) = Phi_star ν ε z + m * Phi_circ ν ε z := by have hB := B_affine_periodic ν ε hν z m hw hwm have h_sub : Phi_star ν ε (z - m) = (B ε (-2 * Real.pi * I * z + ν) + 2 * Real.pi * I * m * Phi_circ ν ε z - B ε ν) / (2 * Real.pi * I) := by rw [Phi_star, hB] have h_def : Phi_star ν ε z = (B ε (-2 * Real.pi * I * z + ν) - B ε ν) / (2 * Real.pi * I) := by simp [Phi_star] rw [h_sub, h_def] field_simp ring