Merged
Conversation
ae530db to
09293a6
Compare
09293a6 to
4b9af26
Compare
CohenCyril
reviewed
Dec 17, 2024
theories/measure.v
Outdated
Comment on lines
+1393
to
+1398
| Lemma countable_bigcupT_measurable d (T : sigmaRingType d) (U : choiceType) | ||
| (F : U -> set T) : countable [set: U] -> | ||
| (forall i, measurable (F i)) -> measurable (\bigcup_i F i). | ||
| Proof. | ||
| elim/choicePpointed: U => U in F *. | ||
| by move=> _ _; rewrite empty_eq0 bigcup0. |
Member
There was a problem hiding this comment.
Actually there is no reason to assume a choice type (it is not used in the statement), so I would do:
Suggested change
| Lemma countable_bigcupT_measurable d (T : sigmaRingType d) (U : choiceType) | |
| (F : U -> set T) : countable [set: U] -> | |
| (forall i, measurable (F i)) -> measurable (\bigcup_i F i). | |
| Proof. | |
| elim/choicePpointed: U => U in F *. | |
| by move=> _ _; rewrite empty_eq0 bigcup0. | |
| Lemma countable_bigcupT_measurable d (T : sigmaRingType d) U | |
| (F : U -> set T) : countable [set: U] -> | |
| (forall i, measurable (F i)) -> measurable (\bigcup_i F i). | |
| Proof. | |
| elim/Ppointed: U => U in F *; first by move=> *; rewrite empty_eq0 bigcup0. |
3e8f73b to
2978c54
Compare
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.
Motivation for this change
This generalizes
bigcupT_measurable_ratto anychoiceTypewhose whole set is countable.I didn't prove a version with
countTypebecause I didn't manage to generalize thequasi_canonicalmachinery. Anyway, that doesn't make the lemma less general. @CohenCyrilChecklist
CHANGELOG_UNRELEASED.mdReference: How to document
Reminder to reviewers