Set integral #
In this file we prove some properties of ∫ x in s, f x ∂μ
. Recall that this notation
is defined as ∫ x, f x ∂(μ.restrict s)
. In integral_indicator
we prove that for a measurable
function f
and a measurable set s
this definition coincides with another natural definition:
∫ x, indicator s f x ∂μ = ∫ x in s, f x ∂μ
, where indicator s f x
is equal to f x
for x ∈ s
and is zero otherwise.
Since ∫ x in s, f x ∂μ
is a notation, one can rewrite or apply any theorem about ∫ x, f x ∂μ
directly. In this file we prove some theorems about dependence of ∫ x in s, f x ∂μ
on s
, e.g.
setIntegral_union
, setIntegral_empty
, setIntegral_univ
.
We use the property IntegrableOn f s μ := Integrable f (μ.restrict s)
, defined in
MeasureTheory.IntegrableOn
. We also defined in that same file a predicate
IntegrableAtFilter (f : X → E) (l : Filter X) (μ : Measure X)
saying that f
is integrable at
some set s ∈ l
.
Notation #
We provide the following notations for expressing the integral of a function on a set :
∫ x in s, f x ∂μ
isMeasureTheory.integral (μ.restrict s) f
∫ x in s, f x
is∫ x in s, f x ∂volume
Note that the set notations are defined in the file
Mathlib/MeasureTheory/Integral/Bochner/Basic.lean
,
but we reference them here because all theorems about set integrals are in this file.
Alias of MeasureTheory.setIntegral_congr_fun₀
.
Alias of MeasureTheory.setIntegral_congr_fun
.
Alias of MeasureTheory.setIntegral_congr_set
.
Alias of MeasureTheory.setIntegral_union
.
Alias of MeasureTheory.setIntegral_empty
.
Alias of MeasureTheory.setIntegral_univ
.
For a function f
and a measurable set s
, the integral of indicator s f
over the whole space is equal to ∫ x in s, f x ∂μ
defined as ∫ x, f x ∂(μ.restrict s)
.
If a function vanishes almost everywhere on t \ s
with s ⊆ t
, then its integrals on s
and t
coincide if t
is null-measurable.
If a function vanishes on t \ s
with s ⊆ t
, then its integrals on s
and t
coincide if t
is measurable.
If a function vanishes almost everywhere on sᶜ
, then its integral on s
coincides with its integral on the whole space.
If a function vanishes on sᶜ
, then its integral on s
coincides with its integral on the
whole space.
Lemmas about adding and removing interval boundaries #
The primed lemmas take explicit arguments about the endpoint having zero measure, while the
unprimed ones use [NoAtoms μ]
.
If s
is a countable family of compact sets, f
is a continuous function, and the sequence
‖f.restrict (s i)‖ * μ (s i)
is summable, then f
is integrable on the union of the s i
.
If s
is a countable family of compact sets covering X
, f
is a continuous function, and
the sequence ‖f.restrict (s i)‖ * μ (s i)
is summable, then f
is integrable.
Continuity of the set integral #
We prove that for any set s
, the function
fun f : X →₁[μ] E => ∫ x in s, f x ∂μ
is continuous.
For f : Lp E p μ
, we can define an element of Lp E p (μ.restrict s)
by
(Lp.memLp f).restrict s).toLp f
. This map is additive.
For f : Lp E p μ
, we can define an element of Lp E p (μ.restrict s)
by
(Lp.memLp f).restrict s).toLp f
. This map commutes with scalar multiplication.
For f : Lp E p μ
, we can define an element of Lp E p (μ.restrict s)
by
(Lp.memLp f).restrict s).toLp f
. This map is non-expansive.
Continuous linear map sending a function of Lp F p μ
to the same function in
Lp F p (μ.restrict s)
.
Equations
- MeasureTheory.LpToLpRestrictCLM X F 𝕜 μ p s = { toFun := fun (f : ↥(MeasureTheory.Lp F p μ)) => MeasureTheory.MemLp.toLp ↑↑f ⋯, map_add' := ⋯, map_smul' := ⋯ }.mkContinuous 1 ⋯
Instances For
The parametric integral over a continuous function on a compact set is continuous, under mild assumptions on the topologies involved.
Consider a parameterized integral x ↦ ∫ y, L (g y) (f x y)
where L
is bilinear,
g
is locally integrable and f
is continuous and uniformly compactly supported. Then the
integral depends continuously on x
.
Consider a parameterized integral x ↦ ∫ y, f x y
where f
is continuous and uniformly
compactly supported. Then the integral depends continuously on x
.