Analysis II (Tao, 2022) -- Chapter 07 -- Section 01

section Chap07section Section01

Definition 7.1 (Measurable sets and Lebesgue measure axioms): for failed to synthesize Membership ?m.1 Type Hint: Additional diagnostic information may be available using the `set_option diagnostics true` command.Unknown identifier `n`n , a collection Unknown identifier `M`M 𝒫(^Unknown identifier `n`n) and a function (modeled here as ) satisfy: (i) every open set belongs to Unknown identifier `M`M; (ii) Unknown identifier `M`M is closed under complements; (iv) Unknown identifier `M`M is closed under countable unions and countable intersections; (v) ; (vi) for all Unknown identifier `Ω`sorry sorry : PropΩ Unknown identifier `M`M; (xi) countable additivity on pairwise disjoint measurable families; (xii) ; (xiii) translation invariance: Unknown identifier `x`sorry + sorry : ?m.5x + Unknown identifier `Ω`Ω is measurable and has the same measure.

def IsLebesgueMeasureAxioms (n : ) (M : Set (Set (Fin n ))) (m : Set (Fin n ) ENNReal) : Prop := ( Ω : Set (Fin n ), IsOpen Ω Ω M) ( Ω : Set (Fin n ), Ω M Ω M) ( Ω : Set (Fin n ), ( j : , Ω j M) ( j : , Ω j) M) ( Ω : Set (Fin n ), ( j : , Ω j M) ( j : , Ω j) M) (m = 0) ( Ω : Set (Fin n ), Ω M 0 m Ω m Ω ) ( A : Set (Fin n ), ( j : , A j M) Pairwise (fun i j : => Disjoint (A i) (A j)) m ( j : , A j) = ∑' j : , m (A j)) (m (Set.Icc (0 : Fin n ) 1) = 1) ( (Ω : Set (Fin n )) (x : Fin n ), Ω M (fun y : Fin n => x + y) '' Ω M m ((fun y : Fin n => x + y) '' Ω) = m Ω)

Theorem 7.1 (Existence of Lebesgue measure): for each dimension Unknown identifier `n`n, there exist a Unknown identifier `σ`σ-algebra Unknown identifier `M`M 𝒫(^Unknown identifier `n`n) and a function (modeled as ) satisfying the Borel property, complementarity, closure under countable unions and intersections, , positivity, countable additivity on pairwise disjoint families, normalization , and translation invariance.

theorem exists_lebesgue_measure_axioms (n : ) : (M : Set (Set (Fin n ))) (m : Set (Fin n ) ENNReal), IsLebesgueMeasureAxioms n M m := by refine { Ω : Set (Fin n ) | MeasurableSet Ω }, MeasureTheory.volume, ?_ constructor · intro Ω exact .measurableSet constructor · intro Ω simpa using (show MeasurableSet Ω from ).compl constructor · intro Ω have hΩ' : j : , MeasurableSet (Ω j) := by intro j simpa using ( j) exact MeasurableSet.iUnion hΩ' constructor · intro Ω have hΩ' : j : , MeasurableSet (Ω j) := by intro j simpa using ( j) exact MeasurableSet.iInter hΩ' constructor · simp constructor · intro Ω exact bot_le, le_top constructor · intro A hA hpair simpa [Function.onFun] using (MeasureTheory.measure_iUnion (μ := MeasureTheory.volume) (f := A) hpair hA) constructor · simpa using (Real.volume_Icc_pi (a := (0 : Fin n )) (b := (1 : Fin n ))) · intro Ω x refine ?_, ?_ · simpa [Set.image_add_left] using (show MeasurableSet Ω from ).preimage (measurable_const_add (-x)) · simp [Set.image_add_left]
end Section01end Chap07