File tree Expand file tree Collapse file tree
Mathlib/MeasureTheory/Measure Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -78,9 +78,14 @@ theorem nonempty_of_measureReal_ne_zero (h : μ.real s ≠ 0) : s.Nonempty :=
7878 (c • μ).real s = c * μ.real s := by
7979 simp [measureReal_def]
8080
81+ theorem map_measureReal_apply_of_aemeasurable [MeasurableSpace β] {f : α → β}
82+ (hf : AEMeasurable f μ) {s : Set β} (hs : MeasurableSet s) :
83+ (μ.map f).real s = μ.real (f ⁻¹' s) := by
84+ simp_rw [measureReal_def, map_apply_of_aemeasurable hf hs]
85+
8186theorem map_measureReal_apply [MeasurableSpace β] {f : α → β} (hf : Measurable f)
82- {s : Set β} (hs : MeasurableSet s) : (μ.map f).real s = μ.real (f ⁻¹' s) := by
83- simp_rw [measureReal_def, map_apply hf hs]
87+ {s : Set β} (hs : MeasurableSet s) : (μ.map f).real s = μ.real (f ⁻¹' s) :=
88+ map_measureReal_apply_of_aemeasurable hf.aemeasurable hs
8489
8590@[gcongr] theorem measureReal_mono (h : s₁ ⊆ s₂) (h₂ : μ s₂ ≠ ∞ := by finiteness) :
8691 μ.real s₁ ≤ μ.real s₂ :=
You can’t perform that action at this time.
0 commit comments