-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:RemyDegenne/CLT into master
- Loading branch information
Showing
5 changed files
with
114 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
-- This module serves as the root of the `Clt` library. | ||
-- Import modules here that should be built as part of the library. | ||
import Clt.Tight | ||
import Clt.Separating | ||
import Clt.CharFun | ||
import Clt.ExpPoly |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/- | ||
Copyright (c) 2023 Rémy Degenne. All rights reserved. | ||
Released under Apache 2.0 license as described in the file LICENSE. | ||
Authors: Rémy Degenne | ||
-/ | ||
import Mathlib.Topology.ContinuousFunction.Compact | ||
import Mathlib.MeasureTheory.Measure.ProbabilityMeasure | ||
|
||
/-! | ||
# Separating sets of functions | ||
-/ | ||
|
||
open BoundedContinuousFunction | ||
|
||
open scoped ENNReal | ||
|
||
namespace MeasureTheory | ||
|
||
variable {α E : Type*} [MeasurableSpace α] [TopologicalSpace α] [NormedRing E] [NormedAlgebra ℝ E] | ||
|
||
/-- A subalgebra `A` of the bounded continuous function from `α` to `E` is separating in the | ||
probability measures if for all probability measures `μ ≠ ν`, there exists `f ∈ A` such that | ||
`∫ x, f x ∂μ ≠ ∫ x, f x ∂ν`. -/ | ||
structure Separating (A : Subalgebra ℝ (α →ᵇ E)) : Prop := | ||
(exists_ne : ∀ ⦃μ ν : ProbabilityMeasure α⦄, μ ≠ ν → ∃ f ∈ A, ∫ x, f x ∂μ ≠ ∫ x, f x ∂ν) | ||
|
||
lemma ProbabilityMeasure.ext_of_Separating {μ ν : ProbabilityMeasure α} {A : Subalgebra ℝ (α →ᵇ E)} | ||
(hA : Separating A) (h : ∀ f ∈ A, ∫ x, f x ∂μ = ∫ x, f x ∂ν) : | ||
μ = ν := by | ||
by_contra h_ne | ||
obtain ⟨f, hfA, hf_ne⟩ := hA.exists_ne h_ne | ||
exact hf_ne (h f hfA) | ||
|
||
end MeasureTheory |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
/- | ||
Copyright (c) 2023 Rémy Degenne. All rights reserved. | ||
Released under Apache 2.0 license as described in the file LICENSE. | ||
Authors: Rémy Degenne | ||
-/ | ||
import Mathlib.MeasureTheory.Measure.Regular | ||
|
||
/-! | ||
# Characteristic function of a measure | ||
## Main definitions | ||
* `Tight`: A set `S` of measures is tight if for all `0 < ε`, there exists `K` compact such that | ||
for all `μ` in `S`, `μ Kᶜ ≤ ε`. | ||
## Main statements | ||
* `fooBar_unique` | ||
## Notation | ||
## Implementation details | ||
-/ | ||
|
||
open scoped ENNReal | ||
|
||
namespace MeasureTheory | ||
|
||
variable {α : Type*} {mα : MeasurableSpace α} {μ : Measure α} | ||
[TopologicalSpace α] | ||
|
||
/-- A set `S` of measures is tight if for all `0 < ε`, there exists `K` compact such that for all | ||
`μ` in `S`, `μ Kᶜ ≤ ε`. -/ | ||
def Tight (S : Set (Measure α)) : Prop := | ||
∀ ε : ℝ≥0∞, 0 < ε → ∃ K : Set α, IsCompact K ∧ ∀ μ ∈ S, μ Kᶜ ≤ ε | ||
|
||
-- TODO: the T2Space hypothesis is here only to make compact sets closed. It could be removed if | ||
-- InnerRegular was about compact and closed sets, and not only compact sets. | ||
lemma tight_singleton [T2Space α] [OpensMeasurableSpace α] | ||
(μ : Measure α) [IsFiniteMeasure μ] [μ.InnerRegular] : | ||
Tight {μ} := by | ||
cases eq_zero_or_neZero μ with | ||
| inl hμ => | ||
rw [hμ] | ||
refine fun _ _ ↦ ⟨∅, isCompact_empty, ?_⟩ | ||
simp | ||
| inr hμ => | ||
let r := μ Set.univ | ||
have hr : 0 < r := by simp [hμ.out] | ||
intro ε hε | ||
cases lt_or_ge ε r with | ||
| inl hεr => | ||
have hεr' : r - ε < r := ENNReal.sub_lt_self (measure_ne_top μ _) hr.ne' hε.ne' | ||
obtain ⟨K, _, hK_compact, hKμ⟩ := | ||
(MeasurableSet.univ : MeasurableSet (Set.univ : Set α)).exists_lt_isCompact hεr' | ||
refine ⟨K, hK_compact, fun μ' hμ' ↦ ?_⟩ | ||
simp only [Set.mem_singleton_iff] at hμ' | ||
rw [hμ', measure_compl hK_compact.isClosed.measurableSet (measure_ne_top μ _), | ||
tsub_le_iff_right] | ||
rw [ENNReal.sub_lt_iff_lt_right (ne_top_of_lt hεr) hεr.le, add_comm] at hKμ | ||
exact hKμ.le | ||
| inr hεr => | ||
refine ⟨∅, isCompact_empty, ?_⟩ | ||
intro μ' hμ' | ||
simp only [Set.mem_singleton_iff] at hμ' | ||
rw [hμ', Set.compl_empty] | ||
exact hεr | ||
|
||
end MeasureTheory |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters