Skip to content

Commit 24434ef

Browse files
feat(RepresentationTheory/Basic): add one API (#41076)
1 parent 44ae711 commit 24434ef

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

Mathlib/RepresentationTheory/Basic.lean

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,10 @@ theorem self_inv_apply (g : G) (x : V) :
101101
ρ g (ρ g⁻¹ x) = x := by
102102
simp [← Module.End.mul_apply, ← map_mul]
103103

104+
lemma inv_apply_eq_iff {g : G} {x y : V} :
105+
ρ g⁻¹ x = y ↔ x = ρ g y := by
106+
constructor <;> rintro rfl <;> simp
107+
104108
lemma apply_bijective (g : G) :
105109
Function.Bijective (ρ g) :=
106110
Equiv.bijective ⟨ρ g, ρ g⁻¹, inv_self_apply ρ g, self_inv_apply ρ g⟩

0 commit comments

Comments
 (0)