state
stringlengths
0
159k
srcUpToTactic
stringlengths
387
167k
nextTactic
stringlengths
3
9k
declUpToTactic
stringlengths
22
11.5k
declId
stringlengths
38
95
decl
stringlengths
16
1.89k
file_tag
stringlengths
17
73
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f : α → E s : Set α μ : Measure α C : ℝ hs : ↑↑μ s < ⊤ hf : ∀ᵐ (x : α) ∂Measure.restrict μ s, ‖f x‖ ≤ C ⊢ ↑↑(Measure.restrict μ s) univ < ⊤
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
rwa [Measure.restrict_apply_univ]
theorem hasFiniteIntegral_restrict_of_bounded [NormedAddCommGroup E] {f : α → E} {s : Set α} {μ : Measure α} {C} (hs : μ s < ∞) (hf : ∀ᵐ x ∂μ.restrict s, ‖f x‖ ≤ C) : HasFiniteIntegral f (μ.restrict s) := haveI : IsFiniteMeasure (μ.restrict s) := ⟨by
Mathlib.MeasureTheory.Integral.IntegrableOn.79_0.qIpN2P2TD1gUH4J
theorem hasFiniteIntegral_restrict_of_bounded [NormedAddCommGroup E] {f : α → E} {s : Set α} {μ : Measure α} {C} (hs : μ s < ∞) (hf : ∀ᵐ x ∂μ.restrict s, ‖f x‖ ≤ C) : HasFiniteIntegral f (μ.restrict s)
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α ⊢ IntegrableOn f ∅
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
simp [IntegrableOn, integrable_zero_measure]
@[simp] theorem integrableOn_empty : IntegrableOn f ∅ μ := by
Mathlib.MeasureTheory.Integral.IntegrableOn.105_0.qIpN2P2TD1gUH4J
@[simp] theorem integrableOn_empty : IntegrableOn f ∅ μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α ⊢ IntegrableOn f univ ↔ Integrable f
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
rw [IntegrableOn, Measure.restrict_univ]
@[simp] theorem integrableOn_univ : IntegrableOn f univ μ ↔ Integrable f μ := by
Mathlib.MeasureTheory.Integral.IntegrableOn.109_0.qIpN2P2TD1gUH4J
@[simp] theorem integrableOn_univ : IntegrableOn f univ μ ↔ Integrable f μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α C : E ⊢ C = 0 ∨ ↑↑(Measure.restrict μ s) univ < ⊤ ↔ C = 0 ∨ ↑↑μ s < ⊤
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
rw [Measure.restrict_apply_univ]
@[simp] theorem integrableOn_const {C : E} : IntegrableOn (fun _ => C) s μ ↔ C = 0 ∨ μ s < ∞ := integrable_const_iff.trans <| by
Mathlib.MeasureTheory.Integral.IntegrableOn.118_0.qIpN2P2TD1gUH4J
@[simp] theorem integrableOn_const {C : E} : IntegrableOn (fun _ => C) s μ ↔ C = 0 ∨ μ s < ∞
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α h : IntegrableOn f s hs : MeasurableSet s ⊢ IntegrableOn f s
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
rw [IntegrableOn, Measure.restrict_restrict hs]
theorem IntegrableOn.restrict (h : IntegrableOn f s μ) (hs : MeasurableSet s) : IntegrableOn f s (μ.restrict t) := by
Mathlib.MeasureTheory.Integral.IntegrableOn.167_0.qIpN2P2TD1gUH4J
theorem IntegrableOn.restrict (h : IntegrableOn f s μ) (hs : MeasurableSet s) : IntegrableOn f s (μ.restrict t)
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α h : IntegrableOn f s hs : MeasurableSet s ⊢ Integrable f
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
exact h.mono_set (inter_subset_left _ _)
theorem IntegrableOn.restrict (h : IntegrableOn f s μ) (hs : MeasurableSet s) : IntegrableOn f s (μ.restrict t) := by rw [IntegrableOn, Measure.restrict_restrict hs];
Mathlib.MeasureTheory.Integral.IntegrableOn.167_0.qIpN2P2TD1gUH4J
theorem IntegrableOn.restrict (h : IntegrableOn f s μ) (hs : MeasurableSet s) : IntegrableOn f s (μ.restrict t)
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α h : IntegrableOn f s ⊢ IntegrableOn f (s ∩ t)
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
have := h.mono_set (inter_subset_left s t)
theorem IntegrableOn.inter_of_restrict (h : IntegrableOn f s (μ.restrict t)) : IntegrableOn f (s ∩ t) μ := by
Mathlib.MeasureTheory.Integral.IntegrableOn.172_0.qIpN2P2TD1gUH4J
theorem IntegrableOn.inter_of_restrict (h : IntegrableOn f s (μ.restrict t)) : IntegrableOn f (s ∩ t) μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α h : IntegrableOn f s this : IntegrableOn f (s ∩ t) ⊢ IntegrableOn f (s ∩ t)
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
rwa [IntegrableOn, μ.restrict_restrict_of_subset (inter_subset_right s t)] at this
theorem IntegrableOn.inter_of_restrict (h : IntegrableOn f s (μ.restrict t)) : IntegrableOn f (s ∩ t) μ := by have := h.mono_set (inter_subset_left s t)
Mathlib.MeasureTheory.Integral.IntegrableOn.172_0.qIpN2P2TD1gUH4J
theorem IntegrableOn.inter_of_restrict (h : IntegrableOn f s (μ.restrict t)) : IntegrableOn f (s ∩ t) μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α inst✝ : DecidablePred fun x => x ∈ s hs : MeasurableSet s hf : IntegrableOn f s hg : IntegrableOn g sᶜ ⊢ Integrable (Set.piecewise s f g)
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
rw [IntegrableOn] at hf hg
lemma Integrable.piecewise [DecidablePred (· ∈ s)] (hs : MeasurableSet s) (hf : IntegrableOn f s μ) (hg : IntegrableOn g sᶜ μ) : Integrable (s.piecewise f g) μ := by
Mathlib.MeasureTheory.Integral.IntegrableOn.177_0.qIpN2P2TD1gUH4J
lemma Integrable.piecewise [DecidablePred (· ∈ s)] (hs : MeasurableSet s) (hf : IntegrableOn f s μ) (hg : IntegrableOn g sᶜ μ) : Integrable (s.piecewise f g) μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α inst✝ : DecidablePred fun x => x ∈ s hs : MeasurableSet s hf : Integrable f hg : Integrable g ⊢ Integrable (Set.piecewise s f g)
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
rw [← memℒp_one_iff_integrable] at hf hg ⊢
lemma Integrable.piecewise [DecidablePred (· ∈ s)] (hs : MeasurableSet s) (hf : IntegrableOn f s μ) (hg : IntegrableOn g sᶜ μ) : Integrable (s.piecewise f g) μ := by rw [IntegrableOn] at hf hg
Mathlib.MeasureTheory.Integral.IntegrableOn.177_0.qIpN2P2TD1gUH4J
lemma Integrable.piecewise [DecidablePred (· ∈ s)] (hs : MeasurableSet s) (hf : IntegrableOn f s μ) (hg : IntegrableOn g sᶜ μ) : Integrable (s.piecewise f g) μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α inst✝ : DecidablePred fun x => x ∈ s hs : MeasurableSet s hf : Memℒp f 1 hg : Memℒp g 1 ⊢ Memℒp (Set.piecewise s f g) 1
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
exact Memℒp.piecewise hs hf hg
lemma Integrable.piecewise [DecidablePred (· ∈ s)] (hs : MeasurableSet s) (hf : IntegrableOn f s μ) (hg : IntegrableOn g sᶜ μ) : Integrable (s.piecewise f g) μ := by rw [IntegrableOn] at hf hg rw [← memℒp_one_iff_integrable] at hf hg ⊢
Mathlib.MeasureTheory.Integral.IntegrableOn.177_0.qIpN2P2TD1gUH4J
lemma Integrable.piecewise [DecidablePred (· ∈ s)] (hs : MeasurableSet s) (hf : IntegrableOn f s μ) (hg : IntegrableOn g sᶜ μ) : Integrable (s.piecewise f g) μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α x : α inst✝ : MeasurableSingletonClass α ⊢ IntegrableOn f {x} ↔ f x = 0 ∨ ↑↑μ {x} < ⊤
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
have : f =ᵐ[μ.restrict {x}] fun _ => f x := by filter_upwards [ae_restrict_mem (measurableSet_singleton x)] with _ ha simp only [mem_singleton_iff.1 ha]
@[simp] theorem integrableOn_singleton_iff {x : α} [MeasurableSingletonClass α] : IntegrableOn f {x} μ ↔ f x = 0 ∨ μ {x} < ∞ := by
Mathlib.MeasureTheory.Integral.IntegrableOn.202_0.qIpN2P2TD1gUH4J
@[simp] theorem integrableOn_singleton_iff {x : α} [MeasurableSingletonClass α] : IntegrableOn f {x} μ ↔ f x = 0 ∨ μ {x} < ∞
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α x : α inst✝ : MeasurableSingletonClass α ⊢ f =ᵐ[Measure.restrict μ {x}] fun x_1 => f x
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
filter_upwards [ae_restrict_mem (measurableSet_singleton x)] with _ ha
@[simp] theorem integrableOn_singleton_iff {x : α} [MeasurableSingletonClass α] : IntegrableOn f {x} μ ↔ f x = 0 ∨ μ {x} < ∞ := by have : f =ᵐ[μ.restrict {x}] fun _ => f x := by
Mathlib.MeasureTheory.Integral.IntegrableOn.202_0.qIpN2P2TD1gUH4J
@[simp] theorem integrableOn_singleton_iff {x : α} [MeasurableSingletonClass α] : IntegrableOn f {x} μ ↔ f x = 0 ∨ μ {x} < ∞
Mathlib_MeasureTheory_Integral_IntegrableOn
case h α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α x : α inst✝ : MeasurableSingletonClass α a✝ : α ha : a✝ ∈ {x} ⊢ f a✝ = f x
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
simp only [mem_singleton_iff.1 ha]
@[simp] theorem integrableOn_singleton_iff {x : α} [MeasurableSingletonClass α] : IntegrableOn f {x} μ ↔ f x = 0 ∨ μ {x} < ∞ := by have : f =ᵐ[μ.restrict {x}] fun _ => f x := by filter_upwards [ae_restrict_mem (measurableSet_singleton x)] with _ ha
Mathlib.MeasureTheory.Integral.IntegrableOn.202_0.qIpN2P2TD1gUH4J
@[simp] theorem integrableOn_singleton_iff {x : α} [MeasurableSingletonClass α] : IntegrableOn f {x} μ ↔ f x = 0 ∨ μ {x} < ∞
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α x : α inst✝ : MeasurableSingletonClass α this : f =ᵐ[Measure.restrict μ {x}] fun x_1 => f x ⊢ IntegrableOn f {x} ↔ f x = 0 ∨ ↑↑μ {x} < ⊤
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
rw [IntegrableOn, integrable_congr this, integrable_const_iff]
@[simp] theorem integrableOn_singleton_iff {x : α} [MeasurableSingletonClass α] : IntegrableOn f {x} μ ↔ f x = 0 ∨ μ {x} < ∞ := by have : f =ᵐ[μ.restrict {x}] fun _ => f x := by filter_upwards [ae_restrict_mem (measurableSet_singleton x)] with _ ha simp only [mem_singleton_iff.1 ha]
Mathlib.MeasureTheory.Integral.IntegrableOn.202_0.qIpN2P2TD1gUH4J
@[simp] theorem integrableOn_singleton_iff {x : α} [MeasurableSingletonClass α] : IntegrableOn f {x} μ ↔ f x = 0 ∨ μ {x} < ∞
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α x : α inst✝ : MeasurableSingletonClass α this : f =ᵐ[Measure.restrict μ {x}] fun x_1 => f x ⊢ f x = 0 ∨ ↑↑(Measure.restrict μ {x}) univ < ⊤ ↔ f x = 0 ∨ ↑↑μ {x} < ⊤
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
simp
@[simp] theorem integrableOn_singleton_iff {x : α} [MeasurableSingletonClass α] : IntegrableOn f {x} μ ↔ f x = 0 ∨ μ {x} < ∞ := by have : f =ᵐ[μ.restrict {x}] fun _ => f x := by filter_upwards [ae_restrict_mem (measurableSet_singleton x)] with _ ha simp only [mem_singleton_iff.1 ha] rw [IntegrableOn, in...
Mathlib.MeasureTheory.Integral.IntegrableOn.202_0.qIpN2P2TD1gUH4J
@[simp] theorem integrableOn_singleton_iff {x : α} [MeasurableSingletonClass α] : IntegrableOn f {x} μ ↔ f x = 0 ∨ μ {x} < ∞
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s✝ t✝ : Set α μ ν : Measure α s : Set β hs : Set.Finite s t : β → Set α ⊢ IntegrableOn f (⋃ i ∈ s, t i) ↔ ∀ i ∈ s, IntegrableOn f (t i)
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
refine hs.induction_on ?_ ?_
@[simp] theorem integrableOn_finite_biUnion {s : Set β} (hs : s.Finite) {t : β → Set α} : IntegrableOn f (⋃ i ∈ s, t i) μ ↔ ∀ i ∈ s, IntegrableOn f (t i) μ := by
Mathlib.MeasureTheory.Integral.IntegrableOn.212_0.qIpN2P2TD1gUH4J
@[simp] theorem integrableOn_finite_biUnion {s : Set β} (hs : s.Finite) {t : β → Set α} : IntegrableOn f (⋃ i ∈ s, t i) μ ↔ ∀ i ∈ s, IntegrableOn f (t i) μ
Mathlib_MeasureTheory_Integral_IntegrableOn
case refine_1 α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s✝ t✝ : Set α μ ν : Measure α s : Set β hs : Set.Finite s t : β → Set α ⊢ IntegrableOn f (⋃ i ∈ ∅, t i) ↔ ∀ i ∈ ∅, IntegrableOn f (t i)
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
simp
@[simp] theorem integrableOn_finite_biUnion {s : Set β} (hs : s.Finite) {t : β → Set α} : IntegrableOn f (⋃ i ∈ s, t i) μ ↔ ∀ i ∈ s, IntegrableOn f (t i) μ := by refine hs.induction_on ?_ ?_ ·
Mathlib.MeasureTheory.Integral.IntegrableOn.212_0.qIpN2P2TD1gUH4J
@[simp] theorem integrableOn_finite_biUnion {s : Set β} (hs : s.Finite) {t : β → Set α} : IntegrableOn f (⋃ i ∈ s, t i) μ ↔ ∀ i ∈ s, IntegrableOn f (t i) μ
Mathlib_MeasureTheory_Integral_IntegrableOn
case refine_2 α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s✝ t✝ : Set α μ ν : Measure α s : Set β hs : Set.Finite s t : β → Set α ⊢ ∀ {a : β} {s : Set β}, a ∉ s → Set.Finite s → (IntegrableOn f (⋃ i ∈ s, t i) ↔ ∀ i ∈ s, Integr...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
intro a s _ _ hf
@[simp] theorem integrableOn_finite_biUnion {s : Set β} (hs : s.Finite) {t : β → Set α} : IntegrableOn f (⋃ i ∈ s, t i) μ ↔ ∀ i ∈ s, IntegrableOn f (t i) μ := by refine hs.induction_on ?_ ?_ · simp ·
Mathlib.MeasureTheory.Integral.IntegrableOn.212_0.qIpN2P2TD1gUH4J
@[simp] theorem integrableOn_finite_biUnion {s : Set β} (hs : s.Finite) {t : β → Set α} : IntegrableOn f (⋃ i ∈ s, t i) μ ↔ ∀ i ∈ s, IntegrableOn f (t i) μ
Mathlib_MeasureTheory_Integral_IntegrableOn
case refine_2 α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s✝¹ t✝ : Set α μ ν : Measure α s✝ : Set β hs : Set.Finite s✝ t : β → Set α a : β s : Set β a✝¹ : a ∉ s a✝ : Set.Finite s hf : IntegrableOn f (⋃ i ∈ s, t i) ↔ ∀ i ∈ s, IntegrableOn f (t i...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
simp [hf, or_imp, forall_and]
@[simp] theorem integrableOn_finite_biUnion {s : Set β} (hs : s.Finite) {t : β → Set α} : IntegrableOn f (⋃ i ∈ s, t i) μ ↔ ∀ i ∈ s, IntegrableOn f (t i) μ := by refine hs.induction_on ?_ ?_ · simp · intro a s _ _ hf;
Mathlib.MeasureTheory.Integral.IntegrableOn.212_0.qIpN2P2TD1gUH4J
@[simp] theorem integrableOn_finite_biUnion {s : Set β} (hs : s.Finite) {t : β → Set α} : IntegrableOn f (⋃ i ∈ s, t i) μ ↔ ∀ i ∈ s, IntegrableOn f (t i) μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E f g : α → E s t✝ : Set α μ ν : Measure α inst✝ : Finite β t : β → Set α ⊢ IntegrableOn f (⋃ i, t i) ↔ ∀ (i : β), IntegrableOn f (t i)
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
cases nonempty_fintype β
@[simp] theorem integrableOn_finite_iUnion [Finite β] {t : β → Set α} : IntegrableOn f (⋃ i, t i) μ ↔ ∀ i, IntegrableOn f (t i) μ := by
Mathlib.MeasureTheory.Integral.IntegrableOn.226_0.qIpN2P2TD1gUH4J
@[simp] theorem integrableOn_finite_iUnion [Finite β] {t : β → Set α} : IntegrableOn f (⋃ i, t i) μ ↔ ∀ i, IntegrableOn f (t i) μ
Mathlib_MeasureTheory_Integral_IntegrableOn
case intro α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E f g : α → E s t✝ : Set α μ ν : Measure α inst✝ : Finite β t : β → Set α val✝ : Fintype β ⊢ IntegrableOn f (⋃ i, t i) ↔ ∀ (i : β), IntegrableOn f (t i)
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
simpa using @integrableOn_finset_iUnion _ _ _ _ _ f μ Finset.univ t
@[simp] theorem integrableOn_finite_iUnion [Finite β] {t : β → Set α} : IntegrableOn f (⋃ i, t i) μ ↔ ∀ i, IntegrableOn f (t i) μ := by cases nonempty_fintype β
Mathlib.MeasureTheory.Integral.IntegrableOn.226_0.qIpN2P2TD1gUH4J
@[simp] theorem integrableOn_finite_iUnion [Finite β] {t : β → Set α} : IntegrableOn f (⋃ i, t i) μ ↔ ∀ i, IntegrableOn f (t i) μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hμ : IntegrableOn f s hν : IntegrableOn f s ⊢ IntegrableOn f s
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
delta IntegrableOn
theorem IntegrableOn.add_measure (hμ : IntegrableOn f s μ) (hν : IntegrableOn f s ν) : IntegrableOn f s (μ + ν) := by
Mathlib.MeasureTheory.Integral.IntegrableOn.233_0.qIpN2P2TD1gUH4J
theorem IntegrableOn.add_measure (hμ : IntegrableOn f s μ) (hν : IntegrableOn f s ν) : IntegrableOn f s (μ + ν)
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hμ : IntegrableOn f s hν : IntegrableOn f s ⊢ Integrable f
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
rw [Measure.restrict_add]
theorem IntegrableOn.add_measure (hμ : IntegrableOn f s μ) (hν : IntegrableOn f s ν) : IntegrableOn f s (μ + ν) := by delta IntegrableOn;
Mathlib.MeasureTheory.Integral.IntegrableOn.233_0.qIpN2P2TD1gUH4J
theorem IntegrableOn.add_measure (hμ : IntegrableOn f s μ) (hν : IntegrableOn f s ν) : IntegrableOn f s (μ + ν)
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hμ : IntegrableOn f s hν : IntegrableOn f s ⊢ Integrable f
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
exact hμ.integrable.add_measure hν
theorem IntegrableOn.add_measure (hμ : IntegrableOn f s μ) (hν : IntegrableOn f s ν) : IntegrableOn f s (μ + ν) := by delta IntegrableOn; rw [Measure.restrict_add];
Mathlib.MeasureTheory.Integral.IntegrableOn.233_0.qIpN2P2TD1gUH4J
theorem IntegrableOn.add_measure (hμ : IntegrableOn f s μ) (hν : IntegrableOn f s ν) : IntegrableOn f s (μ + ν)
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E f✝ g : α → E s✝ t : Set α μ✝ ν : Measure α inst✝ : MeasurableSpace β e : α → β he : MeasurableEmbedding e f : β → E μ : Measure α s : Set β ⊢ IntegrableOn f s ↔ IntegrableOn (f ∘ e) (e ⁻¹' s)
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
simp_rw [IntegrableOn, he.restrict_map, he.integrable_map_iff]
theorem _root_.MeasurableEmbedding.integrableOn_map_iff [MeasurableSpace β] {e : α → β} (he : MeasurableEmbedding e) {f : β → E} {μ : Measure α} {s : Set β} : IntegrableOn f s (μ.map e) ↔ IntegrableOn (f ∘ e) (e ⁻¹' s) μ := by
Mathlib.MeasureTheory.Integral.IntegrableOn.246_0.qIpN2P2TD1gUH4J
theorem _root_.MeasurableEmbedding.integrableOn_map_iff [MeasurableSpace β] {e : α → β} (he : MeasurableEmbedding e) {f : β → E} {μ : Measure α} {s : Set β} : IntegrableOn f s (μ.map e) ↔ IntegrableOn (f ∘ e) (e ⁻¹' s) μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E f✝ g : α → E s✝ t : Set α μ✝ ν : Measure α inst✝ : MeasurableSpace β e : α → β he : MeasurableEmbedding e f : β → E μ : Measure β s : Set β hs : s ⊆ range e ⊢ IntegrableOn f s ↔ IntegrableOn (f ∘ e) (e ⁻¹' s)
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
simp_rw [← he.integrableOn_map_iff, he.map_comap, IntegrableOn, Measure.restrict_restrict_of_subset hs]
theorem _root_.MeasurableEmbedding.integrableOn_iff_comap [MeasurableSpace β] {e : α → β} (he : MeasurableEmbedding e) {f : β → E} {μ : Measure β} {s : Set β} (hs : s ⊆ range e) : IntegrableOn f s μ ↔ IntegrableOn (f ∘ e) (e ⁻¹' s) (μ.comap e) := by
Mathlib.MeasureTheory.Integral.IntegrableOn.252_0.qIpN2P2TD1gUH4J
theorem _root_.MeasurableEmbedding.integrableOn_iff_comap [MeasurableSpace β] {e : α → β} (he : MeasurableEmbedding e) {f : β → E} {μ : Measure β} {s : Set β} (hs : s ⊆ range e) : IntegrableOn f s μ ↔ IntegrableOn (f ∘ e) (e ⁻¹' s) (μ.comap e)
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E f✝ g : α → E s✝ t : Set α μ✝ ν : Measure α inst✝ : MeasurableSpace β e : α ≃ᵐ β f : β → E μ : Measure α s : Set β ⊢ IntegrableOn f s ↔ IntegrableOn (f ∘ ⇑e) (⇑e ⁻¹' s)
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
simp only [IntegrableOn, e.restrict_map, integrable_map_equiv e]
theorem integrableOn_map_equiv [MeasurableSpace β] (e : α ≃ᵐ β) {f : β → E} {μ : Measure α} {s : Set β} : IntegrableOn f s (μ.map e) ↔ IntegrableOn (f ∘ e) (e ⁻¹' s) μ := by
Mathlib.MeasureTheory.Integral.IntegrableOn.258_0.qIpN2P2TD1gUH4J
theorem integrableOn_map_equiv [MeasurableSpace β] (e : α ≃ᵐ β) {f : β → E} {μ : Measure α} {s : Set β} : IntegrableOn f s (μ.map e) ↔ IntegrableOn (f ∘ e) (e ⁻¹' s) μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hs : MeasurableSet s ⊢ Integrable (indicator s f) ↔ IntegrableOn f s
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
simp [IntegrableOn, Integrable, HasFiniteIntegral, nnnorm_indicator_eq_indicator_nnnorm, ENNReal.coe_indicator, lintegral_indicator _ hs, aestronglyMeasurable_indicator_iff hs]
theorem integrable_indicator_iff (hs : MeasurableSet s) : Integrable (indicator s f) μ ↔ IntegrableOn f s μ := by
Mathlib.MeasureTheory.Integral.IntegrableOn.275_0.qIpN2P2TD1gUH4J
theorem integrable_indicator_iff (hs : MeasurableSet s) : Integrable (indicator s f) μ ↔ IntegrableOn f s μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E✝ : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E✝ f g : α → E✝ s✝ t : Set α μ ν : Measure α E : Type u_5 inst✝ : NormedAddCommGroup E p : ℝ≥0∞ s : Set α hs : MeasurableSet s hμs : ↑↑μ s ≠ ⊤ c : E ⊢ Integrable ↑↑(indicatorConstLp p hs hμs c)
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
rw [integrable_congr indicatorConstLp_coeFn, integrable_indicator_iff hs, IntegrableOn, integrable_const_iff, lt_top_iff_ne_top]
theorem integrable_indicatorConstLp {E} [NormedAddCommGroup E] {p : ℝ≥0∞} {s : Set α} (hs : MeasurableSet s) (hμs : μ s ≠ ∞) (c : E) : Integrable (indicatorConstLp p hs hμs c) μ := by
Mathlib.MeasureTheory.Integral.IntegrableOn.296_0.qIpN2P2TD1gUH4J
theorem integrable_indicatorConstLp {E} [NormedAddCommGroup E] {p : ℝ≥0∞} {s : Set α} (hs : MeasurableSet s) (hμs : μ s ≠ ∞) (c : E) : Integrable (indicatorConstLp p hs hμs c) μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E✝ : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E✝ f g : α → E✝ s✝ t : Set α μ ν : Measure α E : Type u_5 inst✝ : NormedAddCommGroup E p : ℝ≥0∞ s : Set α hs : MeasurableSet s hμs : ↑↑μ s ≠ ⊤ c : E ⊢ c = 0 ∨ ↑↑(Measure.restrict μ s) univ ≠ ⊤
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
right
theorem integrable_indicatorConstLp {E} [NormedAddCommGroup E] {p : ℝ≥0∞} {s : Set α} (hs : MeasurableSet s) (hμs : μ s ≠ ∞) (c : E) : Integrable (indicatorConstLp p hs hμs c) μ := by rw [integrable_congr indicatorConstLp_coeFn, integrable_indicator_iff hs, IntegrableOn, integrable_const_iff, lt_top_iff_n...
Mathlib.MeasureTheory.Integral.IntegrableOn.296_0.qIpN2P2TD1gUH4J
theorem integrable_indicatorConstLp {E} [NormedAddCommGroup E] {p : ℝ≥0∞} {s : Set α} (hs : MeasurableSet s) (hμs : μ s ≠ ∞) (c : E) : Integrable (indicatorConstLp p hs hμs c) μ
Mathlib_MeasureTheory_Integral_IntegrableOn
case h α : Type u_1 β : Type u_2 E✝ : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E✝ f g : α → E✝ s✝ t : Set α μ ν : Measure α E : Type u_5 inst✝ : NormedAddCommGroup E p : ℝ≥0∞ s : Set α hs : MeasurableSet s hμs : ↑↑μ s ≠ ⊤ c : E ⊢ ↑↑(Measure.restrict μ s) univ ≠ ⊤
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
simpa only [Set.univ_inter, MeasurableSet.univ, Measure.restrict_apply] using hμs
theorem integrable_indicatorConstLp {E} [NormedAddCommGroup E] {p : ℝ≥0∞} {s : Set α} (hs : MeasurableSet s) (hμs : μ s ≠ ∞) (c : E) : Integrable (indicatorConstLp p hs hμs c) μ := by rw [integrable_congr indicatorConstLp_coeFn, integrable_indicator_iff hs, IntegrableOn, integrable_const_iff, lt_top_iff_n...
Mathlib.MeasureTheory.Integral.IntegrableOn.296_0.qIpN2P2TD1gUH4J
theorem integrable_indicatorConstLp {E} [NormedAddCommGroup E] {p : ℝ≥0∞} {s : Set α} (hs : MeasurableSet s) (hμs : μ s ≠ ∞) (c : E) : Integrable (indicatorConstLp p hs hμs c) μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s h's : ∀ x ∈ s, f x ≠ 0 ⊢ Measure.restrict μ (toMeasurable μ s) = Measure.restrict μ s
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
rcases exists_seq_strictAnti_tendsto (0 : ℝ) with ⟨u, _, u_pos, u_lim⟩
/-- If a function is integrable on a set `s` and nonzero there, then the measurable hull of `s` is well behaved: the restriction of the measure to `toMeasurable μ s` coincides with its restriction to `s`. -/ theorem IntegrableOn.restrict_toMeasurable (hf : IntegrableOn f s μ) (h's : ∀ x ∈ s, f x ≠ 0) : μ.restrict (...
Mathlib.MeasureTheory.Integral.IntegrableOn.306_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s` and nonzero there, then the measurable hull of `s` is well behaved: the restriction of the measure to `toMeasurable μ s` coincides with its restriction to `s`. -/ theorem IntegrableOn.restrict_toMeasurable (hf : IntegrableOn f s μ) (h's : ∀ x ∈ s, f x ≠ 0) : μ.restrict (...
Mathlib_MeasureTheory_Integral_IntegrableOn
case intro.intro.intro α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s h's : ∀ x ∈ s, f x ≠ 0 u : ℕ → ℝ left✝ : StrictAnti u u_pos : ∀ (n : ℕ), 0 < u n u_lim : Tendsto u atTop (𝓝 0) ⊢ Measure.restr...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
let v n := toMeasurable (μ.restrict s) { x | u n ≤ ‖f x‖ }
/-- If a function is integrable on a set `s` and nonzero there, then the measurable hull of `s` is well behaved: the restriction of the measure to `toMeasurable μ s` coincides with its restriction to `s`. -/ theorem IntegrableOn.restrict_toMeasurable (hf : IntegrableOn f s μ) (h's : ∀ x ∈ s, f x ≠ 0) : μ.restrict (...
Mathlib.MeasureTheory.Integral.IntegrableOn.306_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s` and nonzero there, then the measurable hull of `s` is well behaved: the restriction of the measure to `toMeasurable μ s` coincides with its restriction to `s`. -/ theorem IntegrableOn.restrict_toMeasurable (hf : IntegrableOn f s μ) (h's : ∀ x ∈ s, f x ≠ 0) : μ.restrict (...
Mathlib_MeasureTheory_Integral_IntegrableOn
case intro.intro.intro α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s h's : ∀ x ∈ s, f x ≠ 0 u : ℕ → ℝ left✝ : StrictAnti u u_pos : ∀ (n : ℕ), 0 < u n u_lim : Tendsto u atTop (𝓝 0) v : ℕ → Set α :...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
have A : ∀ n, μ (s ∩ v n) ≠ ∞ := by intro n rw [inter_comm, ← Measure.restrict_apply (measurableSet_toMeasurable _ _), measure_toMeasurable] exact (hf.measure_norm_ge_lt_top (u_pos n)).ne
/-- If a function is integrable on a set `s` and nonzero there, then the measurable hull of `s` is well behaved: the restriction of the measure to `toMeasurable μ s` coincides with its restriction to `s`. -/ theorem IntegrableOn.restrict_toMeasurable (hf : IntegrableOn f s μ) (h's : ∀ x ∈ s, f x ≠ 0) : μ.restrict (...
Mathlib.MeasureTheory.Integral.IntegrableOn.306_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s` and nonzero there, then the measurable hull of `s` is well behaved: the restriction of the measure to `toMeasurable μ s` coincides with its restriction to `s`. -/ theorem IntegrableOn.restrict_toMeasurable (hf : IntegrableOn f s μ) (h's : ∀ x ∈ s, f x ≠ 0) : μ.restrict (...
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s h's : ∀ x ∈ s, f x ≠ 0 u : ℕ → ℝ left✝ : StrictAnti u u_pos : ∀ (n : ℕ), 0 < u n u_lim : Tendsto u atTop (𝓝 0) v : ℕ → Set α := fun n => toMeasurable...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
intro n
/-- If a function is integrable on a set `s` and nonzero there, then the measurable hull of `s` is well behaved: the restriction of the measure to `toMeasurable μ s` coincides with its restriction to `s`. -/ theorem IntegrableOn.restrict_toMeasurable (hf : IntegrableOn f s μ) (h's : ∀ x ∈ s, f x ≠ 0) : μ.restrict (...
Mathlib.MeasureTheory.Integral.IntegrableOn.306_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s` and nonzero there, then the measurable hull of `s` is well behaved: the restriction of the measure to `toMeasurable μ s` coincides with its restriction to `s`. -/ theorem IntegrableOn.restrict_toMeasurable (hf : IntegrableOn f s μ) (h's : ∀ x ∈ s, f x ≠ 0) : μ.restrict (...
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s h's : ∀ x ∈ s, f x ≠ 0 u : ℕ → ℝ left✝ : StrictAnti u u_pos : ∀ (n : ℕ), 0 < u n u_lim : Tendsto u atTop (𝓝 0) v : ℕ → Set α := fun n => toMeasurable...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
rw [inter_comm, ← Measure.restrict_apply (measurableSet_toMeasurable _ _), measure_toMeasurable]
/-- If a function is integrable on a set `s` and nonzero there, then the measurable hull of `s` is well behaved: the restriction of the measure to `toMeasurable μ s` coincides with its restriction to `s`. -/ theorem IntegrableOn.restrict_toMeasurable (hf : IntegrableOn f s μ) (h's : ∀ x ∈ s, f x ≠ 0) : μ.restrict (...
Mathlib.MeasureTheory.Integral.IntegrableOn.306_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s` and nonzero there, then the measurable hull of `s` is well behaved: the restriction of the measure to `toMeasurable μ s` coincides with its restriction to `s`. -/ theorem IntegrableOn.restrict_toMeasurable (hf : IntegrableOn f s μ) (h's : ∀ x ∈ s, f x ≠ 0) : μ.restrict (...
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s h's : ∀ x ∈ s, f x ≠ 0 u : ℕ → ℝ left✝ : StrictAnti u u_pos : ∀ (n : ℕ), 0 < u n u_lim : Tendsto u atTop (𝓝 0) v : ℕ → Set α := fun n => toMeasurable...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
exact (hf.measure_norm_ge_lt_top (u_pos n)).ne
/-- If a function is integrable on a set `s` and nonzero there, then the measurable hull of `s` is well behaved: the restriction of the measure to `toMeasurable μ s` coincides with its restriction to `s`. -/ theorem IntegrableOn.restrict_toMeasurable (hf : IntegrableOn f s μ) (h's : ∀ x ∈ s, f x ≠ 0) : μ.restrict (...
Mathlib.MeasureTheory.Integral.IntegrableOn.306_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s` and nonzero there, then the measurable hull of `s` is well behaved: the restriction of the measure to `toMeasurable μ s` coincides with its restriction to `s`. -/ theorem IntegrableOn.restrict_toMeasurable (hf : IntegrableOn f s μ) (h's : ∀ x ∈ s, f x ≠ 0) : μ.restrict (...
Mathlib_MeasureTheory_Integral_IntegrableOn
case intro.intro.intro α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s h's : ∀ x ∈ s, f x ≠ 0 u : ℕ → ℝ left✝ : StrictAnti u u_pos : ∀ (n : ℕ), 0 < u n u_lim : Tendsto u atTop (𝓝 0) v : ℕ → Set α :...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
apply Measure.restrict_toMeasurable_of_cover _ A
/-- If a function is integrable on a set `s` and nonzero there, then the measurable hull of `s` is well behaved: the restriction of the measure to `toMeasurable μ s` coincides with its restriction to `s`. -/ theorem IntegrableOn.restrict_toMeasurable (hf : IntegrableOn f s μ) (h's : ∀ x ∈ s, f x ≠ 0) : μ.restrict (...
Mathlib.MeasureTheory.Integral.IntegrableOn.306_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s` and nonzero there, then the measurable hull of `s` is well behaved: the restriction of the measure to `toMeasurable μ s` coincides with its restriction to `s`. -/ theorem IntegrableOn.restrict_toMeasurable (hf : IntegrableOn f s μ) (h's : ∀ x ∈ s, f x ≠ 0) : μ.restrict (...
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s h's : ∀ x ∈ s, f x ≠ 0 u : ℕ → ℝ left✝ : StrictAnti u u_pos : ∀ (n : ℕ), 0 < u n u_lim : Tendsto u atTop (𝓝 0) v : ℕ → Set α := fun n => toMeasurable...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
intro x hx
/-- If a function is integrable on a set `s` and nonzero there, then the measurable hull of `s` is well behaved: the restriction of the measure to `toMeasurable μ s` coincides with its restriction to `s`. -/ theorem IntegrableOn.restrict_toMeasurable (hf : IntegrableOn f s μ) (h's : ∀ x ∈ s, f x ≠ 0) : μ.restrict (...
Mathlib.MeasureTheory.Integral.IntegrableOn.306_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s` and nonzero there, then the measurable hull of `s` is well behaved: the restriction of the measure to `toMeasurable μ s` coincides with its restriction to `s`. -/ theorem IntegrableOn.restrict_toMeasurable (hf : IntegrableOn f s μ) (h's : ∀ x ∈ s, f x ≠ 0) : μ.restrict (...
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s h's : ∀ x ∈ s, f x ≠ 0 u : ℕ → ℝ left✝ : StrictAnti u u_pos : ∀ (n : ℕ), 0 < u n u_lim : Tendsto u atTop (𝓝 0) v : ℕ → Set α := fun n => toMeasurable...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
have : 0 < ‖f x‖ := by simp only [h's x hx, norm_pos_iff, Ne.def, not_false_iff]
/-- If a function is integrable on a set `s` and nonzero there, then the measurable hull of `s` is well behaved: the restriction of the measure to `toMeasurable μ s` coincides with its restriction to `s`. -/ theorem IntegrableOn.restrict_toMeasurable (hf : IntegrableOn f s μ) (h's : ∀ x ∈ s, f x ≠ 0) : μ.restrict (...
Mathlib.MeasureTheory.Integral.IntegrableOn.306_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s` and nonzero there, then the measurable hull of `s` is well behaved: the restriction of the measure to `toMeasurable μ s` coincides with its restriction to `s`. -/ theorem IntegrableOn.restrict_toMeasurable (hf : IntegrableOn f s μ) (h's : ∀ x ∈ s, f x ≠ 0) : μ.restrict (...
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s h's : ∀ x ∈ s, f x ≠ 0 u : ℕ → ℝ left✝ : StrictAnti u u_pos : ∀ (n : ℕ), 0 < u n u_lim : Tendsto u atTop (𝓝 0) v : ℕ → Set α := fun n => toMeasurable...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
simp only [h's x hx, norm_pos_iff, Ne.def, not_false_iff]
/-- If a function is integrable on a set `s` and nonzero there, then the measurable hull of `s` is well behaved: the restriction of the measure to `toMeasurable μ s` coincides with its restriction to `s`. -/ theorem IntegrableOn.restrict_toMeasurable (hf : IntegrableOn f s μ) (h's : ∀ x ∈ s, f x ≠ 0) : μ.restrict (...
Mathlib.MeasureTheory.Integral.IntegrableOn.306_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s` and nonzero there, then the measurable hull of `s` is well behaved: the restriction of the measure to `toMeasurable μ s` coincides with its restriction to `s`. -/ theorem IntegrableOn.restrict_toMeasurable (hf : IntegrableOn f s μ) (h's : ∀ x ∈ s, f x ≠ 0) : μ.restrict (...
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s h's : ∀ x ∈ s, f x ≠ 0 u : ℕ → ℝ left✝ : StrictAnti u u_pos : ∀ (n : ℕ), 0 < u n u_lim : Tendsto u atTop (𝓝 0) v : ℕ → Set α := fun n => toMeasurable...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
obtain ⟨n, hn⟩ : ∃ n, u n < ‖f x‖
/-- If a function is integrable on a set `s` and nonzero there, then the measurable hull of `s` is well behaved: the restriction of the measure to `toMeasurable μ s` coincides with its restriction to `s`. -/ theorem IntegrableOn.restrict_toMeasurable (hf : IntegrableOn f s μ) (h's : ∀ x ∈ s, f x ≠ 0) : μ.restrict (...
Mathlib.MeasureTheory.Integral.IntegrableOn.306_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s` and nonzero there, then the measurable hull of `s` is well behaved: the restriction of the measure to `toMeasurable μ s` coincides with its restriction to `s`. -/ theorem IntegrableOn.restrict_toMeasurable (hf : IntegrableOn f s μ) (h's : ∀ x ∈ s, f x ≠ 0) : μ.restrict (...
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s h's : ∀ x ∈ s, f x ≠ 0 u : ℕ → ℝ left✝ : StrictAnti u u_pos : ∀ (n : ℕ), 0 < u n u_lim : Tendsto u atTop (𝓝 0) v : ℕ → Set α := fun n => toMeasurable...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
exact ((tendsto_order.1 u_lim).2 _ this).exists
/-- If a function is integrable on a set `s` and nonzero there, then the measurable hull of `s` is well behaved: the restriction of the measure to `toMeasurable μ s` coincides with its restriction to `s`. -/ theorem IntegrableOn.restrict_toMeasurable (hf : IntegrableOn f s μ) (h's : ∀ x ∈ s, f x ≠ 0) : μ.restrict (...
Mathlib.MeasureTheory.Integral.IntegrableOn.306_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s` and nonzero there, then the measurable hull of `s` is well behaved: the restriction of the measure to `toMeasurable μ s` coincides with its restriction to `s`. -/ theorem IntegrableOn.restrict_toMeasurable (hf : IntegrableOn f s μ) (h's : ∀ x ∈ s, f x ≠ 0) : μ.restrict (...
Mathlib_MeasureTheory_Integral_IntegrableOn
case intro α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s h's : ∀ x ∈ s, f x ≠ 0 u : ℕ → ℝ left✝ : StrictAnti u u_pos : ∀ (n : ℕ), 0 < u n u_lim : Tendsto u atTop (𝓝 0) v : ℕ → Set α := fun n => t...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
refine' mem_iUnion.2 ⟨n, _⟩
/-- If a function is integrable on a set `s` and nonzero there, then the measurable hull of `s` is well behaved: the restriction of the measure to `toMeasurable μ s` coincides with its restriction to `s`. -/ theorem IntegrableOn.restrict_toMeasurable (hf : IntegrableOn f s μ) (h's : ∀ x ∈ s, f x ≠ 0) : μ.restrict (...
Mathlib.MeasureTheory.Integral.IntegrableOn.306_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s` and nonzero there, then the measurable hull of `s` is well behaved: the restriction of the measure to `toMeasurable μ s` coincides with its restriction to `s`. -/ theorem IntegrableOn.restrict_toMeasurable (hf : IntegrableOn f s μ) (h's : ∀ x ∈ s, f x ≠ 0) : μ.restrict (...
Mathlib_MeasureTheory_Integral_IntegrableOn
case intro α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s h's : ∀ x ∈ s, f x ≠ 0 u : ℕ → ℝ left✝ : StrictAnti u u_pos : ∀ (n : ℕ), 0 < u n u_lim : Tendsto u atTop (𝓝 0) v : ℕ → Set α := fun n => t...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
exact subset_toMeasurable _ _ hn.le
/-- If a function is integrable on a set `s` and nonzero there, then the measurable hull of `s` is well behaved: the restriction of the measure to `toMeasurable μ s` coincides with its restriction to `s`. -/ theorem IntegrableOn.restrict_toMeasurable (hf : IntegrableOn f s μ) (h's : ∀ x ∈ s, f x ≠ 0) : μ.restrict (...
Mathlib.MeasureTheory.Integral.IntegrableOn.306_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s` and nonzero there, then the measurable hull of `s` is well behaved: the restriction of the measure to `toMeasurable μ s` coincides with its restriction to `s`. -/ theorem IntegrableOn.restrict_toMeasurable (hf : IntegrableOn f s μ) (h's : ∀ x ∈ s, f x ≠ 0) : μ.restrict (...
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s ht : NullMeasurableSet t h't : ∀ᵐ (x : α) ∂μ, x ∈ t \ s → f x = 0 ⊢ IntegrableOn f t
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
let u := { x ∈ s | f x ≠ 0 }
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ := by
Mathlib.MeasureTheory.Integral.IntegrableOn.326_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s ht : NullMeasurableSet t h't : ∀ᵐ (x : α) ∂μ, x ∈ t \ s → f x = 0 u : Set α := {x | x ∈ s ∧ f x ≠ 0} ⊢ IntegrableOn f t
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
have hu : IntegrableOn f u μ := hf.mono_set fun x hx => hx.1
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ := by let u := { x ∈ s | f x ≠ ...
Mathlib.MeasureTheory.Integral.IntegrableOn.326_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s ht : NullMeasurableSet t h't : ∀ᵐ (x : α) ∂μ, x ∈ t \ s → f x = 0 u : Set α := {x | x ∈ s ∧ f x ≠ 0} hu : IntegrableOn f u ⊢ IntegrableOn f t
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
let v := toMeasurable μ u
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ := by let u := { x ∈ s | f x ≠ ...
Mathlib.MeasureTheory.Integral.IntegrableOn.326_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s ht : NullMeasurableSet t h't : ∀ᵐ (x : α) ∂μ, x ∈ t \ s → f x = 0 u : Set α := {x | x ∈ s ∧ f x ≠ 0} hu : IntegrableOn f u v : Set α := toMeasurable μ...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
have A : IntegrableOn f v μ := by rw [IntegrableOn, hu.restrict_toMeasurable] · exact hu · intro x hx; exact hx.2
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ := by let u := { x ∈ s | f x ≠ ...
Mathlib.MeasureTheory.Integral.IntegrableOn.326_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s ht : NullMeasurableSet t h't : ∀ᵐ (x : α) ∂μ, x ∈ t \ s → f x = 0 u : Set α := {x | x ∈ s ∧ f x ≠ 0} hu : IntegrableOn f u v : Set α := toMeasurable μ...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
rw [IntegrableOn, hu.restrict_toMeasurable]
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ := by let u := { x ∈ s | f x ≠ ...
Mathlib.MeasureTheory.Integral.IntegrableOn.326_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s ht : NullMeasurableSet t h't : ∀ᵐ (x : α) ∂μ, x ∈ t \ s → f x = 0 u : Set α := {x | x ∈ s ∧ f x ≠ 0} hu : IntegrableOn f u v : Set α := toMeasurable μ...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
exact hu
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ := by let u := { x ∈ s | f x ≠ ...
Mathlib.MeasureTheory.Integral.IntegrableOn.326_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s ht : NullMeasurableSet t h't : ∀ᵐ (x : α) ∂μ, x ∈ t \ s → f x = 0 u : Set α := {x | x ∈ s ∧ f x ≠ 0} hu : IntegrableOn f u v : Set α := toMeasurable μ...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
intro x hx
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ := by let u := { x ∈ s | f x ≠ ...
Mathlib.MeasureTheory.Integral.IntegrableOn.326_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s ht : NullMeasurableSet t h't : ∀ᵐ (x : α) ∂μ, x ∈ t \ s → f x = 0 u : Set α := {x | x ∈ s ∧ f x ≠ 0} hu : IntegrableOn f u v : Set α := toMeasurable μ...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
exact hx.2
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ := by let u := { x ∈ s | f x ≠ ...
Mathlib.MeasureTheory.Integral.IntegrableOn.326_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s ht : NullMeasurableSet t h't : ∀ᵐ (x : α) ∂μ, x ∈ t \ s → f x = 0 u : Set α := {x | x ∈ s ∧ f x ≠ 0} hu : IntegrableOn f u v : Set α := toMeasurable μ...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
have B : IntegrableOn f (t \ v) μ := by apply integrableOn_zero.congr filter_upwards [ae_restrict_of_ae h't, ae_restrict_mem₀ (ht.diff (measurableSet_toMeasurable μ u).nullMeasurableSet)] with x hxt hx by_cases h'x : x ∈ s · by_contra H exact hx.2 (subset_toMeasurable μ u ⟨h'x, Ne.symm H⟩) ...
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ := by let u := { x ∈ s | f x ≠ ...
Mathlib.MeasureTheory.Integral.IntegrableOn.326_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s ht : NullMeasurableSet t h't : ∀ᵐ (x : α) ∂μ, x ∈ t \ s → f x = 0 u : Set α := {x | x ∈ s ∧ f x ≠ 0} hu : IntegrableOn f u v : Set α := toMeasurable μ...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
apply integrableOn_zero.congr
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ := by let u := { x ∈ s | f x ≠ ...
Mathlib.MeasureTheory.Integral.IntegrableOn.326_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s ht : NullMeasurableSet t h't : ∀ᵐ (x : α) ∂μ, x ∈ t \ s → f x = 0 u : Set α := {x | x ∈ s ∧ f x ≠ 0} hu : IntegrableOn f u v : Set α := toMeasurable μ...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
filter_upwards [ae_restrict_of_ae h't, ae_restrict_mem₀ (ht.diff (measurableSet_toMeasurable μ u).nullMeasurableSet)] with x hxt hx
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ := by let u := { x ∈ s | f x ≠ ...
Mathlib.MeasureTheory.Integral.IntegrableOn.326_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ
Mathlib_MeasureTheory_Integral_IntegrableOn
case h α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s ht : NullMeasurableSet t h't : ∀ᵐ (x : α) ∂μ, x ∈ t \ s → f x = 0 u : Set α := {x | x ∈ s ∧ f x ≠ 0} hu : IntegrableOn f u v : Set α := toMeasu...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
by_cases h'x : x ∈ s
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ := by let u := { x ∈ s | f x ≠ ...
Mathlib.MeasureTheory.Integral.IntegrableOn.326_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ
Mathlib_MeasureTheory_Integral_IntegrableOn
case pos α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s ht : NullMeasurableSet t h't : ∀ᵐ (x : α) ∂μ, x ∈ t \ s → f x = 0 u : Set α := {x | x ∈ s ∧ f x ≠ 0} hu : IntegrableOn f u v : Set α := toMea...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
by_contra H
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ := by let u := { x ∈ s | f x ≠ ...
Mathlib.MeasureTheory.Integral.IntegrableOn.326_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ
Mathlib_MeasureTheory_Integral_IntegrableOn
case pos α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s ht : NullMeasurableSet t h't : ∀ᵐ (x : α) ∂μ, x ∈ t \ s → f x = 0 u : Set α := {x | x ∈ s ∧ f x ≠ 0} hu : IntegrableOn f u v : Set α := toMea...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
exact hx.2 (subset_toMeasurable μ u ⟨h'x, Ne.symm H⟩)
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ := by let u := { x ∈ s | f x ≠ ...
Mathlib.MeasureTheory.Integral.IntegrableOn.326_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ
Mathlib_MeasureTheory_Integral_IntegrableOn
case neg α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s ht : NullMeasurableSet t h't : ∀ᵐ (x : α) ∂μ, x ∈ t \ s → f x = 0 u : Set α := {x | x ∈ s ∧ f x ≠ 0} hu : IntegrableOn f u v : Set α := toMea...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
exact (hxt ⟨hx.1, h'x⟩).symm
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ := by let u := { x ∈ s | f x ≠ ...
Mathlib.MeasureTheory.Integral.IntegrableOn.326_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s ht : NullMeasurableSet t h't : ∀ᵐ (x : α) ∂μ, x ∈ t \ s → f x = 0 u : Set α := {x | x ∈ s ∧ f x ≠ 0} hu : IntegrableOn f u v : Set α := toMeasurable μ...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
apply (A.union B).mono_set _
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ := by let u := { x ∈ s | f x ≠ ...
Mathlib.MeasureTheory.Integral.IntegrableOn.326_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s ht : NullMeasurableSet t h't : ∀ᵐ (x : α) ∂μ, x ∈ t \ s → f x = 0 u : Set α := {x | x ∈ s ∧ f x ≠ 0} hu : IntegrableOn f u v : Set α := toMeasurable μ...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
rw [union_diff_self]
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ := by let u := { x ∈ s | f x ≠ ...
Mathlib.MeasureTheory.Integral.IntegrableOn.326_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s ht : NullMeasurableSet t h't : ∀ᵐ (x : α) ∂μ, x ∈ t \ s → f x = 0 u : Set α := {x | x ∈ s ∧ f x ≠ 0} hu : IntegrableOn f u v : Set α := toMeasurable μ...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
exact subset_union_right _ _
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ := by let u := { x ∈ s | f x ≠ ...
Mathlib.MeasureTheory.Integral.IntegrableOn.326_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s`, and vanishes on `t \ s`, then it is integrable on `t` if `t` is null-measurable. -/ theorem IntegrableOn.of_ae_diff_eq_zero (hf : IntegrableOn f s μ) (ht : NullMeasurableSet t μ) (h't : ∀ᵐ x ∂μ, x ∈ t \ s → f x = 0) : IntegrableOn f t μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s h't : ∀ᵐ (x : α) ∂μ, x ∉ s → f x = 0 ⊢ Integrable f
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
rw [← integrableOn_univ]
/-- If a function is integrable on a set `s` and vanishes almost everywhere on its complement, then it is integrable. -/ theorem IntegrableOn.integrable_of_ae_not_mem_eq_zero (hf : IntegrableOn f s μ) (h't : ∀ᵐ x ∂μ, x ∉ s → f x = 0) : Integrable f μ := by
Mathlib.MeasureTheory.Integral.IntegrableOn.357_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s` and vanishes almost everywhere on its complement, then it is integrable. -/ theorem IntegrableOn.integrable_of_ae_not_mem_eq_zero (hf : IntegrableOn f s μ) (h't : ∀ᵐ x ∂μ, x ∉ s → f x = 0) : Integrable f μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s h't : ∀ᵐ (x : α) ∂μ, x ∉ s → f x = 0 ⊢ IntegrableOn f univ
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
apply hf.of_ae_diff_eq_zero nullMeasurableSet_univ
/-- If a function is integrable on a set `s` and vanishes almost everywhere on its complement, then it is integrable. -/ theorem IntegrableOn.integrable_of_ae_not_mem_eq_zero (hf : IntegrableOn f s μ) (h't : ∀ᵐ x ∂μ, x ∉ s → f x = 0) : Integrable f μ := by rw [← integrableOn_univ]
Mathlib.MeasureTheory.Integral.IntegrableOn.357_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s` and vanishes almost everywhere on its complement, then it is integrable. -/ theorem IntegrableOn.integrable_of_ae_not_mem_eq_zero (hf : IntegrableOn f s μ) (h't : ∀ᵐ x ∂μ, x ∉ s → f x = 0) : Integrable f μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α hf : IntegrableOn f s h't : ∀ᵐ (x : α) ∂μ, x ∉ s → f x = 0 ⊢ ∀ᵐ (x : α) ∂μ, x ∈ univ \ s → f x = 0
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
filter_upwards [h't] with x hx h'x using hx h'x.2
/-- If a function is integrable on a set `s` and vanishes almost everywhere on its complement, then it is integrable. -/ theorem IntegrableOn.integrable_of_ae_not_mem_eq_zero (hf : IntegrableOn f s μ) (h't : ∀ᵐ x ∂μ, x ∉ s → f x = 0) : Integrable f μ := by rw [← integrableOn_univ] apply hf.of_ae_diff_eq_zero nu...
Mathlib.MeasureTheory.Integral.IntegrableOn.357_0.qIpN2P2TD1gUH4J
/-- If a function is integrable on a set `s` and vanishes almost everywhere on its complement, then it is integrable. -/ theorem IntegrableOn.integrable_of_ae_not_mem_eq_zero (hf : IntegrableOn f s μ) (h't : ∀ᵐ x ∂μ, x ∉ s → f x = 0) : Integrable f μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α h1s : support f ⊆ s ⊢ IntegrableOn f s ↔ Integrable f
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
refine' ⟨fun h => _, fun h => h.integrableOn⟩
theorem integrableOn_iff_integrable_of_support_subset (h1s : support f ⊆ s) : IntegrableOn f s μ ↔ Integrable f μ := by
Mathlib.MeasureTheory.Integral.IntegrableOn.373_0.qIpN2P2TD1gUH4J
theorem integrableOn_iff_integrable_of_support_subset (h1s : support f ⊆ s) : IntegrableOn f s μ ↔ Integrable f μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α h1s : support f ⊆ s h : IntegrableOn f s ⊢ Integrable f
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
refine h.integrable_of_forall_not_mem_eq_zero fun x hx => ?_
theorem integrableOn_iff_integrable_of_support_subset (h1s : support f ⊆ s) : IntegrableOn f s μ ↔ Integrable f μ := by refine' ⟨fun h => _, fun h => h.integrableOn⟩
Mathlib.MeasureTheory.Integral.IntegrableOn.373_0.qIpN2P2TD1gUH4J
theorem integrableOn_iff_integrable_of_support_subset (h1s : support f ⊆ s) : IntegrableOn f s μ ↔ Integrable f μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α h1s : support f ⊆ s h : IntegrableOn f s x : α hx : x ∉ s ⊢ f x = 0
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
contrapose! hx
theorem integrableOn_iff_integrable_of_support_subset (h1s : support f ⊆ s) : IntegrableOn f s μ ↔ Integrable f μ := by refine' ⟨fun h => _, fun h => h.integrableOn⟩ refine h.integrable_of_forall_not_mem_eq_zero fun x hx => ?_
Mathlib.MeasureTheory.Integral.IntegrableOn.373_0.qIpN2P2TD1gUH4J
theorem integrableOn_iff_integrable_of_support_subset (h1s : support f ⊆ s) : IntegrableOn f s μ ↔ Integrable f μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α h1s : support f ⊆ s h : IntegrableOn f s x : α hx : f x ≠ 0 ⊢ x ∈ s
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
exact h1s (mem_support.2 hx)
theorem integrableOn_iff_integrable_of_support_subset (h1s : support f ⊆ s) : IntegrableOn f s μ ↔ Integrable f μ := by refine' ⟨fun h => _, fun h => h.integrableOn⟩ refine h.integrable_of_forall_not_mem_eq_zero fun x hx => ?_ contrapose! hx
Mathlib.MeasureTheory.Integral.IntegrableOn.373_0.qIpN2P2TD1gUH4J
theorem integrableOn_iff_integrable_of_support_subset (h1s : support f ⊆ s) : IntegrableOn f s μ ↔ Integrable f μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E✝ : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E✝ f✝ g : α → E✝ s✝ t : Set α μ ν : Measure α E : Type u_5 inst✝ : NormedAddCommGroup E p : ℝ≥0∞ s : Set α f : ↥(Lp E p) hp : 1 ≤ p hμs : ↑↑μ s ≠ ⊤ ⊢ IntegrableOn (↑↑f) s
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
refine' memℒp_one_iff_integrable.mp _
theorem integrableOn_Lp_of_measure_ne_top {E} [NormedAddCommGroup E] {p : ℝ≥0∞} {s : Set α} (f : Lp E p μ) (hp : 1 ≤ p) (hμs : μ s ≠ ∞) : IntegrableOn f s μ := by
Mathlib.MeasureTheory.Integral.IntegrableOn.381_0.qIpN2P2TD1gUH4J
theorem integrableOn_Lp_of_measure_ne_top {E} [NormedAddCommGroup E] {p : ℝ≥0∞} {s : Set α} (f : Lp E p μ) (hp : 1 ≤ p) (hμs : μ s ≠ ∞) : IntegrableOn f s μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E✝ : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E✝ f✝ g : α → E✝ s✝ t : Set α μ ν : Measure α E : Type u_5 inst✝ : NormedAddCommGroup E p : ℝ≥0∞ s : Set α f : ↥(Lp E p) hp : 1 ≤ p hμs : ↑↑μ s ≠ ⊤ ⊢ Memℒp (↑↑f) 1
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
have hμ_restrict_univ : (μ.restrict s) Set.univ < ∞ := by simpa only [Set.univ_inter, MeasurableSet.univ, Measure.restrict_apply, lt_top_iff_ne_top]
theorem integrableOn_Lp_of_measure_ne_top {E} [NormedAddCommGroup E] {p : ℝ≥0∞} {s : Set α} (f : Lp E p μ) (hp : 1 ≤ p) (hμs : μ s ≠ ∞) : IntegrableOn f s μ := by refine' memℒp_one_iff_integrable.mp _
Mathlib.MeasureTheory.Integral.IntegrableOn.381_0.qIpN2P2TD1gUH4J
theorem integrableOn_Lp_of_measure_ne_top {E} [NormedAddCommGroup E] {p : ℝ≥0∞} {s : Set α} (f : Lp E p μ) (hp : 1 ≤ p) (hμs : μ s ≠ ∞) : IntegrableOn f s μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E✝ : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E✝ f✝ g : α → E✝ s✝ t : Set α μ ν : Measure α E : Type u_5 inst✝ : NormedAddCommGroup E p : ℝ≥0∞ s : Set α f : ↥(Lp E p) hp : 1 ≤ p hμs : ↑↑μ s ≠ ⊤ ⊢ ↑↑(Measure.restrict μ s) univ < ⊤
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
simpa only [Set.univ_inter, MeasurableSet.univ, Measure.restrict_apply, lt_top_iff_ne_top]
theorem integrableOn_Lp_of_measure_ne_top {E} [NormedAddCommGroup E] {p : ℝ≥0∞} {s : Set α} (f : Lp E p μ) (hp : 1 ≤ p) (hμs : μ s ≠ ∞) : IntegrableOn f s μ := by refine' memℒp_one_iff_integrable.mp _ have hμ_restrict_univ : (μ.restrict s) Set.univ < ∞ := by
Mathlib.MeasureTheory.Integral.IntegrableOn.381_0.qIpN2P2TD1gUH4J
theorem integrableOn_Lp_of_measure_ne_top {E} [NormedAddCommGroup E] {p : ℝ≥0∞} {s : Set α} (f : Lp E p μ) (hp : 1 ≤ p) (hμs : μ s ≠ ∞) : IntegrableOn f s μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E✝ : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E✝ f✝ g : α → E✝ s✝ t : Set α μ ν : Measure α E : Type u_5 inst✝ : NormedAddCommGroup E p : ℝ≥0∞ s : Set α f : ↥(Lp E p) hp : 1 ≤ p hμs : ↑↑μ s ≠ ⊤ hμ_restrict_univ : ↑↑(Measure.restrict μ s) univ < ⊤ ⊢ Memℒp (↑↑...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
haveI hμ_finite : IsFiniteMeasure (μ.restrict s) := ⟨hμ_restrict_univ⟩
theorem integrableOn_Lp_of_measure_ne_top {E} [NormedAddCommGroup E] {p : ℝ≥0∞} {s : Set α} (f : Lp E p μ) (hp : 1 ≤ p) (hμs : μ s ≠ ∞) : IntegrableOn f s μ := by refine' memℒp_one_iff_integrable.mp _ have hμ_restrict_univ : (μ.restrict s) Set.univ < ∞ := by simpa only [Set.univ_inter, MeasurableSet.univ, M...
Mathlib.MeasureTheory.Integral.IntegrableOn.381_0.qIpN2P2TD1gUH4J
theorem integrableOn_Lp_of_measure_ne_top {E} [NormedAddCommGroup E] {p : ℝ≥0∞} {s : Set α} (f : Lp E p μ) (hp : 1 ≤ p) (hμs : μ s ≠ ∞) : IntegrableOn f s μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E✝ : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E✝ f✝ g : α → E✝ s✝ t : Set α μ ν : Measure α E : Type u_5 inst✝ : NormedAddCommGroup E p : ℝ≥0∞ s : Set α f : ↥(Lp E p) hp : 1 ≤ p hμs : ↑↑μ s ≠ ⊤ hμ_restrict_univ : ↑↑(Measure.restrict μ s) univ < ⊤ hμ_finite :...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
exact ((Lp.memℒp _).restrict s).memℒp_of_exponent_le hp
theorem integrableOn_Lp_of_measure_ne_top {E} [NormedAddCommGroup E] {p : ℝ≥0∞} {s : Set α} (f : Lp E p μ) (hp : 1 ≤ p) (hμs : μ s ≠ ∞) : IntegrableOn f s μ := by refine' memℒp_one_iff_integrable.mp _ have hμ_restrict_univ : (μ.restrict s) Set.univ < ∞ := by simpa only [Set.univ_inter, MeasurableSet.univ, M...
Mathlib.MeasureTheory.Integral.IntegrableOn.381_0.qIpN2P2TD1gUH4J
theorem integrableOn_Lp_of_measure_ne_top {E} [NormedAddCommGroup E] {p : ℝ≥0∞} {s : Set α} (f : Lp E p μ) (hp : 1 ≤ p) (hμs : μ s ≠ ∞) : IntegrableOn f s μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E f✝ g : α → E s t : Set α μ ν : Measure α l l' : Filter α inst✝ : MeasurableSpace β e : α → β he : MeasurableEmbedding e f : β → E ⊢ IntegrableAtFilter f (map e l) ↔ IntegrableAtFilter (f ∘ e) l
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
simp_rw [IntegrableAtFilter, he.integrableOn_map_iff]
theorem _root_.MeasurableEmbedding.integrableAtFilter_map_iff [MeasurableSpace β] {e : α → β} (he : MeasurableEmbedding e) {f : β → E} : IntegrableAtFilter f (l.map e) (μ.map e) ↔ IntegrableAtFilter (f ∘ e) l μ := by
Mathlib.MeasureTheory.Integral.IntegrableOn.411_0.qIpN2P2TD1gUH4J
theorem _root_.MeasurableEmbedding.integrableAtFilter_map_iff [MeasurableSpace β] {e : α → β} (he : MeasurableEmbedding e) {f : β → E} : IntegrableAtFilter f (l.map e) (μ.map e) ↔ IntegrableAtFilter (f ∘ e) l μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E f✝ g : α → E s t : Set α μ ν : Measure α l l' : Filter α inst✝ : MeasurableSpace β e : α → β he : MeasurableEmbedding e f : β → E ⊢ (∃ s ∈ map e l, IntegrableOn (f ∘ e) (e ⁻¹' s)) ↔ ∃ s ∈ l, IntegrableOn (f ∘ e)...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
constructor
theorem _root_.MeasurableEmbedding.integrableAtFilter_map_iff [MeasurableSpace β] {e : α → β} (he : MeasurableEmbedding e) {f : β → E} : IntegrableAtFilter f (l.map e) (μ.map e) ↔ IntegrableAtFilter (f ∘ e) l μ := by simp_rw [IntegrableAtFilter, he.integrableOn_map_iff]
Mathlib.MeasureTheory.Integral.IntegrableOn.411_0.qIpN2P2TD1gUH4J
theorem _root_.MeasurableEmbedding.integrableAtFilter_map_iff [MeasurableSpace β] {e : α → β} (he : MeasurableEmbedding e) {f : β → E} : IntegrableAtFilter f (l.map e) (μ.map e) ↔ IntegrableAtFilter (f ∘ e) l μ
Mathlib_MeasureTheory_Integral_IntegrableOn
case mp α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E f✝ g : α → E s t : Set α μ ν : Measure α l l' : Filter α inst✝ : MeasurableSpace β e : α → β he : MeasurableEmbedding e f : β → E ⊢ (∃ s ∈ map e l, IntegrableOn (f ∘ e) (e ⁻¹' s)) → ∃ s ∈ l, IntegrableOn...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
rintro ⟨s, hs⟩
theorem _root_.MeasurableEmbedding.integrableAtFilter_map_iff [MeasurableSpace β] {e : α → β} (he : MeasurableEmbedding e) {f : β → E} : IntegrableAtFilter f (l.map e) (μ.map e) ↔ IntegrableAtFilter (f ∘ e) l μ := by simp_rw [IntegrableAtFilter, he.integrableOn_map_iff] constructor <;>
Mathlib.MeasureTheory.Integral.IntegrableOn.411_0.qIpN2P2TD1gUH4J
theorem _root_.MeasurableEmbedding.integrableAtFilter_map_iff [MeasurableSpace β] {e : α → β} (he : MeasurableEmbedding e) {f : β → E} : IntegrableAtFilter f (l.map e) (μ.map e) ↔ IntegrableAtFilter (f ∘ e) l μ
Mathlib_MeasureTheory_Integral_IntegrableOn
case mpr α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E f✝ g : α → E s t : Set α μ ν : Measure α l l' : Filter α inst✝ : MeasurableSpace β e : α → β he : MeasurableEmbedding e f : β → E ⊢ (∃ s ∈ l, IntegrableOn (f ∘ e) s) → ∃ s ∈ map e l, IntegrableOn (f ∘ e...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
rintro ⟨s, hs⟩
theorem _root_.MeasurableEmbedding.integrableAtFilter_map_iff [MeasurableSpace β] {e : α → β} (he : MeasurableEmbedding e) {f : β → E} : IntegrableAtFilter f (l.map e) (μ.map e) ↔ IntegrableAtFilter (f ∘ e) l μ := by simp_rw [IntegrableAtFilter, he.integrableOn_map_iff] constructor <;>
Mathlib.MeasureTheory.Integral.IntegrableOn.411_0.qIpN2P2TD1gUH4J
theorem _root_.MeasurableEmbedding.integrableAtFilter_map_iff [MeasurableSpace β] {e : α → β} (he : MeasurableEmbedding e) {f : β → E} : IntegrableAtFilter f (l.map e) (μ.map e) ↔ IntegrableAtFilter (f ∘ e) l μ
Mathlib_MeasureTheory_Integral_IntegrableOn
case mp.intro α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E f✝ g : α → E s✝ t : Set α μ ν : Measure α l l' : Filter α inst✝ : MeasurableSpace β e : α → β he : MeasurableEmbedding e f : β → E s : Set β hs : s ∈ map e l ∧ IntegrableOn (f ∘ e) (e ⁻¹' s) ⊢ ∃ s ...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
exact ⟨_, hs⟩
theorem _root_.MeasurableEmbedding.integrableAtFilter_map_iff [MeasurableSpace β] {e : α → β} (he : MeasurableEmbedding e) {f : β → E} : IntegrableAtFilter f (l.map e) (μ.map e) ↔ IntegrableAtFilter (f ∘ e) l μ := by simp_rw [IntegrableAtFilter, he.integrableOn_map_iff] constructor <;> rintro ⟨s, hs⟩ ·
Mathlib.MeasureTheory.Integral.IntegrableOn.411_0.qIpN2P2TD1gUH4J
theorem _root_.MeasurableEmbedding.integrableAtFilter_map_iff [MeasurableSpace β] {e : α → β} (he : MeasurableEmbedding e) {f : β → E} : IntegrableAtFilter f (l.map e) (μ.map e) ↔ IntegrableAtFilter (f ∘ e) l μ
Mathlib_MeasureTheory_Integral_IntegrableOn
case mpr.intro α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E f✝ g : α → E s✝ t : Set α μ ν : Measure α l l' : Filter α inst✝ : MeasurableSpace β e : α → β he : MeasurableEmbedding e f : β → E s : Set α hs : s ∈ l ∧ IntegrableOn (f ∘ e) s ⊢ ∃ s ∈ map e l, In...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
exact ⟨e '' s, by rwa [mem_map, he.injective.preimage_image]⟩
theorem _root_.MeasurableEmbedding.integrableAtFilter_map_iff [MeasurableSpace β] {e : α → β} (he : MeasurableEmbedding e) {f : β → E} : IntegrableAtFilter f (l.map e) (μ.map e) ↔ IntegrableAtFilter (f ∘ e) l μ := by simp_rw [IntegrableAtFilter, he.integrableOn_map_iff] constructor <;> rintro ⟨s, hs⟩ · ex...
Mathlib.MeasureTheory.Integral.IntegrableOn.411_0.qIpN2P2TD1gUH4J
theorem _root_.MeasurableEmbedding.integrableAtFilter_map_iff [MeasurableSpace β] {e : α → β} (he : MeasurableEmbedding e) {f : β → E} : IntegrableAtFilter f (l.map e) (μ.map e) ↔ IntegrableAtFilter (f ∘ e) l μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E f✝ g : α → E s✝ t : Set α μ ν : Measure α l l' : Filter α inst✝ : MeasurableSpace β e : α → β he : MeasurableEmbedding e f : β → E s : Set α hs : s ∈ l ∧ IntegrableOn (f ∘ e) s ⊢ e '' s ∈ map e l ∧ IntegrableOn ...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
rwa [mem_map, he.injective.preimage_image]
theorem _root_.MeasurableEmbedding.integrableAtFilter_map_iff [MeasurableSpace β] {e : α → β} (he : MeasurableEmbedding e) {f : β → E} : IntegrableAtFilter f (l.map e) (μ.map e) ↔ IntegrableAtFilter (f ∘ e) l μ := by simp_rw [IntegrableAtFilter, he.integrableOn_map_iff] constructor <;> rintro ⟨s, hs⟩ · ex...
Mathlib.MeasureTheory.Integral.IntegrableOn.411_0.qIpN2P2TD1gUH4J
theorem _root_.MeasurableEmbedding.integrableAtFilter_map_iff [MeasurableSpace β] {e : α → β} (he : MeasurableEmbedding e) {f : β → E} : IntegrableAtFilter f (l.map e) (μ.map e) ↔ IntegrableAtFilter (f ∘ e) l μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E f✝ g : α → E s t : Set α μ✝ ν : Measure α l l' : Filter α inst✝ : MeasurableSpace β e : α → β he : MeasurableEmbedding e f : β → E μ : Measure β ⊢ IntegrableAtFilter f (map e l) ↔ IntegrableAtFilter (f ∘ e) l
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
simp_rw [← he.integrableAtFilter_map_iff, IntegrableAtFilter, he.map_comap]
theorem _root_.MeasurableEmbedding.integrableAtFilter_iff_comap [MeasurableSpace β] {e : α → β} (he : MeasurableEmbedding e) {f : β → E} {μ : Measure β} : IntegrableAtFilter f (l.map e) μ ↔ IntegrableAtFilter (f ∘ e) l (μ.comap e) := by
Mathlib.MeasureTheory.Integral.IntegrableOn.419_0.qIpN2P2TD1gUH4J
theorem _root_.MeasurableEmbedding.integrableAtFilter_iff_comap [MeasurableSpace β] {e : α → β} (he : MeasurableEmbedding e) {f : β → E} {μ : Measure β} : IntegrableAtFilter f (l.map e) μ ↔ IntegrableAtFilter (f ∘ e) l (μ.comap e)
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E f✝ g : α → E s t : Set α μ✝ ν : Measure α l l' : Filter α inst✝ : MeasurableSpace β e : α → β he : MeasurableEmbedding e f : β → E μ : Measure β ⊢ (∃ s ∈ map e l, IntegrableOn f s) ↔ ∃ s ∈ map e l, IntegrableOn ...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
constructor
theorem _root_.MeasurableEmbedding.integrableAtFilter_iff_comap [MeasurableSpace β] {e : α → β} (he : MeasurableEmbedding e) {f : β → E} {μ : Measure β} : IntegrableAtFilter f (l.map e) μ ↔ IntegrableAtFilter (f ∘ e) l (μ.comap e) := by simp_rw [← he.integrableAtFilter_map_iff, IntegrableAtFilter, he.map_coma...
Mathlib.MeasureTheory.Integral.IntegrableOn.419_0.qIpN2P2TD1gUH4J
theorem _root_.MeasurableEmbedding.integrableAtFilter_iff_comap [MeasurableSpace β] {e : α → β} (he : MeasurableEmbedding e) {f : β → E} {μ : Measure β} : IntegrableAtFilter f (l.map e) μ ↔ IntegrableAtFilter (f ∘ e) l (μ.comap e)
Mathlib_MeasureTheory_Integral_IntegrableOn
case mp α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E f✝ g : α → E s t : Set α μ✝ ν : Measure α l l' : Filter α inst✝ : MeasurableSpace β e : α → β he : MeasurableEmbedding e f : β → E μ : Measure β ⊢ (∃ s ∈ map e l, IntegrableOn f s) → ∃ s ∈ map e l, Integ...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
rintro ⟨s, hs, int⟩
theorem _root_.MeasurableEmbedding.integrableAtFilter_iff_comap [MeasurableSpace β] {e : α → β} (he : MeasurableEmbedding e) {f : β → E} {μ : Measure β} : IntegrableAtFilter f (l.map e) μ ↔ IntegrableAtFilter (f ∘ e) l (μ.comap e) := by simp_rw [← he.integrableAtFilter_map_iff, IntegrableAtFilter, he.map_coma...
Mathlib.MeasureTheory.Integral.IntegrableOn.419_0.qIpN2P2TD1gUH4J
theorem _root_.MeasurableEmbedding.integrableAtFilter_iff_comap [MeasurableSpace β] {e : α → β} (he : MeasurableEmbedding e) {f : β → E} {μ : Measure β} : IntegrableAtFilter f (l.map e) μ ↔ IntegrableAtFilter (f ∘ e) l (μ.comap e)
Mathlib_MeasureTheory_Integral_IntegrableOn
case mpr α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E f✝ g : α → E s t : Set α μ✝ ν : Measure α l l' : Filter α inst✝ : MeasurableSpace β e : α → β he : MeasurableEmbedding e f : β → E μ : Measure β ⊢ (∃ s ∈ map e l, IntegrableOn f s) → ∃ s ∈ map e l, Inte...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
rintro ⟨s, hs, int⟩
theorem _root_.MeasurableEmbedding.integrableAtFilter_iff_comap [MeasurableSpace β] {e : α → β} (he : MeasurableEmbedding e) {f : β → E} {μ : Measure β} : IntegrableAtFilter f (l.map e) μ ↔ IntegrableAtFilter (f ∘ e) l (μ.comap e) := by simp_rw [← he.integrableAtFilter_map_iff, IntegrableAtFilter, he.map_coma...
Mathlib.MeasureTheory.Integral.IntegrableOn.419_0.qIpN2P2TD1gUH4J
theorem _root_.MeasurableEmbedding.integrableAtFilter_iff_comap [MeasurableSpace β] {e : α → β} (he : MeasurableEmbedding e) {f : β → E} {μ : Measure β} : IntegrableAtFilter f (l.map e) μ ↔ IntegrableAtFilter (f ∘ e) l (μ.comap e)
Mathlib_MeasureTheory_Integral_IntegrableOn
case mp.intro.intro α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E f✝ g : α → E s✝ t : Set α μ✝ ν : Measure α l l' : Filter α inst✝ : MeasurableSpace β e : α → β he : MeasurableEmbedding e f : β → E μ : Measure β s : Set β hs : s ∈ map e l int : IntegrableOn...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
exact ⟨s, hs, int.mono_measure <| μ.restrict_le_self⟩
theorem _root_.MeasurableEmbedding.integrableAtFilter_iff_comap [MeasurableSpace β] {e : α → β} (he : MeasurableEmbedding e) {f : β → E} {μ : Measure β} : IntegrableAtFilter f (l.map e) μ ↔ IntegrableAtFilter (f ∘ e) l (μ.comap e) := by simp_rw [← he.integrableAtFilter_map_iff, IntegrableAtFilter, he.map_coma...
Mathlib.MeasureTheory.Integral.IntegrableOn.419_0.qIpN2P2TD1gUH4J
theorem _root_.MeasurableEmbedding.integrableAtFilter_iff_comap [MeasurableSpace β] {e : α → β} (he : MeasurableEmbedding e) {f : β → E} {μ : Measure β} : IntegrableAtFilter f (l.map e) μ ↔ IntegrableAtFilter (f ∘ e) l (μ.comap e)
Mathlib_MeasureTheory_Integral_IntegrableOn
case mpr.intro.intro α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝² : MeasurableSpace α inst✝¹ : NormedAddCommGroup E f✝ g : α → E s✝ t : Set α μ✝ ν : Measure α l l' : Filter α inst✝ : MeasurableSpace β e : α → β he : MeasurableEmbedding e f : β → E μ : Measure β s : Set β hs : s ∈ map e l int : IntegrableO...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
exact ⟨_, inter_mem hs range_mem_map, int.inter_of_restrict⟩
theorem _root_.MeasurableEmbedding.integrableAtFilter_iff_comap [MeasurableSpace β] {e : α → β} (he : MeasurableEmbedding e) {f : β → E} {μ : Measure β} : IntegrableAtFilter f (l.map e) μ ↔ IntegrableAtFilter (f ∘ e) l (μ.comap e) := by simp_rw [← he.integrableAtFilter_map_iff, IntegrableAtFilter, he.map_coma...
Mathlib.MeasureTheory.Integral.IntegrableOn.419_0.qIpN2P2TD1gUH4J
theorem _root_.MeasurableEmbedding.integrableAtFilter_iff_comap [MeasurableSpace β] {e : α → β} (he : MeasurableEmbedding e) {f : β → E} {μ : Measure β} : IntegrableAtFilter f (l.map e) μ ↔ IntegrableAtFilter (f ∘ e) l (μ.comap e)
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f✝ g✝ : α → E s t : Set α μ ν : Measure α l l' : Filter α f g : α → E hf : IntegrableAtFilter f l hg : IntegrableAtFilter g l ⊢ IntegrableAtFilter (f + g) l
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
rcases hf with ⟨s, sl, hs⟩
protected theorem IntegrableAtFilter.add {f g : α → E} (hf : IntegrableAtFilter f l μ) (hg : IntegrableAtFilter g l μ) : IntegrableAtFilter (f + g) l μ := by
Mathlib.MeasureTheory.Integral.IntegrableOn.437_0.qIpN2P2TD1gUH4J
protected theorem IntegrableAtFilter.add {f g : α → E} (hf : IntegrableAtFilter f l μ) (hg : IntegrableAtFilter g l μ) : IntegrableAtFilter (f + g) l μ
Mathlib_MeasureTheory_Integral_IntegrableOn
case intro.intro α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f✝ g✝ : α → E s✝ t : Set α μ ν : Measure α l l' : Filter α f g : α → E hg : IntegrableAtFilter g l s : Set α sl : s ∈ l hs : IntegrableOn f s ⊢ IntegrableAtFilter (f + g) l
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
rcases hg with ⟨t, tl, ht⟩
protected theorem IntegrableAtFilter.add {f g : α → E} (hf : IntegrableAtFilter f l μ) (hg : IntegrableAtFilter g l μ) : IntegrableAtFilter (f + g) l μ := by rcases hf with ⟨s, sl, hs⟩
Mathlib.MeasureTheory.Integral.IntegrableOn.437_0.qIpN2P2TD1gUH4J
protected theorem IntegrableAtFilter.add {f g : α → E} (hf : IntegrableAtFilter f l μ) (hg : IntegrableAtFilter g l μ) : IntegrableAtFilter (f + g) l μ
Mathlib_MeasureTheory_Integral_IntegrableOn
case intro.intro.intro.intro α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f✝ g✝ : α → E s✝ t✝ : Set α μ ν : Measure α l l' : Filter α f g : α → E s : Set α sl : s ∈ l hs : IntegrableOn f s t : Set α tl : t ∈ l ht : IntegrableOn g t ⊢ IntegrableAtFilter (f +...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
refine ⟨s ∩ t, inter_mem sl tl, ?_⟩
protected theorem IntegrableAtFilter.add {f g : α → E} (hf : IntegrableAtFilter f l μ) (hg : IntegrableAtFilter g l μ) : IntegrableAtFilter (f + g) l μ := by rcases hf with ⟨s, sl, hs⟩ rcases hg with ⟨t, tl, ht⟩
Mathlib.MeasureTheory.Integral.IntegrableOn.437_0.qIpN2P2TD1gUH4J
protected theorem IntegrableAtFilter.add {f g : α → E} (hf : IntegrableAtFilter f l μ) (hg : IntegrableAtFilter g l μ) : IntegrableAtFilter (f + g) l μ
Mathlib_MeasureTheory_Integral_IntegrableOn
case intro.intro.intro.intro α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f✝ g✝ : α → E s✝ t✝ : Set α μ ν : Measure α l l' : Filter α f g : α → E s : Set α sl : s ∈ l hs : IntegrableOn f s t : Set α tl : t ∈ l ht : IntegrableOn g t ⊢ IntegrableOn (f + g) (s...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
exact (hs.mono_set (inter_subset_left _ _)).add (ht.mono_set (inter_subset_right _ _))
protected theorem IntegrableAtFilter.add {f g : α → E} (hf : IntegrableAtFilter f l μ) (hg : IntegrableAtFilter g l μ) : IntegrableAtFilter (f + g) l μ := by rcases hf with ⟨s, sl, hs⟩ rcases hg with ⟨t, tl, ht⟩ refine ⟨s ∩ t, inter_mem sl tl, ?_⟩
Mathlib.MeasureTheory.Integral.IntegrableOn.437_0.qIpN2P2TD1gUH4J
protected theorem IntegrableAtFilter.add {f g : α → E} (hf : IntegrableAtFilter f l μ) (hg : IntegrableAtFilter g l μ) : IntegrableAtFilter (f + g) l μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f✝ g : α → E s t : Set α μ ν : Measure α l l' : Filter α f : α → E hf : IntegrableAtFilter f l ⊢ IntegrableAtFilter (-f) l
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
rcases hf with ⟨s, sl, hs⟩
protected theorem IntegrableAtFilter.neg {f : α → E} (hf : IntegrableAtFilter f l μ) : IntegrableAtFilter (-f) l μ := by
Mathlib.MeasureTheory.Integral.IntegrableOn.445_0.qIpN2P2TD1gUH4J
protected theorem IntegrableAtFilter.neg {f : α → E} (hf : IntegrableAtFilter f l μ) : IntegrableAtFilter (-f) l μ
Mathlib_MeasureTheory_Integral_IntegrableOn
case intro.intro α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f✝ g : α → E s✝ t : Set α μ ν : Measure α l l' : Filter α f : α → E s : Set α sl : s ∈ l hs : IntegrableOn f s ⊢ IntegrableAtFilter (-f) l
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
exact ⟨s, sl, hs.neg⟩
protected theorem IntegrableAtFilter.neg {f : α → E} (hf : IntegrableAtFilter f l μ) : IntegrableAtFilter (-f) l μ := by rcases hf with ⟨s, sl, hs⟩
Mathlib.MeasureTheory.Integral.IntegrableOn.445_0.qIpN2P2TD1gUH4J
protected theorem IntegrableAtFilter.neg {f : α → E} (hf : IntegrableAtFilter f l μ) : IntegrableAtFilter (-f) l μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f✝ g✝ : α → E s t : Set α μ ν : Measure α l l' : Filter α f g : α → E hf : IntegrableAtFilter f l hg : IntegrableAtFilter g l ⊢ IntegrableAtFilter (f - g) l
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
rw [sub_eq_add_neg]
protected theorem IntegrableAtFilter.sub {f g : α → E} (hf : IntegrableAtFilter f l μ) (hg : IntegrableAtFilter g l μ) : IntegrableAtFilter (f - g) l μ := by
Mathlib.MeasureTheory.Integral.IntegrableOn.450_0.qIpN2P2TD1gUH4J
protected theorem IntegrableAtFilter.sub {f g : α → E} (hf : IntegrableAtFilter f l μ) (hg : IntegrableAtFilter g l μ) : IntegrableAtFilter (f - g) l μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f✝ g✝ : α → E s t : Set α μ ν : Measure α l l' : Filter α f g : α → E hf : IntegrableAtFilter f l hg : IntegrableAtFilter g l ⊢ IntegrableAtFilter (f + -g) l
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
exact hf.add hg.neg
protected theorem IntegrableAtFilter.sub {f g : α → E} (hf : IntegrableAtFilter f l μ) (hg : IntegrableAtFilter g l μ) : IntegrableAtFilter (f - g) l μ := by rw [sub_eq_add_neg]
Mathlib.MeasureTheory.Integral.IntegrableOn.450_0.qIpN2P2TD1gUH4J
protected theorem IntegrableAtFilter.sub {f g : α → E} (hf : IntegrableAtFilter f l μ) (hg : IntegrableAtFilter g l μ) : IntegrableAtFilter (f - g) l μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝⁴ : MeasurableSpace α inst✝³ : NormedAddCommGroup E f✝ g : α → E s t : Set α μ ν : Measure α l l' : Filter α 𝕜 : Type u_5 inst✝² : NormedAddCommGroup 𝕜 inst✝¹ : SMulZeroClass 𝕜 E inst✝ : BoundedSMul 𝕜 E f : α → E hf : IntegrableAtFilter f l c : 𝕜 ⊢ Integrabl...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
rcases hf with ⟨s, sl, hs⟩
protected theorem IntegrableAtFilter.smul {𝕜 : Type*} [NormedAddCommGroup 𝕜] [SMulZeroClass 𝕜 E] [BoundedSMul 𝕜 E] {f : α → E} (hf : IntegrableAtFilter f l μ) (c : 𝕜) : IntegrableAtFilter (c • f) l μ := by
Mathlib.MeasureTheory.Integral.IntegrableOn.456_0.qIpN2P2TD1gUH4J
protected theorem IntegrableAtFilter.smul {𝕜 : Type*} [NormedAddCommGroup 𝕜] [SMulZeroClass 𝕜 E] [BoundedSMul 𝕜 E] {f : α → E} (hf : IntegrableAtFilter f l μ) (c : 𝕜) : IntegrableAtFilter (c • f) l μ
Mathlib_MeasureTheory_Integral_IntegrableOn
case intro.intro α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝⁴ : MeasurableSpace α inst✝³ : NormedAddCommGroup E f✝ g : α → E s✝ t : Set α μ ν : Measure α l l' : Filter α 𝕜 : Type u_5 inst✝² : NormedAddCommGroup 𝕜 inst✝¹ : SMulZeroClass 𝕜 E inst✝ : BoundedSMul 𝕜 E f : α → E c : 𝕜 s : Set α sl : s ∈ l ...
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
exact ⟨s, sl, hs.smul c⟩
protected theorem IntegrableAtFilter.smul {𝕜 : Type*} [NormedAddCommGroup 𝕜] [SMulZeroClass 𝕜 E] [BoundedSMul 𝕜 E] {f : α → E} (hf : IntegrableAtFilter f l μ) (c : 𝕜) : IntegrableAtFilter (c • f) l μ := by rcases hf with ⟨s, sl, hs⟩
Mathlib.MeasureTheory.Integral.IntegrableOn.456_0.qIpN2P2TD1gUH4J
protected theorem IntegrableAtFilter.smul {𝕜 : Type*} [NormedAddCommGroup 𝕜] [SMulZeroClass 𝕜 E] [BoundedSMul 𝕜 E] {f : α → E} (hf : IntegrableAtFilter f l μ) (c : 𝕜) : IntegrableAtFilter (c • f) l μ
Mathlib_MeasureTheory_Integral_IntegrableOn
α : Type u_1 β : Type u_2 E : Type u_3 F : Type u_4 inst✝¹ : MeasurableSpace α inst✝ : NormedAddCommGroup E f g : α → E s t : Set α μ ν : Measure α l✝ l' l : Filter α ⊢ IntegrableAtFilter f (l ⊓ Measure.ae μ) ↔ IntegrableAtFilter f l
/- Copyright (c) 2021 Rémy Degenne. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Zhouhang Zhou, Yury Kudryashov -/ import Mathlib.MeasureTheory.Function.L1Space import Mathlib.Analysis.NormedSpace.IndicatorFunction #align_import measure_theory.integral.integrable_on...
refine' ⟨_, fun h => h.filter_mono inf_le_left⟩
@[simp] theorem IntegrableAtFilter.inf_ae_iff {l : Filter α} : IntegrableAtFilter f (l ⊓ μ.ae) μ ↔ IntegrableAtFilter f l μ := by
Mathlib.MeasureTheory.Integral.IntegrableOn.478_0.qIpN2P2TD1gUH4J
@[simp] theorem IntegrableAtFilter.inf_ae_iff {l : Filter α} : IntegrableAtFilter f (l ⊓ μ.ae) μ ↔ IntegrableAtFilter f l μ
Mathlib_MeasureTheory_Integral_IntegrableOn