InformationTheory.Shannon.AWGN.BindConvolution
AWGN bind/convolution bridge #
The AWGN kernel composed with the Gaussian input law equals the additive
convolution of the input with the noise law,
(awgnChannel N h_meas) ∘ₘ (gaussianReal 0 P.toNNReal) = (gaussianReal 0 P.toNNReal) ∗ (gaussianReal 0 N) (IsAwgnBindEqConv). This is a
purely measure-theoretic fact that does not depend on the concrete form of the input.
Main statements #
bind_eq_conv_of_translation_kernel— the generic translation-kernel ↔ additive-convolution bridge: for any kernel whose fibers are translation maps of a fixed measureν,κ ∘ₘ p = p ∗ ν.isAwgnBindEqConv— the AWGN specialization.
Implementation notes #
The two sides are matched through their lintegral characterizations
(Measure.ext_of_lintegral): the Giry-monad composition expands fiberwise via
Measure.lintegral_bind, the convolution via Measure.lintegral_conv, and the
fibers agree because each AWGN fiber is the translation map of the noise-only
Gaussian, gaussianReal x N = (gaussianReal 0 N).map (x + ·) (Mathlib
gaussianReal_map_const_add). The AWGN-specific result is the one-line
specialization of the generic translation-kernel lemma.
Fiber identity: translation map of a Gaussian #
InformationTheory.Shannon.AWGN.gaussianReal_eq_map_const_add
sourceEach AWGN fiber is the translation map of the noise-only Gaussian:
gaussianReal x N = (gaussianReal 0 N).map (x + ·).
Used by
Generic translation-kernel ↔ convolution bridge #
InformationTheory.Shannon.AWGN.bind_eq_conv_of_translation_kernel
sourceFor any kernel κ : Kernel ℝ ℝ whose every fiber is the translation map of a
fixed measure ν (κ x = ν.map (x + ·)), the Giry-monad composition with an
s-finite input p coincides with the additive convolution p ∗ ν.
Used by
AWGN specialization #
InformationTheory.Shannon.AWGN.isAwgnBindEqConv
sourceThe AWGN kernel composed with the Gaussian input equals the additive convolution
with the noise law:
(awgnChannel N h_meas) ∘ₘ (gaussianReal 0 P.toNNReal) = (gaussianReal 0 P.toNNReal) ∗ (gaussianReal 0 N).
Used by
InformationTheory.Shannon.AWGN.awgn_capacity_closed_form_of_maxent_miDecomp
sourceThe AWGN capacity closed form, with the output-Gaussian fact discharged via the
bind/convolution bridge (so IsAwgnBindEqConv is supplied automatically) and the MI
decomposition h_decomp, boundedness h_bdd, and max-entropy bound h_max_ent
taken as hypotheses.
@audit:superseded-by(awgn_capacity_closed_form_genuine)