Skip to content

Commit 7cfb227

Browse files
committed
feat(Topology/Algebra/Module/Equiv): add 2 lemmas (leanprover-community#33510)
1 parent 48e7264 commit 7cfb227

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

Mathlib/Topology/Algebra/Module/Equiv.lean

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1199,11 +1199,21 @@ theorem self_comp_inverse (hf : f.IsInvertible) : f ∘L f.inverse = .id _ _ :=
11991199
rcases hf with ⟨e, rfl⟩
12001200
simp
12011201

1202+
@[simp]
1203+
theorem self_apply_inverse (hf : f.IsInvertible) (y : M₂) : f (f.inverse y) = y := by
1204+
rcases hf with ⟨e, rfl⟩
1205+
simp
1206+
12021207
@[simp]
12031208
theorem inverse_comp_self (hf : f.IsInvertible) : f.inverse ∘L f = .id _ _ := by
12041209
rcases hf with ⟨e, rfl⟩
12051210
simp
12061211

1212+
@[simp]
1213+
theorem inverse_apply_self (hf : f.IsInvertible) (y : M) : f.inverse (f y) = y := by
1214+
rcases hf with ⟨e, rfl⟩
1215+
simp
1216+
12071217
protected theorem bijective (hf : f.IsInvertible) : Function.Bijective f := by
12081218
rcases hf with ⟨e, rfl⟩
12091219
simp [ContinuousLinearEquiv.bijective]

0 commit comments

Comments
 (0)