All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Sin div error pointwise bound

sin_div_error_pointwise_bound

Plain-language statement

Pointwise bound on the sin-div windowed error term: scaling by the normalized sinc kernel and a mean-value estimate on g (x - u) - g x gives a bound D / π that is independent of the height T.

Exact Lean statement

theorem sin_div_error_pointwise_bound
    {g : ℝ → ℂ} {D x T u : ℝ}
    (hD : 0 ≤ D) (hgdiff : Differentiable ℝ g)
    (hderiv : ∀ y : ℝ, ‖deriv g y‖ ≤ D) :
    ‖(if u = 0 then (0 : ℂ) else (Real.sin (T * u) / (Real.pi * u) : ℂ)) •
        (g (x - u) - g x)‖ ≤ D / Real.pi

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem sin_div_error_pointwise_bound    {g :   ℂ} {D x T u : }    (hD : 0  D) (hgdiff : Differentiable  g)    (hderiv :  y : , ‖deriv g y‖  D) :    ‖(if u = 0 then (0 : ℂ) else (Real.sin (T * u) / (Real.pi * u) : ℂ)) •        (g (x - u) - g x)‖  D / Real.pi := by  by_cases hu : u = 0  · simp [hu, div_nonneg hD Real.pi_pos.le]  · rw [if_neg hu, norm_smul]    have hscalar :        ‖(Real.sin (T * u) / (Real.pi * u) : ℂ)‖  1 / (Real.pi * |u|) := by      rw [norm_div, norm_mul, Complex.norm_real, Complex.norm_real, Complex.norm_real]      simp only [Real.norm_eq_abs]      rw [abs_of_pos Real.pi_pos]      have hsin : |Real.sin (T * u)|  1 := Real.abs_sin_le_one _      exact div_le_div_of_nonneg_right hsin        (mul_nonneg Real.pi_pos.le (abs_nonneg u))    have hdiff : ‖g (x - u) - g x‖  D * |u| := by      have hmv :=        (convex_univ : Convex  (Set.univ : Set )).norm_image_sub_le_of_norm_deriv_le          (f := g) (C := D)          (fun y _hy => hgdiff y)          (fun y _hy => hderiv y)          (x := x) (y := x - u) (by simp) (by simp)      have hnorm : ‖(x - u) - x‖ = |u| := by        rw [Real.norm_eq_abs]        have hsub : (x - u) - x = -u := by ring        rw [hsub, abs_neg]      simpa [hnorm] using hmv    have hupper_nonneg : 0  1 / (Real.pi * |u|) := by positivity    calc      ‖(Real.sin (T * u) / (Real.pi * u) : ℂ)‖ * ‖g (x - u) - g x‖           (1 / (Real.pi * |u|)) * (D * |u|) := by            exact mul_le_mul hscalar hdiff (norm_nonneg _) hupper_nonneg      _ = D / Real.pi := by            field_simp [Real.pi_ne_zero, abs_pos.mpr hu]
Project
Prime Number Theorem and More
License
Apache-2.0
Commit
a93551347dce
Source
PrimeNumberTheoremAnd/SincKernelErrorBounds.lean:21-56

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