[Merged by Bors] - feat(MeasureTheory/Integral/RieszMarkovKakutani) prove that the Riesz content is indeed a content for NNReal#18775
Closed
yoh-tanimoto wants to merge 77 commits intomasterfrom
Closed
Conversation
Co-authored-by: Floris van Doorn <fpvdoorn@gmail.com>
Co-authored-by: Floris van Doorn <fpvdoorn@gmail.com>
sync to master
TobiasLeichtfried
pushed a commit
that referenced
this pull request
Nov 21, 2024
… for locally compact T2 space (#12266) add variations of `PartitionOfUnity` and Urysohn's lemma: - In a locally compact T2 space `X`, for a compact set `t` and a finite family of open sets `{s i}` such that `t ⊆ ⋃ i, s i`, there is a family of continuous function `{f i}` supported in `s i`, `∑ i, f i x = 1` on `t` and `0 ≤ f x ≤ 1`. - In a locally compact regular space `X`, for a compact set `t` and a closed set `s` that are disjoint, there is a continuous function `f` with compact support which is `1` on `t` and `0` on `s` and `f x Icc (0 : ℝ) 1 ` for all `x`. The former is formalized as a partition of unity. For this purpose, I extended `PartialRefiment` to include a predicate `p` about the refined set. With this, we can require that the refined open set has a compact closure. This can be applied when `X` is locally compact and T2. These variations are needed in order to prove that [rieszContentAux](https://leanprover-community.github.io/mathlib4_docs/Mathlib/MeasureTheory/Integral/RieszMarkovKakutani.html#rieszContentAux) is indeed a Borel measure (following Rudin "Real and complex analysis"), now in #18775. Co-authored-by: Yoh Tanimoto <57562556+yoh-tanimoto@users.noreply.github.com>
TobiasLeichtfried
pushed a commit
that referenced
this pull request
Nov 21, 2024
…9166) Two theorems that give equivalent conditions to `a ≤ b` in terms of `ε`-approximation. - Generalize `a ≤ b ↔ ∀ ε, 1 < ε → a ≤ b * ε` (`le_iff_forall_one_lt_le_mul`) to monoids. - Add `(hb : 0 ≤ b) : a ≤ b ↔ ∀ ε, 1 < ε → a ≤ b * ε` for linearly ordered semifields. the proofs were suggested by @fpvandoorn in [this thread](https://leanprover.zulipchat.com/#narrow/channel/217875-Is-there-code-for-X.3F/topic/.60le_iff_forall_pos_le_add.60.20for.20.60NNReal.60) motivation: I will need them in the proof of regularity of `rieszContent`, that will be defined after #18775 Co-authored-by: Yoh Tanimoto <57562556+yoh-tanimoto@users.noreply.github.com>
sgouezel
reviewed
Dec 11, 2024
Contributor
sgouezel
left a comment
There was a problem hiding this comment.
Thanks a lot for this, and sorry for the review delay. This looks mostly good, I only have minor comments.
Co-authored-by: sgouezel <sebastien.gouezel@univ-rennes1.fr>
Co-authored-by: sgouezel <sebastien.gouezel@univ-rennes1.fr>
Co-authored-by: sgouezel <sebastien.gouezel@univ-rennes1.fr>
Co-authored-by: sgouezel <sebastien.gouezel@univ-rennes1.fr>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: sgouezel <sebastien.gouezel@univ-rennes1.fr>
Contributor
|
✌️ yoh-tanimoto can now approve this pull request. To approve and merge a pull request, simply reply with |
Co-authored-by: sgouezel <sebastien.gouezel@univ-rennes1.fr>
Co-authored-by: sgouezel <sebastien.gouezel@univ-rennes1.fr>
Co-authored-by: sgouezel <sebastien.gouezel@univ-rennes1.fr>
Co-authored-by: sgouezel <sebastien.gouezel@univ-rennes1.fr>
Co-authored-by: sgouezel <sebastien.gouezel@univ-rennes1.fr>
Collaborator
Author
|
bors r+ |
mathlib-bors bot
pushed a commit
that referenced
this pull request
Dec 17, 2024
… content is indeed a content for `NNReal` (#18775) Prove additivity of `RieszContentAux`, completing the proof that it gives a `Content`. Motivation: this gives the measure related with a positive linear functional `Λ` on compactly supported continuous functions. The next step is to characterise the constructed measure as the one giving `Λ` back. In this PR, it is assumed to be `NNReal`-linear. The main steps to prove additivity have been proposed by @kkytola [here](#12290 (comment)). A different approach is taken in #12290 for `Real`-linear `Λ`. - [x] depends on: #12266 for a variation of `PartitionOfUnity`. The new contents of this PR are contained in `MeasureTheory.Integral.linearRieszMarkovKakutani` and `Topology.ContinuousMap.CompactlySupported`. Co-authored-by: Yoh Tanimoto <57562556+yoh-tanimoto@users.noreply.github.com>
Contributor
|
Pull request successfully merged into master. Build succeeded: |
NNRealNNReal
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Prove additivity of
RieszContentAux, completing the proof that it gives aContent.Motivation: this gives the measure related with a positive linear functional
Λon compactly supported continuous functions. The next step is to characterise the constructed measure as the one givingΛback.In this PR, it is assumed to be
NNReal-linear. The main steps to prove additivity have been proposed by @kkytola here. A different approach is taken in #12290 forReal-linearΛ.PartitionOfUnity. The new contents of this PR are contained inMeasureTheory.Integral.linearRieszMarkovKakutaniandTopology.ContinuousMap.CompactlySupported.