Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Analysis/MeasureTheory/Section_1_4_3.lean
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,8 @@ theorem FinitelyAdditiveMeasure.isCountablyAdditive_restrict_alg {X:Type*} {B B'
def CountablyAdditiveMeasure.restrict_alg {X:Type*} {B B': ConcreteSigmaAlgebra X} (μ: CountablyAdditiveMeasure B) (hBB' : B' ≤ B) : CountablyAdditiveMeasure B' :=
{
toFinitelyAdditiveMeasure := μ.toFinitelyAdditiveMeasure.restrict_alg hBB',
measure_countable_additive := by sorry
measure_countable_additive := fun E hE hdisj =>
μ.measure_countable_additive E (fun n => hBB' (E n) (hE n)) hdisj
}

/-- Example 1.4.29 (Dirac measure) -/
Expand Down
Loading