Exponential Decay Lemmas #
This file contains lemmas about exponential decay that are used in the RH criterion proof. These are standard results from real analysis about the behavior of exp(-x²) as x → ∞.
theorem
Frourio.exp_neg_sq_tendsto_zero
(c : ℝ)
(hc : 0 < c)
:
Filter.Tendsto (fun (n : ℕ) => Real.exp (-c * ↑n ^ 2)) Filter.atTop (nhds 0)
The key property: exp(-cx²) → 0 faster than any polynomial as x → ∞
theorem
Frourio.tendsto_comp
{α : Type u_1}
{β : Type u_2}
{γ : Type u_3}
{f : α → β}
{g : β → γ}
{x : Filter α}
{y : Filter β}
{z : Filter γ}
(hg : Filter.Tendsto g y z)
(hf : Filter.Tendsto f x y)
:
Filter.Tendsto (g ∘ f) x z
Alternative formulation controlling the reciprocal width parameter δ. For sufficiently small positive δ, the Gaussian tail becomes smaller than ε.