feat(GroupTheory): coatoms of the subgroup lattice#41651
Open
xroblot wants to merge 3 commits into
Open
Conversation
Add three group-theory results: * `QuotientGroup.comapMk'OrderIso'`: the correspondence theorem as an order isomorphism onto `Set.Ici N` (interval-order variant of `comapMk'OrderIso`). * `isCyclic_of_isCoatom_subsingleton`: a group with at most one maximal subgroup is cyclic (only `IsCoatomic (Subgroup G)` needed). * `CommGroup.isSimpleGroup_iff_isCoatom`: a subgroup of a commutative group is maximal iff the quotient by it is simple (group analogue of `isSimpleModule_iff_isCoatom`).
1 task
PR summary 9057cb64ddImport changes for modified filesNo significant changes to the import graph Import changes for all files
|
plp127
reviewed
Jul 13, 2026
Comment on lines
+279
to
+285
| /-- A group with at most one maximal subgroup is cyclic. Maximal subgroups are the coatoms | ||
| `IsCoatom (· : Subgroup G)` of the subgroup lattice; only `IsCoatomic (Subgroup G)` is required | ||
| (automatic for finite `G`), with no finiteness, commutativity, or `p`-group hypothesis. -/ | ||
| @[to_additive /-- An additive group with at most one maximal subgroup is cyclic. Maximal subgroups | ||
| are the coatoms `IsCoatom (· : AddSubgroup G)` of the subgroup lattice; only | ||
| `IsCoatomic (AddSubgroup G)` is required (automatic for finite `G`), with no finiteness, | ||
| commutativity, or `p`-group hypothesis. -/] |
Contributor
There was a problem hiding this comment.
Can we not mention what's not a hypothesis and instead only talk about what is a hypothesis?
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.
Add three group-theory results related to maximal subgroups:
isCyclic_of_isCoatom_subsingleton: a group with at most one maximal subgroup is cyclic.CommGroup.isSimpleGroup_iff_isCoatom: a subgroup of a commutative group is maximal iff the quotient by it is simple (group analogue ofisSimpleModule_iff_isCoatom).QuotientGroup.comapMk'OrderIso': the correspondence theorem as an order isomorphism onto the intervalSet.Ici N(interval-order variant ofcomapMk'OrderIso, whose codomain is the bare subtype), making theSet.Iciorder API available, mirroringSubmodule.comapMkQRelIso.🤖 This PR was extracted from the SKW project by Claude.