]> matita.cs.unibo.it Git - helm.git/commitdiff
eq_f1
authorEnrico Tassi <enrico.tassi@inria.fr>
Thu, 6 Jul 2006 09:04:36 +0000 (09:04 +0000)
committerEnrico Tassi <enrico.tassi@inria.fr>
Thu, 6 Jul 2006 09:04:36 +0000 (09:04 +0000)
helm/software/matita/library/logic/equality.ma

index b87dc6c95656dcf5de3c3ceb00e9ed105067c6b8..0675edc76bb94eb3144b905dbee0eb76da522119 100644 (file)
@@ -72,6 +72,11 @@ theorem eq_f: \forall  A,B:Type.\forall f:A\to B.
 intros.elim H.reflexivity.
 qed.
 
+theorem eq_f1: \forall  A,B:Type.\forall f:A\to B.
+\forall x,y:A. x=y \to f y = f x.
+intros.elim H.reflexivity.
+qed.
+
 theorem eq_f2: \forall  A,B,C:Type.\forall f:A\to B \to C.
 \forall x1,x2:A. \forall y1,y2:B.
 x1=x2 \to y1=y2 \to f x1 y1 = f x2 y2.