Documentation

Mathlib.Analysis.SpecialFunctions.Gaussian.FourierTransform

Fourier transform of the Gaussian #

We prove that the Fourier transform of the Gaussian function is another Gaussian:

We also give versions of these formulas in finite-dimensional inner product spaces, see integral_cexp_neg_mul_sq_norm_add and fourierIntegral_gaussian_innerProductSpace.

Fourier integral of Gaussian functions #

The integral of the Gaussian function over the vertical edges of a rectangle with vertices at (±T, 0) and (±T, c).

Equations
Instances For

    Explicit formula for the norm of the Gaussian function along the vertical edges.

    theorem integral_cexp_quadratic {b : } (hb : b.re < 0) (c d : ) :
    (x : ), Complex.exp (b * x ^ 2 + c * x + d) = (Real.pi / -b) ^ (1 / 2) * Complex.exp (d - c ^ 2 / (4 * b))
    theorem fourierIntegral_gaussian {b : } (hb : 0 < b.re) (t : ) :
    theorem fourierIntegral_gaussian_pi' {b : } (hb : 0 < b.re) (c : ) :
    (Real.fourierIntegral fun (x : ) => Complex.exp (-Real.pi * b * x ^ 2 + 2 * Real.pi * c * x)) = fun (t : ) => 1 / b ^ (1 / 2) * Complex.exp (-Real.pi / b * (t + Complex.I * c) ^ 2)
    theorem fourierIntegral_gaussian_pi {b : } (hb : 0 < b.re) :
    (Real.fourierIntegral fun (x : ) => Complex.exp (-Real.pi * b * x ^ 2)) = fun (t : ) => 1 / b ^ (1 / 2) * Complex.exp (-Real.pi / b * t ^ 2)
    theorem GaussianFourier.integrable_cexp_neg_sum_mul_add {ι : Type u_2} [Fintype ι] {b : ι} (hb : ∀ (i : ι), 0 < (b i).re) (c : ι) :
    MeasureTheory.Integrable (fun (v : ι) => Complex.exp (-i : ι, b i * (v i) ^ 2 + i : ι, c i * (v i))) MeasureTheory.volume
    theorem GaussianFourier.integrable_cexp_neg_mul_sum_add {b : } {ι : Type u_2} [Fintype ι] (hb : 0 < b.re) (c : ι) :
    MeasureTheory.Integrable (fun (v : ι) => Complex.exp (-b * i : ι, (v i) ^ 2 + i : ι, c i * (v i))) MeasureTheory.volume

    In a real inner product space, the complex exponential of minus the square of the norm plus a scalar product is integrable. Useful when discussing the Fourier transform of a Gaussian.

    theorem GaussianFourier.integral_cexp_neg_sum_mul_add {ι : Type u_2} [Fintype ι] {b : ι} (hb : ∀ (i : ι), 0 < (b i).re) (c : ι) :
    (v : ι), Complex.exp (-i : ι, b i * (v i) ^ 2 + i : ι, c i * (v i)) = i : ι, (Real.pi / b i) ^ (1 / 2) * Complex.exp (c i ^ 2 / (4 * b i))
    theorem GaussianFourier.integral_cexp_neg_mul_sum_add {b : } {ι : Type u_2} [Fintype ι] (hb : 0 < b.re) (c : ι) :
    (v : ι), Complex.exp (-b * i : ι, (v i) ^ 2 + i : ι, c i * (v i)) = (Real.pi / b) ^ ((Fintype.card ι) / 2) * Complex.exp ((∑ i : ι, c i ^ 2) / (4 * b))