Skip to main content
AlexKontorovich/PrimeNumberTheoremAnd
Source indexedlemma · leanprover/lean4:v4.32.0

smoothedChebyshevIntegrand_conj

PrimeNumberTheoremAnd.MediumPNT · PrimeNumberTheoremAnd/MediumPNT.lean:102 to 123

Mathematical statement

Exact Lean statement

lemma smoothedChebyshevIntegrand_conj
    {SmoothingF : ℝ → ℝ} {ε X : ℝ} (Xpos : 0 < X) (s : ℂ) :
    SmoothedChebyshevIntegrand SmoothingF ε X (conj s) =
      conj (SmoothedChebyshevIntegrand SmoothingF ε X s)

Complete declaration

Lean source

Canonical source
Full Lean sourceLean 4
lemma smoothedChebyshevIntegrand_conj    {SmoothingF :   } {ε X : } (Xpos : 0 < X) (s : ℂ) :    SmoothedChebyshevIntegrand SmoothingF ε X (conj s) =      conj (SmoothedChebyshevIntegrand SmoothingF ε X s) := by  unfold SmoothedChebyshevIntegrand  simp only [map_mul, map_div₀, map_neg]  congr  · exact deriv_riemannZeta_conj s  · exact riemannZeta_conj s  · unfold mellin    rw[ integral_conj]    apply MeasureTheory.setIntegral_congr_fun measurableSet_Ioi    intro x xpos    simp only [smul_eq_mul, map_mul, Complex.conj_ofReal]    congr    nth_rw 1 [ map_one conj]    rw[ map_sub, Complex.cpow_conj, Complex.conj_ofReal]    rw[Complex.arg_ofReal_of_nonneg xpos.le]    exact Real.pi_ne_zero.symm  · rw[Complex.cpow_conj, Complex.conj_ofReal]    rw[Complex.arg_ofReal_of_nonneg Xpos.le]    exact Real.pi_ne_zero.symm