File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed
Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change 9090
9191### Removed
9292
93+ - in ` forms.v ` :
94+ + lemmas ` eq_map_mx ` , ` map_mx_id `
95+
9396### Infrastructure
9497
9598### Misc
Original file line number Diff line number Diff line change @@ -39,13 +39,6 @@ Structure revop X Y Z (f : Y -> X -> Z) := RevOp {
3939 _ : forall x, f x =1 fun_of_revop^~ x
4040}.
4141
42- Lemma eq_map_mx (R S : ringType) m n (M : 'M[R]_(m,n))
43- (g f : R -> S) : f =1 g -> M ^ f = M ^ g.
44- Proof . by move=> eq_fg; apply/matrixP=> i j; rewrite !mxE. Qed .
45-
46- Lemma map_mx_id (R : ringType) m n (M : 'M[R]_(m,n)) : M ^ id = M.
47- Proof . by apply/matrixP=> i j; rewrite !mxE. Qed .
48-
4942Lemma eq_map_mx_id (R : ringType) m n (M : 'M[R]_(m,n)) (f : R -> R) :
5043 f =1 id -> M ^ f = M.
5144Proof . by move=> /eq_map_mx->; rewrite map_mx_id. Qed .
You can’t perform that action at this time.
0 commit comments