[Merged by Bors] - feat: fun x ↦ (x ⊓ z, x ⊔ z) is StrictMono in ModularLattice#17457
Closed
alreadydone wants to merge 1 commit intomasterfrom
Closed
[Merged by Bors] - feat: fun x ↦ (x ⊓ z, x ⊔ z) is StrictMono in ModularLattice#17457alreadydone wants to merge 1 commit intomasterfrom
fun x ↦ (x ⊓ z, x ⊔ z) is StrictMono in ModularLattice#17457alreadydone wants to merge 1 commit intomasterfrom
Conversation
PR summary 3d40d6db19Import changes for modified filesNo significant changes to the import graph Import changes for all files
|
YaelDillies
approved these changes
Oct 6, 2024
Contributor
YaelDillies
left a comment
There was a problem hiding this comment.
That's very nifty!
maintainer merge
|
🚀 Pull request has been placed on the maintainer queue by YaelDillies. |
mathlib-bors bot
pushed a commit
that referenced
this pull request
Oct 7, 2024
In the proof of `wellFounded_lt_exact_sequence`, it is implicitly shown that `fun x : α ↦ (x ⊓ z, x ⊔ z)` is StrictMono in a modular lattice, with the lexicographic order on `α × α`. Here we show the stronger result with `α × α` equipped with the product order, and golf the proof. If `G` is not an abelian group, then `α = Subgroup G` is not necessarily a modular lattice. However, if `z` is a normal subgroup, the result still holds true. We prove a closely related result `strictMono_comap_prod_map` which replaces `inf` with `comap` and `sup` with `map`, so it concerns a function to `Subgroup z × Subgroup (G ⧸ z)` instead. The same result for submodules immediately implies that Noetherian/Artinian are closed under extensions, which is proven in #17425 using `wellFounded_lt/gt_exact_sequence`. If `z` is not even normal, the function to `Subgroup z × Set (G ⧸ z)` is still StrictMono.
Contributor
|
Pull request successfully merged into master. Build succeeded: |
fun x ↦ (x ⊓ z, x ⊔ z) is StrictMono in ModularLatticefun x ↦ (x ⊓ z, x ⊔ z) is StrictMono in ModularLattice
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.
In the proof of
wellFounded_lt_exact_sequence, it is implicitly shown thatfun x : α ↦ (x ⊓ z, x ⊔ z)is StrictMono in a modular lattice, with the lexicographic order onα × α. Here we show the stronger result withα × αequipped with the product order, and golf the proof.If
Gis not an abelian group, thenα = Subgroup Gis not necessarily a modular lattice. However, ifzis a normal subgroup, the result still holds true. We prove a closely related resultstrictMono_comap_prod_mapwhich replacesinfwithcomapandsupwithmap, so it concerns a function toSubgroup z × Subgroup (G ⧸ z)instead. The same result for submodules immediately implies that Noetherian/Artinian are closed under extensions, which is proven in #17425 usingwellFounded_lt/gt_exact_sequence.If
zis not even normal, the function toSubgroup z × Set (G ⧸ z)is still StrictMono.