All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Zeta Surrogate zeros in closed Ball₀ count

Backlund.zetaSurrogate_zeros_in_closedBall₀_count

Plain-language statement

Let Z(s)Z(s) be the project's entire zeta surrogate, obtained by removing the pole of ζ(s)\zeta(s) at s=1s=1. There is a constant C>0C>0 such that, for every R1R\ge1, the total multiplicity of the zeros of ZZ in sR|s|\le R is bounded by C(1+R)3/2.C(1+R)^{3/2}.

Exact Lean statement

lemma zetaSurrogate_zeros_in_closedBall₀_count :
    ∃ C' : ℝ, 0 < C' ∧
      ∀ R : ℝ, 1 ≤ R →
        Complex.Hadamard.divisorMassClosedBall₀ zetaSurrogate R ≤
          C' * (1 + R) ^ (3/2 : ℝ)

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma zetaSurrogate_zeros_in_closedBall₀_count :     C' : , 0 < C'        R : , 1  R         Complex.Hadamard.divisorMassClosedBall₀ zetaSurrogate R           C' * (1 + R) ^ (3/2 : ) := by  obtain C, hC0, hC := zetaSurrogate_log_growth  set K :  := |Real.log ‖meromorphicTrailingCoeffAt zetaSurrogate 0‖| with hK  refine (C * 2 ^ (3/2 : ) + K) / Real.log 2, ?_, ?_  · refine div_pos ?_ (Real.log_pos one_lt_two)    have h2 : (0 : ) < 2 ^ (3/2 : ) := Real.rpow_pos_of_pos two_pos _    have hKnn : (0 : )  K := abs_nonneg _    nlinarith [mul_pos hC0 h2]  · intro R hR    have hmass := Complex.Hadamard.divisorMassClosedBall₀_le_of_growth      zetaSurrogate_differentiable hC hR    refine hmass.trans ?_    rw [div_mul_eq_mul_div, div_eq_mul_inv, div_eq_mul_inv]    refine mul_le_mul_of_nonneg_right ?_ (inv_nonneg.mpr (Real.log_nonneg one_le_two))    have habs : |2 * R| = 2 * R := abs_of_nonneg (by linarith)    rw [habs]    have h1R : (0 : )  1 + R := by linarith    have hone : (1 : )  (1 + R) ^ (3/2 : ) := by      calc (1 : ) = (1 : ) ^ (3/2 : ) := (Real.one_rpow _).symm        _  (1 + R) ^ (3/2 : ) :=          Real.rpow_le_rpow zero_le_one (by linarith) (by norm_num)    have hpow : (1 + 2 * R) ^ (3/2 : )  2 ^ (3/2 : ) * (1 + R) ^ (3/2 : ) := by      rw [ Real.mul_rpow (by norm_num) h1R]      exact Real.rpow_le_rpow (by linarith) (by linarith) (by norm_num)    have hKnn : (0 : )  K := abs_nonneg _    calc C * (1 + 2 * R) ^ (3/2 : ) + K         C * (2 ^ (3/2 : ) * (1 + R) ^ (3/2 : )) + K * (1 + R) ^ (3/2 : ) :=          add_le_add (mul_le_mul_of_nonneg_left hpow hC0.le)            (le_mul_of_one_le_right hKnn hone)      _ = (C * 2 ^ (3/2 : ) + K) * (1 + R) ^ (3/2 : ) := by ring
Project
Prime Number Theorem and More
License
Apache-2.0
Commit
a93551347dce
Source
PrimeNumberTheoremAnd/Backlund/ZeroCountCrude.lean:856-889

Reuse this declaration

Bring the exact result into your workflow

The import identifies the source module. Your project still needs the pinned package dependency shown on this page.

What this badge means

This completion status comes from the project or community source. It has not yet been represented here as an independent rebuild and axiom audit.

Continue in this project

Related declarations

Project-declaredLean 4.32.0

Admissible bound mono

admissible_bound.mono

Plain-language statement

For positive parameters A,B,C,RA,B,C,R, the classical error-bound function A(logxR)Bexp ⁣(ClogxR)A\left(\frac{\log x}{R}\right)^B\exp\!\left(-C\sqrt{\frac{\log x}{R}}\right) is nonincreasing once xexp ⁣(R(2B/C)2)x\ge \exp\!\left(R(2B/C)^2\right).

analytic number theoryprime numbersasymptotics

Source project: Prime Number Theorem and More

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0

Analytic On div Removable zero

AnalyticOn_divRemovable_zero

Plain-language statement

Let ff be analytic on an open set ss containing 00, and suppose f(0)=0f(0)=0. Define g(z)=f(z)/zg(z)=f(z)/z for z0z\ne0 and g(0)=f(0)g(0)=f'(0). Then the apparent singularity at 00 is removable and gg is analytic throughout ss.

analytic number theoryprime numbersasymptotics

Source project: Prime Number Theorem and More

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0

Analytic On div Removable zero closed Ball

AnalyticOn_divRemovable_zero_closedBall

Plain-language statement

Suppose R>0R>0 and ff is analytic on the closed disc zR|z|\le R with f(0)=0f(0)=0. Define g(z)=f(z)/zg(z)=f(z)/z for z0z\ne0 and g(0)=f(0)g(0)=f'(0). Then gg is analytic on the entire closed disc, including at the removed singularity.

analytic number theoryprime numbersasymptotics

Source project: Prime Number Theorem and More

Person-level attribution pending.

View proof record