on the right half-plane
ProvedZeta23.WeilEF.logDeriv_GammaRcomplex-analysiszeta23
Let be the Archimedean Gamma factor, , and the digamma function (Mathlib's Complex.digamma).
For every with ,
This follows from logarithmic differentiation of the product : the exponential factor contributes and the Gamma factor contributes by the chain rule.
This closed form is the workhorse for all Archimedean estimates in the Weil explicit-formula development: it feeds the continuity lemma continuous_logDeriv_GammaR_line, the critical-line bracket gammaR_bracket, the vanishing of horizontal pieces horizontal_vanish, the integrability lemma integrable_mul_logDeriv_GammaR_of_decay, and the norm bound norm_logDeriv_GammaR_le.
Preamble
import Mathlib.Algebra.BigOperators.Finprod import Mathlib.Analysis.CStarAlgebra.Classes import Mathlib.Analysis.Calculus.Deriv.Star import Mathlib.Analysis.Calculus.LogDerivUniformlyOn import Mathlib.Analysis.Complex.Basic import Mathlib.Analysis.Complex.CauchyIntegral import Mathlib.Analysis.Complex.IntegerCompl import Mathlib.Analysis.Normed.Module.MultipliableUniformlyOn import Mathlib.Analysis.PSeries import Mathlib.Analysis.SpecialFunctions.Gamma.Beta import Mathlib.Analysis.SpecialFunctions.Gamma.Deligne import Mathlib.Analysis.SpecialFunctions.Gamma.Digamma import Mathlib.Analysis.SpecialFunctions.Pow.Complex import Mathlib.Data.Matrix.Basic import Mathlib.Data.Set.Card import Mathlib.MeasureTheory.Integral.Bochner.Basic import Mathlib.MeasureTheory.Measure.Lebesgue.Basic import Mathlib.NumberTheory.ArithmeticFunction.VonMangoldt import Mathlib.NumberTheory.Harmonic.EulerMascheroni open Complex
Formal statement
theorem Zeta23.WeilEF.logDeriv_GammaR {s : ℂ} (hs : 0 < s.re) :
logDeriv Complex.Gammaℝ s = -((Real.log Real.pi : ℝ) : ℂ) / 2 + (1 / 2) * Complex.digamma (s / 2) := by sorry
Source