A lower integral concentrated at a point
ProvedMeasureTheory.lintegral_eq_singleAn integrand supported at a single point integrates to its value times the point mass.
Let vanish outside a single point . Then
Splitting the integral at , the contribution from the complement vanishes because
does, and over the integrand is the constant , giving . The
MeasurableSingletonClass hypothesis is what makes measurable so the split is
legitimate.
This is the bridge between integration and summation for atomic measures. For a counting or discrete measure, a general integrand decomposes as a sum of such single-point pieces, and this lemma evaluates each one; that is how becomes — the identity underlying every computation of a discrete expectation or a Shannon entropy as a sum.
Formalization note. ∫⁻ is the lower Lebesgue integral for -valued functions,
so no integrability hypothesis is needed; the product on the right is taken in ENNReal, where
handles the degenerate cases.
import Mathlib
namespace MeasureTheory
open MeasureTheory ENNReal in
theorem lintegral_eq_single {α : Type*} [MeasurableSpace α] [MeasurableSingletonClass α]
(μ : Measure α) (a : α) (f : α → ℝ≥0∞) (ha : ∀ b ≠ a, f b = 0) :
∫⁻ x, f x ∂μ = f a * μ {a} := by sorry
end MeasureTheory