All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Norm sin div kernel tail le integral norm

norm_sin_div_kernel_tail_le_integral_norm

Plain-language statement

Let ff be integrable, R>0R>0, and KT(u)=sin(Tu)/(πu)K_T(u)=\sin(Tu)/(\pi u) for u0u\ne0, with the project's value KT(0)=0K_T(0)=0. Removing the part of the convolution outside [R,R][-R,R] incurs at most RKT(u)f(xu)duRRKT(u)f(xu)du1πRRf(u)du.\left\|\int_{\mathbb R}K_T(u)f(x-u)\,du-\int_{-R}^{R}K_T(u)f(x-u)\,du\right\|\le\frac{1}{\pi R}\int_{\mathbb R}\|f(u)\|\,du. The estimate is uniform in xx and TT.

Exact Lean statement

theorem norm_sin_div_kernel_tail_le_integral_norm
    {f : ℝ → E} (hf : Integrable f) (x T : ℝ) {R : ℝ} (hR : 0 < R) :
    ‖(∫ u : ℝ,
        (if u = 0 then (0 : ℂ) else (Real.sin (T * u) / (π * u) : ℂ)) •
          f (x - u)) -
        ∫ u in (-R)..R,
          (if u = 0 then (0 : ℂ) else (Real.sin (T * u) / (π * u) : ℂ)) •
            f (x - u)‖ ≤
      (1 / (π * R)) * ∫ u : ℝ, ‖f u‖

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem norm_sin_div_kernel_tail_le_integral_norm    {f :   E} (hf : Integrable f) (x T : ) {R : } (hR : 0 < R) :    ‖(∫ u : ,        (if u = 0 then (0 : ℂ) else (Real.sin (T * u) /* u) : ℂ)) •          f (x - u)) -        ∫ u in (-R)..R,          (if u = 0 then (0 : ℂ) else (Real.sin (T * u) /* u) : ℂ)) •            f (x - u)‖       (1 /* R)) * ∫ u : , ‖f u‖ := by  let k :   E := fun u =>    (if u = 0 then (0 : ℂ) else (Real.sin (T * u) /* u) : ℂ)) • f (x - u)  have hk : Integrable k :=    integrable_sin_div_kernel_smul_of_integrable (E := E) hf x T  have hle : -R  R := by linarith  have htail_eq :      (∫ u : ,          (if u = 0 then (0 : ℂ) else (Real.sin (T * u) /* u) : ℂ)) •            f (x - u)) -          ∫ u in (-R)..R,            (if u = 0 then (0 : ℂ) else (Real.sin (T * u) /* u) : ℂ)) •              f (x - u) =        ∫ u in (Set.Ioc (-R) R)ᶜ, k u := by    rw [intervalIntegral.integral_of_le hle]    have hdecomp := integral_add_compl (s := Set.Ioc (-R) R) measurableSet_Ioc hk    dsimp [k] at hdecomp    rw [ hdecomp]    abel  rw [htail_eq]  let C :  := 1 /* R)  have hC_nonneg : 0  C := by    dsimp [C]    positivity  have hfx : Integrable (fun u :  => f (x - u)) := hf.comp_sub_left x  have hbound_int : Integrable (fun u :  => C * ‖f (x - u)‖) :=    hfx.norm.const_mul C  have hmono : ᵐ u ∂(volume.restrict (Set.Ioc (-R) R)ᶜ),      ‖k u‖  C * ‖f (x - u)‖ := by    filter_upwards [MeasureTheory.self_mem_ae_restrict measurableSet_Ioc.compl] with u hucomp    dsimp [k, C]    have hu_not : u  Set.Ioc (-R) R := by simpa using hucomp    have hR_abs : R  |u| := le_abs_of_notMem_Ioc_neg_pos hR hu_not    have hu_ne : u  0 := by      intro h0      apply hu_not      have hzmem : (0 : )  Set.Ioc (-R) R := by linarith, hR.le      simpa [h0] using hzmem    rw [if_neg hu_ne, norm_smul]    have hscalar : ‖(Real.sin (T * u) /* u) : ℂ)‖  C := by      dsimp [C]      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 (T * u)      have hden : π * R  π * |u| :=        mul_le_mul_of_nonneg_left hR_abs Real.pi_pos.le      have hden_pos : 0 < π * R := mul_pos Real.pi_pos hR      calc        |Real.sin (T * u)| /* |u|)  1 /* |u|) := by          exact div_le_div_of_nonneg_right hsin            (mul_nonneg Real.pi_pos.le (abs_nonneg u))        _  1 /* R) := by          simpa [one_div] using inv_anti₀ hden_pos hden    exact mul_le_mul hscalar le_rfl (norm_nonneg _) hC_nonneg  have hnorm_le : ‖∫ u in (Set.Ioc (-R) R)ᶜ, k u‖       ∫ u in (Set.Ioc (-R) R)ᶜ, C * ‖f (x - u)‖ := by    calc      ‖∫ u in (Set.Ioc (-R) R)ᶜ, k u‖           ∫ u in (Set.Ioc (-R) R)ᶜ, ‖k u‖ := norm_integral_le_integral_norm _      _  ∫ u in (Set.Ioc (-R) R)ᶜ, C * ‖f (x - u)‖ := by        exact integral_mono_ae (hk.norm.mono_measure Measure.restrict_le_self)          (hbound_int.mono_measure Measure.restrict_le_self) hmono  have hset_le : (∫ u in (Set.Ioc (-R) R)ᶜ, C * ‖f (x - u)‖)       ∫ u : , C * ‖f (x - u)‖ := by    exact integral_mono_measure Measure.restrict_le_self      (Filter.Eventually.of_forall fun _u => mul_nonneg hC_nonneg (norm_nonneg _)) hbound_int  have htranslate : (∫ u : , C * ‖f (x - u)‖) = C * ∫ u : , ‖f u‖ := by    rw [integral_const_mul]    congr 1    calc      (∫ u : , ‖f (x - u)‖) = ∫ u : , ‖f (x + u)‖ := by        simpa [sub_eq_add_neg] using          integral_neg_eq_self (f := fun u :  => ‖f (x + u)‖) (μ := volume)      _ = ∫ u : , ‖f u‖ := by        simpa using integral_add_left_eq_self (μ := volume) (fun u :  => ‖f u‖) x  exact hnorm_le.trans (hset_le.trans_eq htranslate)
Project
Prime Number Theorem and More
License
Apache-2.0
Commit
a93551347dce
Source
PrimeNumberTheoremAnd/LaplaceInversion.lean:807-891

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