Skip to content

Commit d181a58

Browse files
committed
feat(MeasureTheory/Integral/IntegrableOn): add IntegrableOn.of_inter_support (leanprover-community#29895)
This lemma helps proving integrability in the presence of extra information about the support of a function (e.g. compactly supported / finitely supported). From the Carleson project.
1 parent a3f0fd5 commit d181a58

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

Mathlib/MeasureTheory/Integral/IntegrableOn.lean

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -406,6 +406,11 @@ theorem IntegrableOn.integrable_of_forall_notMem_eq_zero
406406
alias IntegrableOn.integrable_of_forall_not_mem_eq_zero :=
407407
IntegrableOn.integrable_of_forall_notMem_eq_zero
408408

409+
theorem IntegrableOn.of_inter_support {f : α → ε'}
410+
(hs : MeasurableSet s) (hf : IntegrableOn f (s ∩ support f) μ) :
411+
IntegrableOn f s μ := by
412+
simpa using hf.of_forall_diff_eq_zero hs
413+
409414
theorem integrableOn_iff_integrable_of_support_subset
410415
{f : α → ε'} (h1s : support f ⊆ s) : IntegrableOn f s μ ↔ Integrable f μ := by
411416
refine ⟨fun h => ?_, fun h => h.integrableOn⟩

0 commit comments

Comments
 (0)