InformationTheory.Shannon.FisherInfo.Gaussian
Fisher information — Gaussian discharge #
Discharges the IsRegularDensity predicate of FisherInfo/Basic.lean for the Gaussian
case: the smooth representative is the closed-form gaussianPDFReal m v, and the
differentiability, positivity, tail-vanishing, and integrability conditions are verified
from it.
Main definitions #
isRegularDensity_gaussianReal_of_law— theIsRegularDensityinstance for a Gaussian random variable.
Main statements #
pdf_toReal_ae_eq_gaussianPDFReal—(pdf X P volume).toReal =ᵐ gaussianPDFReal m v.differentiable_gaussianPDFReal/deriv_gaussianPDFReal/logDeriv_gaussianPDFReal— differentiation lemmas for the Gaussian PDF in closed form.tendsto_gaussianPDFReal_atBot/tendsto_gaussianPDFReal_atTop— tail vanishing.integrable_deriv_gaussianPDFReal/integral_deriv_gaussianPDFReal_eq_zero— the derivative is integrable and integrates to0.
The IsRegularDensity instance for Gaussian densities #
InformationTheory.Shannon.pdf_toReal_ae_eq_gaussianPDFReal
source(pdf X P volume).toReal =ᵐ[volume] gaussianPDFReal m v for a Gaussian X.
Bridges MeasureTheory.pdf_def → rnDeriv_gaussianReal → toReal_gaussianPDF.
Used by
InformationTheory.Shannon.differentiable_gaussianPDFReal
sourceDifferentiable ℝ (gaussianPDFReal m v) — the Gaussian pdf is smooth on all of ℝ.
Used by
InformationTheory.Shannon.deriv_gaussianPDFReal
sourcederiv (gaussianPDFReal m v) x = -(x - m)/v * gaussianPDFReal m v x.
Used by
InformationTheory.Shannon.tendsto_gaussianPDFReal_atBot
sourcegaussianPDFReal m v x → 0 as x → -∞.
Used by
InformationTheory.Shannon.tendsto_gaussianPDFReal_atTop
sourceUsed by
InformationTheory.Shannon.integrable_sub_mul_gaussianPDFReal
source(x - m) * gaussianPDFReal m v x is Lebesgue-integrable: this is the first
moment integrand (against Lebesgue), expressible via
integral_gaussianReal_eq_integral_smul.
Used by
InformationTheory.Shannon.integrable_deriv_gaussianPDFReal
sourcederiv (gaussianPDFReal m v) is Lebesgue-integrable.
Used by
InformationTheory.Shannon.integral_deriv_gaussianPDFReal_eq_zero
source∫ deriv (gaussianPDFReal m v) x ∂volume = 0.
Using deriv f = -(x-m)/v * f, this equals -(1/v) · ∫ (x - m) · f, and the
latter is m - m = 0 because ∫ x · f = m (Gaussian mean) and ∫ f = 1.
Used by
InformationTheory.Shannon.isRegularDensity_gaussianReal_of_law
sourceThe IsRegularDensity instance for a Gaussian random variable, with smooth
representative gaussianPDFReal m v.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Used by
InformationTheory.Shannon.logDeriv_gaussianPDFReal
sourcelogDeriv (gaussianPDFReal m v) x = -(x - m) / v.