Sin div error interval bound
sin_div_error_interval_bound
Plain-language statement
Interval form of sin_div_error_pointwise_bound: integrating the pointwise bound over [-1, 1] controls the windowed error integral by (D / π) · vol (Ioc (-1) 1).
Exact Lean statement
theorem sin_div_error_interval_bound
{g : ℝ → ℂ} {D x T : ℝ}
(hD : 0 ≤ D) (hgdiff : Differentiable ℝ g)
(hderiv : ∀ y : ℝ, ‖deriv g y‖ ≤ D) :
‖∫ u in (-(1 : ℝ))..(1 : ℝ),
(if u = 0 then (0 : ℂ) else (Real.sin (T * u) / (Real.pi * u) : ℂ)) •
(g (x - u) - g x)‖ ≤
(D / Real.pi) * (volume.real (Set.Ioc (-(1 : ℝ)) (1 : ℝ)))Formal artifact
Lean source
theorem sin_div_error_interval_bound {g : ℝ → ℂ} {D x T : ℝ} (hD : 0 ≤ D) (hgdiff : Differentiable ℝ g) (hderiv : ∀ y : ℝ, ‖deriv g y‖ ≤ D) : ‖∫ u in (-(1 : ℝ))..(1 : ℝ), (if u = 0 then (0 : ℂ) else (Real.sin (T * u) / (Real.pi * u) : ℂ)) • (g (x - u) - g x)‖ ≤ (D / Real.pi) * (volume.real (Set.Ioc (-(1 : ℝ)) (1 : ℝ))) := by rw [intervalIntegral.integral_of_le (by norm_num : (-(1 : ℝ)) ≤ 1)] refine norm_setIntegral_le_of_norm_le_const (μ := volume) (s := Set.Ioc (-(1 : ℝ)) (1 : ℝ)) ?_ ?_ · simp [Real.volume_Ioc] · intro u _hu exact sin_div_error_pointwise_bound (g := g) (D := D) (x := x) (T := T) (u := u) hD hgdiff hderiv- Project
- Prime Number Theorem and More
- License
- Apache-2.0
- Commit
- a93551347dce
- Source
- PrimeNumberTheoremAnd/SincKernelErrorBounds.lean:60-74
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
Admissible bound mono
admissible_bound.mono
Plain-language statement
For positive parameters , the classical error-bound function is nonincreasing once .
Source project: Prime Number Theorem and More
Person-level attribution pending.
Analytic On div Removable zero
AnalyticOn_divRemovable_zero
Plain-language statement
Let be analytic on an open set containing , and suppose . Define for and . Then the apparent singularity at is removable and is analytic throughout .
Source project: Prime Number Theorem and More
Person-level attribution pending.
Analytic On div Removable zero closed Ball
AnalyticOn_divRemovable_zero_closedBall
Plain-language statement
Suppose and is analytic on the closed disc with . Define for and . Then is analytic on the entire closed disc, including at the removed singularity.
Source project: Prime Number Theorem and More
Person-level attribution pending.