feat: add Baer-Suzuki theorem eval problem#311
Open
kim-em wants to merge 2 commits into
Open
Conversation
This PR adds the Baer-Suzuki theorem: an element x of a finite group G lies in the p-core O_p(G) iff every pair (x, x^g) of conjugates generates a p-group. Baer (1957) for p = 2, Suzuki (1965) in general; a standard tool in CFSG-era local analysis. Introduces LeanEval/GroupTheory/Defs/PCore.lean defining O_p(G) as the supremum of normal p-subgroups, since Mathlib has no `pCore` operation. 🤖 Prepared with Claude Code
The original docstring incorrectly stated that the supremum of normal p-subgroups is only a p-group for finite G. In fact the family of normal p-subgroups is directed under ≤ (the join of two normal p-subgroups is again a normal p-subgroup, by Subgroup.sup_normal and IsPGroup.to_sup_of_normal_left), so by Subgroup.mem_iSup_of_directed every element of the supremum already lies in one of the summands, hence has p-power order. So pCore p G is always a p-group, regardless of |G|. 🤖 Prepared with Claude Code
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.
This PR adds the Baer-Suzuki theorem: an element
xof a finite groupGlies in thep-coreO_p(G)iff every pair(x, x^g)of conjugates generates ap-group. Baer (1957) forp = 2, Suzuki (1965) in general; a standard tool in CFSG-era local analysis, used together with the Bender method and signalizer functor theory.Introduces
LeanEval/GroupTheory/Defs/PCore.leandefiningO_p(G)as the supremum of normalp-subgroups, since Mathlib has nopCoreoperation.🤖 Prepared with Claude Code