Physlib

Physlib.Mathematics.InnerProductSpace.Gaussian

Gaussians in inner product spaces

i. Overview

In this module we define Gaussians as Schwartz maps in general inner product spaces.

The most general Gaussian constructed is `exp (-2⁻¹ * ‖B⁻¹ (x - x₀)‖ ^ 2)` (mean `x₀` and covariance `BᵀB`) as a Schwartz map `𝓢(E, 𝕜)`, where `B : D ≃L[ℝ] E` is a linear equivalence of inner product spaces. This is accomplished by first constructing the Gaussian `exp (-2⁻¹ * ‖x‖ ^ 2)` as a Schwartz map `𝓢(E, ℝ)` using explicit bounds on the derivatives of `‖x‖ ^ 2 = innerSL ℝ x x` and limiting properties of the real exponential, then composing with an invertible affine transformation.

The Gaussians are left unnormalized since the appropriate condition will depend on context and whether `E` is finite- or infinite-dimensional. For example, the normalization conditions when interpreted as a probability density function vs. as a quantum state require different pre-factors.

For some relevant Gaussian integrals see `Mathlib/Analysis/SpecialFunctions/Gaussian/FourierTransform`.

ii. Key results

- `gaussian 𝕜 B x₀` : Given a linear equivalence `B : D ≃L[ℝ] E` and mean `x₀ : E`, the Gaussian `exp (-2⁻¹ * ‖B⁻¹ (x - x₀)‖ ^ 2)` centered on `x₀` as a Schwartz map `𝓢(E, 𝕜)`. - `gaussian₀ 𝕜 B` : Given a linear equivalence `B : D ≃L[ℝ] E` of inner product spaces, the Gaussian `exp (-2⁻¹ * ‖B⁻¹ x‖ ^ 2)` centered on the origin as a Schwartz map `𝓢(E, 𝕜)`. - `stdGaussian E 𝕜` : The standard Gaussian `exp (-2⁻¹ * ‖x‖ ^ 2)` as a Schwartz map `𝓢(E, 𝕜)`.

iii. Table of contents

  • A. Standard, real-valued
  • B. General, RCLike-valued

iv. References

A. Standard, real-valued

B. General, RCLike-valued

5 declarations

definition

Standard real Gaussian exp(12x2)\exp\left(-\frac{1}{2} \|x\|^2\right)

Let EE be a real inner product space. The standard real-valued Gaussian is the Schwartz map fS(E,R)f \in \mathcal{S}(E, \mathbb{R}) defined by f(x)=exp(12x2)f(x) = \exp\left(-\frac{1}{2} \|x\|^2\right) for any xEx \in E, where x\|x\| denotes the norm induced by the inner product on EE.

definition

k\mathbb{k}-valued Gaussian exp(12B1(xx0)2)\exp\left(-\frac{1}{2} \|B^{-1}(x - x_0)\|^2\right) as a Schwartz map

Let EE and DD be real inner product spaces, and let k\mathbb{k} be a field (typically R\mathbb{R} or C\mathbb{C}). Given a continuous linear equivalence B:DEB : D \cong E and a vector x0Ex_0 \in E (representing the mean), the Gaussian is the (unnormalized) Schwartz map gS(E,k)g \in \mathcal{S}(E, \mathbb{k}) defined by g(x)=exp(12B1(xx0)2)g(x) = \exp\left(-\frac{1}{2} \|B^{-1}(x - x_0)\|^2\right) for all xEx \in E, where the norm \|\cdot\| is the norm on DD induced by its inner product.

theorem

Evaluation of the Gaussian exp(12B1(xx0)2)\exp\left(-\frac{1}{2} \|B^{-1}(x - x_0)\|^2\right) at xx

Let EE and DD be real inner product spaces, and let k\mathbb{k} be an RCLike\text{RCLike} field (such as R\mathbb{R} or C\mathbb{C}). For a continuous linear equivalence B:DEB : D \cong E, a vector x0Ex_0 \in E representing the mean, and any point xEx \in E, the value of the Gaussian Schwartz map g=gaussian(k,B,x0)g = \text{gaussian}(\mathbb{k}, B, x_0) at xx is given by g(x)=exp(12B1(xx0)2),g(x) = \exp\left(-\frac{1}{2} \|B^{-1}(x - x_0)\|^2\right), where the norm \|\cdot\| is the norm on DD induced by its inner product, exp\exp is the real exponential function, and the result is implicitly cast from R\mathbb{R} to k\mathbb{k}.

abbrev

k\mathbb{k}-valued Gaussian exp(12B1x2)\exp\left(-\frac{1}{2} \|B^{-1}x\|^2\right) as a Schwartz map

Let EE and DD be real inner product spaces and k\mathbb{k} be a field (typically R\mathbb{R} or C\mathbb{C}). Given a continuous linear equivalence B:DEB : D \cong E, the Gaussian centered at the origin is the unnormalized Schwartz map gS(E,k)g \in \mathcal{S}(E, \mathbb{k}) defined by g(x)=exp(12B1x2)g(x) = \exp\left(-\frac{1}{2} \|B^{-1}x\|^2\right) for all xEx \in E, where \| \cdot \| is the norm on DD induced by its inner product.

abbrev

Standard Gaussian exp(12x2)\exp\left(-\frac{1}{2} \|x\|^2\right) as a Schwartz map

Let EE be a real inner product space and k\mathbb{k} be an RCLike\text{RCLike} field (typically R\mathbb{R} or C\mathbb{C}). The standard Gaussian is the unnormalized Schwartz map gS(E,k)g \in \mathcal{S}(E, \mathbb{k}) defined by g(x)=exp(12x2)g(x) = \exp\left(-\frac{1}{2} \|x\|^2\right) for all xEx \in E, where \| \cdot \| is the norm on EE induced by its inner product. This corresponds to the case where the covariance transformation is the identity map.