Skip to content

Commit 4298bfc

Browse files
committed
feat: measure real of the complement of a null measurable set (leanprover-community#31155)
1 parent 14e9d58 commit 4298bfc

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

Mathlib/MeasureTheory/Measure/Real.lean

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,10 @@ theorem measureReal_compl [IsFiniteMeasure μ] (h₁ : MeasurableSet s) :
368368
rw [compl_eq_univ_diff]
369369
exact measureReal_diff (subset_univ s) h₁
370370

371+
theorem measureReal_compl₀ [IsFiniteMeasure μ] (h₁ : NullMeasurableSet s μ) :
372+
μ.real sᶜ = μ.real univ - μ.real s := by
373+
linarith [measureReal_add_measureReal_compl₀ h₁]
374+
371375
theorem measureReal_union_congr_of_subset (hs : s₁ ⊆ s₂)
372376
(hsμ : μ.real s₂ ≤ μ.real s₁) (ht : t₁ ⊆ t₂) (htμ : μ.real t₂ ≤ μ.real t₁)
373377
(h₁ : μ s₂ ≠ ∞ := by finiteness) (h₂ : μ t₂ ≠ ∞ := by finiteness) :

0 commit comments

Comments
 (0)