feat(GroupTheory): extend DomMulAct API with core lemmas#41751
feat(GroupTheory): extend DomMulAct API with core lemmas#41751SNAPKITTYWEST wants to merge 1 commit into
Conversation
Add basic API for DomMulAct (domain multiplication action): - Extensionality principle - one_smul, mul_smul (simp-normal) - smul_congr_left, smul_congr_right - inv_smul_smul, smul_inv_smul (group case) - smulEquiv (carrier permutation) - fixedPoints, orbit, stabilizer infrastructure Closes leanprover-community#5379
Welcome new contributor!Thank you for contributing to Mathlib! If you haven't done so already, please review our contribution guidelines, as well as the style guide and naming conventions. In particular, we kindly remind contributors that we have guidelines regarding the use of AI when making pull requests. We use a review queue to manage reviews. If your PR does not appear there, it is probably because it is not successfully building (i.e., it doesn't have a green checkmark), has the If you haven't already done so, please come to https://leanprover.zulipchat.com/, introduce yourself, and mention your new PR. Thank you again for joining our community. |
PR summary 650b89f8c4Import changes for modified filesNo significant changes to the import graph Import changes for all files
|
|
LLM-generated |
Closes #5379
Summary
Extends the \DomMulAct\ (domain multiplication action) API with fundamental lemmas needed for downstream formal verification work.
Changes
Motivation
The existing \DomMulAct\ class lacks the basic API surface that \MulAction\ and \DistribMulAction\ provide out of the box. This PR closes that gap, enabling formal verification pipelines to reason about domain multiplication actions without ad-hoc sorry placeholders.
Related