Plain-language statement
For a continuously differentiable smoothing function supported in and normalized by , the Mellin factor of the smoothed cutoff at is . Precisely, there is a constant such that, for every sufficiently small and every ,
Exact Lean statement
@[blueprint
(title := "ZetaBoxEval")
(statement := /--
For all $\epsilon > 0$ sufficiently close to $0$, the rectangle integral over $[1-\delta,2] \times_{ℂ} [-T,T]$ of the integrand in
$\psi_{\epsilon}$ is
$$
\frac{X^{1}}{1}\mathcal{M}(\widetilde{1_{\epsilon}})(1)
= X(1+O(\epsilon))
,$$
where the implicit constant is independent of $X$.
-/)
(proof := /-- Unfold the definitions and apply Lemma \ref{MellinOfSmooth1c}. -/)]
theorem ZetaBoxEval {SmoothingF : ℝ → ℝ}
(suppSmoothingF : Function.support SmoothingF ⊆ Icc (1 / 2) 2)
(mass_one : ∫ x in Ioi 0, SmoothingF x / x = 1)
(ContDiffSmoothingF : ContDiff ℝ 1 SmoothingF) :
∃ C, ∀ᶠ ε in (nhdsWithin 0 (Ioi 0)), ∀ X : ℝ, 0 ≤ X →
‖𝓜 (fun x ↦ (Smooth1 SmoothingF ε x : ℂ)) 1 * X - X‖ ≤ C * ε * XFormal artifact
Lean source
@[blueprint (title := "ZetaBoxEval") (statement := /-- For all $\epsilon > 0$ sufficiently close to $0$, the rectangle integral over $[1-\delta,2] \times_{ℂ} [-T,T]$ of the integrand in $\psi_{\epsilon}$ is $$ \frac{X^{1}}{1}\mathcal{M}(\widetilde{1_{\epsilon}})(1) = X(1+O(\epsilon)) ,$$ where the implicit constant is independent of $X$. -/) (proof := /-- Unfold the definitions and apply Lemma \ref{MellinOfSmooth1c}. -/)]theorem ZetaBoxEval {SmoothingF : ℝ → ℝ} (suppSmoothingF : Function.support SmoothingF ⊆ Icc (1 / 2) 2) (mass_one : ∫ x in Ioi 0, SmoothingF x / x = 1) (ContDiffSmoothingF : ContDiff ℝ 1 SmoothingF) : ∃ C, ∀ᶠ ε in (nhdsWithin 0 (Ioi 0)), ∀ X : ℝ, 0 ≤ X → ‖𝓜 (fun x ↦ (Smooth1 SmoothingF ε x : ℂ)) 1 * X - X‖ ≤ C * ε * X := by have := MellinOfSmooth1c ContDiffSmoothingF suppSmoothingF mass_one clear suppSmoothingF mass_one ContDiffSmoothingF rw[Asymptotics.isBigO_iff] at this obtain ⟨C, hC⟩ := this use C have εpos : ∀ᶠ (ε : ℝ) in nhdsWithin 0 (Ioi 0), ε > 0 := eventually_mem_of_tendsto_nhdsWithin fun ⦃U⦄ hU ↦ hU filter_upwards [hC, εpos] with ε hC εpos rw[id_eq, norm_of_nonneg (le_of_lt εpos)] at hC intro X Xnne nth_rw 2 [← one_mul (X : ℂ)] rw[← sub_mul, norm_mul, norm_real, norm_of_nonneg Xnne] exact mul_le_mul_of_nonneg_right hC Xnne- Project
- Prime Number Theorem and More
- License
- Apache-2.0
- Commit
- a93551347dce
- Source
- PrimeNumberTheoremAnd/MediumPNT.lean:1569-1599
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.