Skip to content

Commit

Permalink
add lemma
Browse files Browse the repository at this point in the history
  • Loading branch information
RemyDegenne committed Oct 18, 2024
1 parent 38493d9 commit b6f0a7a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions TestingLowerBounds/ForMathlib/RnDeriv.lean
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ namespace MeasureTheory.Measure

variable {α β : Type*} {m mα : MeasurableSpace α} {mβ : MeasurableSpace β} {μ ν : Measure α}

lemma withDensity_mono_measure (h : μ ≤ ν) {f : α → ℝ≥0∞} : μ.withDensity f ≤ ν.withDensity f := by
refine Measure.le_intro fun s hs _ ↦ ?_
rw [withDensity_apply _ hs, withDensity_apply _ hs]
exact lintegral_mono_fn' (fun _ ↦ le_rfl) (Measure.restrict_mono subset_rfl h)

lemma rnDeriv_add_self_right (ν μ : Measure α) [SigmaFinite μ] [SigmaFinite ν] :
ν.rnDeriv (μ + ν) =ᵐ[ν] fun x ↦ (μ.rnDeriv ν x + 1)⁻¹ := by
have hν_ac : ν ≪ μ + ν := by rw [add_comm]; exact rfl.absolutelyContinuous.add_right _
Expand Down

0 comments on commit b6f0a7a

Please sign in to comment.