mathlib documentation

measure_theory.bochner_integration

Bochner integral #

The Bochner integral extends the definition of the Lebesgue integral to functions that map from a measure space into a Banach space (complete normed vector space). It is constructed here by extending the integral on simple functions.

Main definitions #

The Bochner integral is defined following these steps:

  1. Define the integral on simple functions of the type simple_func α E (notation : α →ₛ E) where E is a real normed space.

(See simple_func.bintegral and section bintegral for details. Also see simple_func.integral for the integral on simple functions of the type simple_func α ℝ≥0∞.)

  1. Use α →ₛ E to cut out the simple functions from L1 functions, and define integral on these. The type of simple functions in L1 space is written as α →₁ₛ[μ] E.

  2. Show that the embedding of α →₁ₛ[μ] E into L1 is a dense and uniform one.

  3. Show that the integral defined on α →₁ₛ[μ] E is a continuous linear map.

  4. Define the Bochner integral on L1 functions by extending the integral on integrable simple functions α →₁ₛ[μ] E using continuous_linear_map.extend. Define the Bochner integral on functions as the Bochner integral of its equivalence class in L1 space.

Main statements #

  1. Basic properties of the Bochner integral on functions of type α → E, where α is a measure space and E is a real normed space.
  1. Basic properties of the Bochner integral on functions of type α → ℝ, where α is a measure space.
  1. Propositions connecting the Bochner integral with the integral on ℝ≥0∞-valued functions, which is called lintegral and has the notation ∫⁻.
  1. tendsto_integral_of_dominated_convergence : the Lebesgue dominated convergence theorem

  2. (In the file set_integral) integration commutes with continuous linear maps.

Notes #

Some tips on how to prove a proposition if the API for the Bochner integral is not enough so that you need to unfold the definition of the Bochner integral and go back to simple functions.

One method is to use the theorem integrable.induction in the file set_integral, which allows you to prove something for an arbitrary measurable + integrable function.

Another method is using the following steps. See integral_eq_lintegral_max_sub_lintegral_min for a complicated example, which proves that ∫ f = ∫⁻ f⁺ - ∫⁻ f⁻, with the first integral sign being the Bochner integral of a real-valued function f : α → ℝ, and second and third integral sign being the integral on ℝ≥0∞-valued functions (called lintegral). The proof of integral_eq_lintegral_max_sub_lintegral_min is scattered in sections with the name pos_part.

Here are the usual steps of proving that a property p, say ∫ f = ∫⁻ f⁺ - ∫⁻ f⁻, holds for all functions :

  1. First go to the space.

    For example, if you see ennreal.to_real (∫⁻ a, ennreal.of_real $ ∥f a∥), that is the norm of f in space. Rewrite using L1.norm_of_fun_eq_lintegral_norm.

  2. Show that the set {f ∈ L¹ | ∫ f = ∫⁻ f⁺ - ∫⁻ f⁻} is closed in using is_closed_eq.

  3. Show that the property holds for all simple functions s in space.

    Typically, you need to convert various notions to their simple_func counterpart, using lemmas like L1.integral_coe_eq_integral.

  4. Since simple functions are dense in ,

univ = closure {s simple}
     = closure {s simple |  s = ∫⁻ s - ∫⁻ s} : the property holds for all simple functions
      closure {f |  f = ∫⁻ f - ∫⁻ f}
     = {f |  f = ∫⁻ f - ∫⁻ f} : closure of a closed set is itself

Use is_closed_property or dense_range.induction_on for this argument.

Notations #

We also define notations for integral on a set, which are described in the file measure_theory/set_integral.

Note : is typed using \_s. Sometimes it shows as a box if font is missing.

Tags #

Bochner integral, simple function, function space, Lebesgue dominated convergence theorem

Positive part of a simple function.

Equations

Negative part of a simple function.

Equations

The Bochner integral of simple functions #

Define the Bochner integral of simple functions of the type α →ₛ β where β is a normed group, and prove basic property of this integral.

For simple functions with a normed_group as codomain, being integrable is the same as having finite volume support.

Bochner integral of simple functions whose codomain is a real normed_space.

Equations
theorem measure_theory.simple_func.integral_eq_sum_of_subset {α : Type u_1} {F : Type u_3} [measurable_space α] [normed_group F] [normed_space F] {f : measure_theory.simple_func α F} {μ : measure_theory.measure α} {s : finset F} (hs : finset.filter (λ (x : F), x 0) f.range s) :
measure_theory.simple_func.integral μ f = ∑ (x : F) in s, (μ (f ⁻¹' {x})).to_real x

The Bochner integral is equal to a sum over any set that includes f.range (except 0).

theorem measure_theory.simple_func.map_integral {α : Type u_1} {E : Type u_2} {F : Type u_3} [measurable_space α] [normed_group E] [measurable_space E] [normed_group F] {μ : measure_theory.measure α} [normed_space F] (f : measure_theory.simple_func α E) (g : E → F) (hf : measure_theory.integrable f μ) (hg : g 0 = 0) :

Calculate the integral of g ∘ f : α →ₛ F, where f is an integrable function from α to E and g is a function from E to F. We require g 0 = 0 so that g ∘ f is integrable.

simple_func.integral and simple_func.lintegral agree when the integrand has type α →ₛ ℝ≥0∞. But since ℝ≥0∞ is not a normed_space, we need some form of coercion. See integral_eq_lintegral for a simpler version.

simple_func.bintegral and simple_func.integral agree when the integrand has type α →ₛ ℝ≥0∞. But since ℝ≥0∞ is not a normed_space, we need some form of coercion.

L1.simple_func is a subspace of L1 consisting of equivalence classes of an integrable simple function.

Equations

Simple functions in L1 space form a normed_space.

@[protected]
@[protected]
@[protected, norm_cast]
@[protected, norm_cast]
@[protected]

L1 simple functions forms a normed_group, with the metric being inherited from L1 space, i.e., dist f g = ennreal.to_real (∫⁻ a, edist (f a) (g a)). Not declared as an instance as α →₁ₛ[μ] β will only be useful in the construction of the Bochner integral.

Equations
@[protected, instance]

Functions α →₁ₛ[μ] E form an additive commutative group.

Equations
@[simp, norm_cast]
@[simp, norm_cast]
@[protected]

Not declared as an instance as α →₁ₛ[μ] E will only be useful in the construction of the Bochner integral.

Equations
@[simp, norm_cast]
theorem measure_theory.L1.simple_func.coe_smul {α : Type u_1} {E : Type u_2} {𝕜 : Type u_4} [measurable_space α] [normed_group E] [topological_space.second_countable_topology E] [measurable_space E] [borel_space E] {μ : measure_theory.measure α} [normed_field 𝕜] [normed_space 𝕜 E] [measurable_space 𝕜] [opens_measurable_space 𝕜] (c : 𝕜) (f : →₁ₛ[μ] E)) :
(c f) = c f
@[protected]

Not declared as an instance as α →₁ₛ[μ] E will only be useful in the construction of the Bochner integral.

Equations
@[protected]

Not declared as an instance as α →₁ₛ[μ] E will only be useful in the construction of the Bochner integral.

Equations

Construct the equivalence class [f] of an integrable simple function f.

Equations

The uniform and dense embedding of L1 simple functions into L1 functions.

Equations

Positive part of a simple function in L1 space.

Equations

Negative part of a simple function in L1 space.

Equations

Define the Bochner integral on α →₁ₛ[μ] E and prove basic properties of this integral.

The Bochner integral over simple functions in L1 space as a continuous linear map.

Equations

The Bochner integral over simple functions in L1 space as a continuous linear map over ℝ.

Equations

The Bochner integral in L1 space as a continuous linear map over ℝ.

Equations

In the notation for integrals, an expression like ∫ x, g ∥x∥ ∂μ will not be parsed correctly, and needs parentheses. We do not set the binding power of r to 0, because then ∫ x, f x = 0 will be parsed incorrectly.

theorem measure_theory.integral_add {α : Type u_1} {E : Type u_2} [measurable_space α] [normed_group E] [topological_space.second_countable_topology E] [normed_space E] [complete_space E] [measurable_space E] [borel_space E] {f g : α → E} {μ : measure_theory.measure α} (hf : measure_theory.integrable f μ) (hg : measure_theory.integrable g μ) :
(a : α), f a + g a μ = (a : α), f a μ + (a : α), g a μ
theorem measure_theory.integral_add' {α : Type u_1} {E : Type u_2} [measurable_space α] [normed_group E] [topological_space.second_countable_topology E] [normed_space E] [complete_space E] [measurable_space E] [borel_space E] {f g : α → E} {μ : measure_theory.measure α} (hf : measure_theory.integrable f μ) (hg : measure_theory.integrable g μ) :
(a : α), (f + g) a μ = (a : α), f a μ + (a : α), g a μ
theorem measure_theory.integral_neg {α : Type u_1} {E : Type u_2} [measurable_space α] [normed_group E] [topological_space.second_countable_topology E] [normed_space E] [complete_space E] [measurable_space E] [borel_space E] {μ : measure_theory.measure α} (f : α → E) :
(a : α), -f a μ = - (a : α), f a μ
theorem measure_theory.integral_neg' {α : Type u_1} {E : Type u_2} [measurable_space α] [normed_group E] [topological_space.second_countable_topology E] [normed_space E] [complete_space E] [measurable_space E] [borel_space E] {μ : measure_theory.measure α} (f : α → E) :
(a : α), (-f) a μ = - (a : α), f a μ
theorem measure_theory.integral_sub {α : Type u_1} {E : Type u_2} [measurable_space α] [normed_group E] [topological_space.second_countable_topology E] [normed_space E] [complete_space E] [measurable_space E] [borel_space E] {f g : α → E} {μ : measure_theory.measure α} (hf : measure_theory.integrable f μ) (hg : measure_theory.integrable g μ) :
(a : α), f a - g a μ = (a : α), f a μ - (a : α), g a μ
theorem measure_theory.integral_sub' {α : Type u_1} {E : Type u_2} [measurable_space α] [normed_group E] [topological_space.second_countable_topology E] [normed_space E] [complete_space E] [measurable_space E] [borel_space E] {f g : α → E} {μ : measure_theory.measure α} (hf : measure_theory.integrable f μ) (hg : measure_theory.integrable g μ) :
(a : α), (f - g) a μ = (a : α), f a μ - (a : α), g a μ
theorem measure_theory.integral_smul {α : Type u_1} {E : Type u_2} {𝕜 : Type u_4} [measurable_space α] [normed_group E] [topological_space.second_countable_topology E] [normed_space E] [complete_space E] [measurable_space E] [borel_space E] [nondiscrete_normed_field 𝕜] [normed_space 𝕜 E] [smul_comm_class 𝕜 E] {μ : measure_theory.measure α} [measurable_space 𝕜] [opens_measurable_space 𝕜] (c : 𝕜) (f : α → E) :
(a : α), c f a μ = c (a : α), f a μ
theorem measure_theory.integral_mul_left {α : Type u_1} [measurable_space α] {μ : measure_theory.measure α} (r : ) (f : α → ) :
(a : α), r * f a μ = r * (a : α), f a μ
theorem measure_theory.integral_mul_right {α : Type u_1} [measurable_space α] {μ : measure_theory.measure α} (r : ) (f : α → ) :
(a : α), (f a) * r μ = ( (a : α), f a μ) * r
theorem measure_theory.integral_div {α : Type u_1} [measurable_space α] {μ : measure_theory.measure α} (r : ) (f : α → ) :
(a : α), f a / r μ = (a : α), f a μ / r
theorem measure_theory.integral_congr_ae {α : Type u_1} {E : Type u_2} [measurable_space α] [normed_group E] [topological_space.second_countable_topology E] [normed_space E] [complete_space E] [measurable_space E] [borel_space E] {f g : α → E} {μ : measure_theory.measure α} (h : f =ᵐ[μ] g) :
(a : α), f a μ = (a : α), g a μ
theorem measure_theory.integral_eq_zero_of_ae {α : Type u_1} {E : Type u_2} [measurable_space α] [normed_group E] [topological_space.second_countable_topology E] [normed_space E] [complete_space E] [measurable_space E] [borel_space E] {μ : measure_theory.measure α} {f : α → E} (hf : f =ᵐ[μ] 0) :
(a : α), f a μ = 0
theorem measure_theory.has_finite_integral.tendsto_set_integral_nhds_zero {α : Type u_1} {E : Type u_2} [measurable_space α] [normed_group E] [topological_space.second_countable_topology E] [normed_space E] [complete_space E] [measurable_space E] [borel_space E] {μ : measure_theory.measure α} {ι : Type u_3} {f : α → E} (hf : measure_theory.has_finite_integral f μ) {l : filter ι} {s : ι → set α} (hs : filter.tendsto (μ s) l (𝓝 0)) :
filter.tendsto (λ (i : ι), (x : α) in s i, f x μ) l (𝓝 0)

If f has finite integral, then ∫ x in s, f x ∂μ is absolutely continuous in s: it tends to zero as μ s tends to zero.

theorem measure_theory.integrable.tendsto_set_integral_nhds_zero {α : Type u_1} {E : Type u_2} [measurable_space α] [normed_group E] [topological_space.second_countable_topology E] [normed_space E] [complete_space E] [measurable_space E] [borel_space E] {μ : measure_theory.measure α} {ι : Type u_3} {f : α → E} (hf : measure_theory.integrable f μ) {l : filter ι} {s : ι → set α} (hs : filter.tendsto (μ s) l (𝓝 0)) :
filter.tendsto (λ (i : ι), (x : α) in s i, f x μ) l (𝓝 0)

If f is integrable, then ∫ x in s, f x ∂μ is absolutely continuous in s: it tends to zero as μ s tends to zero.

theorem measure_theory.tendsto_integral_of_L1 {α : Type u_1} {E : Type u_2} [measurable_space α] [normed_group E] [topological_space.second_countable_topology E] [normed_space E] [complete_space E] [measurable_space E] [borel_space E] {μ : measure_theory.measure α} {ι : Type u_3} (f : α → E) (hfi : measure_theory.integrable f μ) {F : ι → α → E} {l : filter ι} (hFi : ∀ᶠ (i : ι) in l, measure_theory.integrable (F i) μ) (hF : filter.tendsto (λ (i : ι), ∫⁻ (x : α), edist (F i x) (f x) μ) l (𝓝 0)) :
filter.tendsto (λ (i : ι), (x : α), F i x μ) l (𝓝 ( (x : α), f x μ))

If F i → f in L1, then ∫ x, F i x ∂μ → ∫ x, f x∂μ.

theorem measure_theory.tendsto_integral_of_dominated_convergence {α : Type u_1} {E : Type u_2} [measurable_space α] [normed_group E] [topological_space.second_countable_topology E] [normed_space E] [complete_space E] [measurable_space E] [borel_space E] {μ : measure_theory.measure α} {F : α → E} {f : α → E} (bound : α → ) (F_measurable : ∀ (n : ), ae_measurable (F n) μ) (f_measurable : ae_measurable f μ) (bound_integrable : measure_theory.integrable bound μ) (h_bound : ∀ (n : ), ∀ᵐ (a : α) ∂μ, F n a bound a) (h_lim : ∀ᵐ (a : α) ∂μ, filter.tendsto (λ (n : ), F n a) filter.at_top (𝓝 (f a))) :
filter.tendsto (λ (n : ), (a : α), F n a μ) filter.at_top (𝓝 ( (a : α), f a μ))

Lebesgue dominated convergence theorem provides sufficient conditions under which almost everywhere convergence of a sequence of functions implies the convergence of their integrals.

theorem measure_theory.tendsto_integral_filter_of_dominated_convergence {α : Type u_1} {E : Type u_2} [measurable_space α] [normed_group E] [topological_space.second_countable_topology E] [normed_space E] [complete_space E] [measurable_space E] [borel_space E] {μ : measure_theory.measure α} {ι : Type u_3} {l : filter ι} {F : ι → α → E} {f : α → E} (bound : α → ) (hl_cb : l.is_countably_generated) (hF_meas : ∀ᶠ (n : ι) in l, ae_measurable (F n) μ) (f_measurable : ae_measurable f μ) (h_bound : ∀ᶠ (n : ι) in l, ∀ᵐ (a : α) ∂μ, F n a bound a) (bound_integrable : measure_theory.integrable bound μ) (h_lim : ∀ᵐ (a : α) ∂μ, filter.tendsto (λ (n : ι), F n a) l (𝓝 (f a))) :
filter.tendsto (λ (n : ι), (a : α), F n a μ) l (𝓝 ( (a : α), f a μ))

Lebesgue dominated convergence theorem for filters with a countable basis

theorem measure_theory.continuous_at_of_dominated {α : Type u_1} {E : Type u_2} [measurable_space α] [normed_group E] [topological_space.second_countable_topology E] [normed_space E] [complete_space E] [measurable_space E] [borel_space E] {μ : measure_theory.measure α} {X : Type u_5} [topological_space X] [topological_space.first_countable_topology X] {F : X → α → E} {x₀ : X} {bound : α → } (hF_meas : ∀ᶠ (x : X) in 𝓝 x₀, ae_measurable (F x) μ) (h_bound : ∀ᶠ (x : X) in 𝓝 x₀, ∀ᵐ (a : α) ∂μ, F x a bound a) (bound_integrable : measure_theory.integrable bound μ) (h_cont : ∀ᵐ (a : α) ∂μ, continuous_at (λ (x : X), F x a) x₀) :
continuous_at (λ (x : X), (a : α), F x a μ) x₀
theorem measure_theory.continuous_of_dominated {α : Type u_1} {E : Type u_2} [measurable_space α] [normed_group E] [topological_space.second_countable_topology E] [normed_space E] [complete_space E] [measurable_space E] [borel_space E] {μ : measure_theory.measure α} {X : Type u_5} [topological_space X] [topological_space.first_countable_topology X] {F : X → α → E} {bound : α → } (hF_meas : ∀ (x : X), ae_measurable (F x) μ) (h_bound : ∀ (x : X), ∀ᵐ (a : α) ∂μ, F x a bound a) (bound_integrable : measure_theory.integrable bound μ) (h_cont : ∀ᵐ (a : α) ∂μ, continuous (λ (x : X), F x a)) :
continuous (λ (x : X), (a : α), F x a μ)
theorem measure_theory.integral_eq_lintegral_max_sub_lintegral_min {α : Type u_1} [measurable_space α] {μ : measure_theory.measure α} {f : α → } (hf : measure_theory.integrable f μ) :
(a : α), f a μ = (∫⁻ (a : α), ennreal.of_real (max (f a) 0) μ).to_real - (∫⁻ (a : α), ennreal.of_real (-min (f a) 0) μ).to_real

The Bochner integral of a real-valued function f : α → ℝ is the difference between the integral of the positive part of f and the integral of the negative part of f.

theorem measure_theory.integral_eq_lintegral_of_nonneg_ae {α : Type u_1} [measurable_space α] {μ : measure_theory.measure α} {f : α → } (hf : 0 ≤ᵐ[μ] f) (hfm : ae_measurable f μ) :
(a : α), f a μ = (∫⁻ (a : α), ennreal.of_real (f a) μ).to_real
theorem measure_theory.integral_nonneg_of_ae {α : Type u_1} [measurable_space α] {μ : measure_theory.measure α} {f : α → } (hf : 0 ≤ᵐ[μ] f) :
0 (a : α), f a μ
theorem measure_theory.lintegral_coe_eq_integral {α : Type u_1} [measurable_space α] {μ : measure_theory.measure α} (f : α → ℝ≥0) (hfi : measure_theory.integrable (λ (x : α), (f x)) μ) :
∫⁻ (a : α), (f a) μ = ennreal.of_real ( (a : α), (f a) μ)
theorem measure_theory.integral_to_real {α : Type u_1} [measurable_space α] {μ : measure_theory.measure α} {f : α → ℝ≥0∞} (hfm : ae_measurable f μ) (hf : ∀ᵐ (x : α) ∂μ, f x < ) :
(a : α), (f a).to_real μ = (∫⁻ (a : α), f a μ).to_real
theorem measure_theory.integral_nonneg {α : Type u_1} [measurable_space α] {μ : measure_theory.measure α} {f : α → } (hf : 0 f) :
0 (a : α), f a μ
theorem measure_theory.integral_nonpos_of_ae {α : Type u_1} [measurable_space α] {μ : measure_theory.measure α} {f : α → } (hf : f ≤ᵐ[μ] 0) :
(a : α), f a μ 0
theorem measure_theory.integral_nonpos {α : Type u_1} [measurable_space α] {μ : measure_theory.measure α} {f : α → } (hf : f 0) :
(a : α), f a μ 0
theorem measure_theory.integral_eq_zero_iff_of_nonneg_ae {α : Type u_1} [measurable_space α] {μ : measure_theory.measure α} {f : α → } (hf : 0 ≤ᵐ[μ] f) (hfi : measure_theory.integrable f μ) :
(x : α), f x μ = 0 f =ᵐ[μ] 0
theorem measure_theory.integral_eq_zero_iff_of_nonneg {α : Type u_1} [measurable_space α] {μ : measure_theory.measure α} {f : α → } (hf : 0 f) (hfi : measure_theory.integrable f μ) :
(x : α), f x μ = 0 f =ᵐ[μ] 0
theorem measure_theory.integral_pos_iff_support_of_nonneg_ae {α : Type u_1} [measurable_space α] {μ : measure_theory.measure α} {f : α → } (hf : 0 ≤ᵐ[μ] f) (hfi : measure_theory.integrable f μ) :
0 < (x : α), f x μ 0 < μ (function.support f)
theorem measure_theory.integral_pos_iff_support_of_nonneg {α : Type u_1} [measurable_space α] {μ : measure_theory.measure α} {f : α → } (hf : 0 f) (hfi : measure_theory.integrable f μ) :
0 < (x : α), f x μ 0 < μ (function.support f)
theorem measure_theory.integral_mono_ae {α : Type u_1} [measurable_space α] {μ : measure_theory.measure α} {f g : α → } (hf : measure_theory.integrable f μ) (hg : measure_theory.integrable g μ) (h : f ≤ᵐ[μ] g) :
(a : α), f a μ (a : α), g a μ
theorem measure_theory.integral_mono {α : Type u_1} [measurable_space α] {μ : measure_theory.measure α} {f g : α → } (hf : measure_theory.integrable f μ) (hg : measure_theory.integrable g μ) (h : f g) :
(a : α), f a μ (a : α), g a μ
theorem measure_theory.integral_mono_of_nonneg {α : Type u_1} [measurable_space α] {μ : measure_theory.measure α} {f g : α → } (hf : 0 ≤ᵐ[μ] f) (hgi : measure_theory.integrable g μ) (h : f ≤ᵐ[μ] g) :
(a : α), f a μ (a : α), g a μ
theorem measure_theory.norm_integral_le_of_norm_le {α : Type u_1} {E : Type u_2} [measurable_space α] [normed_group E] [topological_space.second_countable_topology E] [normed_space E] [complete_space E] [measurable_space E] [borel_space E] {μ : measure_theory.measure α} {f : α → E} {g : α → } (hg : measure_theory.integrable g μ) (h : ∀ᵐ (x : α) ∂μ, f x g x) :
(x : α), f x μ (x : α), g x μ
theorem measure_theory.integral_finset_sum {α : Type u_1} {E : Type u_2} [measurable_space α] [normed_group E] [topological_space.second_countable_topology E] [normed_space E] [complete_space E] [measurable_space E] [borel_space E] {μ : measure_theory.measure α} {ι : Type u_3} (s : finset ι) {f : ι → α → E} (hf : ∀ (i : ι), measure_theory.integrable (f i) μ) :
(a : α), ∑ (i : ι) in s, f i a μ = ∑ (i : ι) in s, (a : α), f i a μ
theorem measure_theory.integral_add_measure {α : Type u_1} {E : Type u_2} [measurable_space α] [normed_group E] [topological_space.second_countable_topology E] [normed_space E] [complete_space E] [measurable_space E] [borel_space E] {μ ν : measure_theory.measure α} {f : α → E} (hμ : measure_theory.integrable f μ) (hν : measure_theory.integrable f ν) :
(x : α), f x + ν) = (x : α), f x μ + (x : α), f x ν
@[simp]
theorem measure_theory.integral_zero_measure {α : Type u_1} {E : Type u_2} [measurable_space α] [normed_group E] [topological_space.second_countable_topology E] [normed_space E] [complete_space E] [measurable_space E] [borel_space E] (f : α → E) :
(x : α), f x 0 = 0
@[simp]
theorem measure_theory.integral_smul_measure {α : Type u_1} {E : Type u_2} [measurable_space α] [normed_group E] [topological_space.second_countable_topology E] [normed_space E] [complete_space E] [measurable_space E] [borel_space E] {μ : measure_theory.measure α} (f : α → E) (c : ℝ≥0∞) :
(x : α), f x c μ = c.to_real (x : α), f x μ
theorem measure_theory.integral_map_of_measurable {α : Type u_1} {E : Type u_2} [measurable_space α] [normed_group E] [topological_space.second_countable_topology E] [normed_space E] [complete_space E] [measurable_space E] [borel_space E] {μ : measure_theory.measure α} {β : Type u_3} [measurable_space β] {φ : α → β} (hφ : measurable φ) {f : β → E} (hfm : measurable f) :
(y : β), f y (measure_theory.measure.map φ) μ = (x : α), f (φ x) μ
theorem measure_theory.integral_map {α : Type u_1} {E : Type u_2} [measurable_space α] [normed_group E] [topological_space.second_countable_topology E] [normed_space E] [complete_space E] [measurable_space E] [borel_space E] {μ : measure_theory.measure α} {β : Type u_3} [measurable_space β] {φ : α → β} (hφ : measurable φ) {f : β → E} (hfm : ae_measurable f ((measure_theory.measure.map φ) μ)) :
(y : β), f y (measure_theory.measure.map φ) μ = (x : α), f (φ x) μ
theorem measure_theory.integral_map_of_closed_embedding {α : Type u_1} {E : Type u_2} [measurable_space α] [normed_group E] [topological_space.second_countable_topology E] [normed_space E] [complete_space E] [measurable_space E] [borel_space E] {μ : measure_theory.measure α} {β : Type u_3} [topological_space α] [borel_space α] [topological_space β] [measurable_space β] [borel_space β] {φ : α → β} (hφ : closed_embedding φ) (f : β → E) :
(y : β), f y (measure_theory.measure.map φ) μ = (x : α), f (φ x) μ

Translating a function by left-multiplication does not change its integral with respect to a left-invariant measure.

Translating a function by right-multiplication does not change its integral with respect to a right-invariant measure.

If some left-translate of a function negates it, then the integral of the function with respect to a left-invariant measure is 0.

If some right-translate of a function negates it, then the integral of the function with respect to a right-invariant measure is 0.

Simp set for integral rules.