Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Mathlib/GroupTheory/GroupAction/FixedPoints.lean
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,14 @@ theorem smul_fixedBy (g h : G) :
ext a
simp_rw [Set.mem_smul_set_iff_inv_smul_mem, mem_fixedBy, mul_smul, smul_eq_iff_eq_inv_smul h]

lemma fixedBy_eq_empty_iff [IsRightCancelMul M] {m : M} :
fixedBy M m = ∅ ↔ m ≠ 1 := by
simp [MulAction.fixedBy, Set.eq_empty_iff_forall_notMem]

lemma fixedBy_op_eq_empty_iff [IsLeftCancelMul M] {m : M} :
fixedBy M (MulOpposite.op m) = ∅ ↔ m ≠ 1 := by
simp [MulAction.fixedBy, Set.eq_empty_iff_forall_notMem]
Comment on lines +122 to +128
Copy link
Copy Markdown
Contributor

@tb65536 tb65536 Apr 21, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should the names somehow reflect that the action is on M itself? Otherwise these names sound like they would apply to a general MulAction?


end FixedPoints

section Pointwise
Expand Down
Loading