File tree Expand file tree Collapse file tree
Mathlib/Topology/Algebra/Module Expand file tree Collapse file tree Original file line number Diff line number Diff 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]
12031208theorem 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+
12071217protected theorem bijective (hf : f.IsInvertible) : Function.Bijective f := by
12081218 rcases hf with ⟨e, rfl⟩
12091219 simp [ContinuousLinearEquiv.bijective]
You can’t perform that action at this time.
0 commit comments