Documentation

ZPM.Analysis.InnerProductSpace.KernelMeanEmbedding.Reproducing

Reproducing property of the kernel mean embedding #

⟪μ_P, f⟫ = ∫ f dP for every f ∈ H: the inner product of a function with the kernel mean embedding of P equals the expectation of the function under P. The proof routes through Mathlib's integral_inner and the RKHS reproducing property inner_kerFun.

Reproducing property of the kernel mean embedding. ⟪μ_P, f⟫ = ∫ f dP for f ∈ H and P finite.

theorem rkhs_eval_eq_inner {X : Type u_1} {H : Type u_2} [NormedAddCommGroup H] [InnerProductSpace H] [CompleteSpace H] [RKHS H X ] (f : H) (x : X) :
f x = inner ((RKHS.kerFun H x) 1) f

Pointwise reproducing identity: f x = ⟪kerFun H x 1, f⟫.