Integrable functions and L¹
space #
In the first part of this file, the predicate integrable
is defined and basic properties of
integrable functions are proved.
Such a predicate is already available under the name mem_ℒp 1
. We give a direct definition which
is easier to use, and show that it is equivalent to mem_ℒp 1
In the second part, we establish an API between integrable
and the space L¹
of equivalence
classes of integrable functions, already defined as a special case of L^p
spaces for p = 1
.
Notation #
-
α →₁[μ] β
is the type ofL¹
space, whereα
is ameasure_space
andβ
is anormed_group
with asecond_countable_topology
.f : α →ₘ β
is a "function" inL¹
. In comments,[f]
is also used to denote anL¹
function.₁
can be typed as\1
.
Main definitions #
-
Let
f : α → β
be a function, whereα
is ameasure_space
andβ
anormed_group
. Thenhas_finite_integral f
means(∫⁻ a, nnnorm (f a)) < ∞
. -
If
β
is moreover ameasurable_space
thenf
is calledintegrable
iff
ismeasurable
andhas_finite_integral f
holds.
Implementation notes #
To prove something for an arbitrary integrable function, a useful theorem is
integrable.induction
in the file set_integral
.
Tags #
integrable, function space, l1
Some results about the Lebesgue integral involving a normed group #
The predicate has_finite_integral
#
has_finite_integral f μ
means that the integral ∫⁻ a, ∥f a∥ ∂μ
is finite.
has_finite_integral f
means has_finite_integral f volume
.
Lemmas used for defining the positive part of a L¹
function
The predicate integrable
#
integrable f μ
means that f
is measurable and that the integral ∫⁻ a, ∥f a∥ ∂μ
is finite.
integrable f
means integrable f volume
.
Equations
Lemmas used for defining the positive part of a L¹
function #
The predicate integrable
on measurable functions modulo a.e.-equality #
A class of almost everywhere equal functions is integrable
if its function representative
is integrable.
Equations
Computing the norm of a difference between two L¹-functions. Note that this is not a
special case of norm_def
since (f - g) x
and f x - g x
are not equal
(but only a.e.-equal).
Computing the norm of a difference between two L¹-functions. Note that this is not a
special case of of_real_norm_eq_lintegral
since (f - g) x
and f x - g x
are not equal
(but only a.e.-equal).
Construct the equivalence class [f]
of an integrable function f
, as a member of the
space L1 β 1 μ
.