]> matita.cs.unibo.it Git - helm.git/commitdiff
incomplete proof completed
authorClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Tue, 14 Jun 2005 08:20:37 +0000 (08:20 +0000)
committerClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Tue, 14 Jun 2005 08:20:37 +0000 (08:20 +0000)
helm/matita/tests/rewrite.ma
helm/matita/tests/simpl.ma
helm/matita/tests/test2.ma

index e99d75e837ca2140ea67287e4b9203170d267de4..82f245185a8da9fe81c83783ab18a1977b81cf15 100644 (file)
@@ -6,4 +6,6 @@ theorem a:
   \forall a,b:nat.
   a = b \to b + 0 = a.
 intros.
-rewrite left H.
\ No newline at end of file
+rewrite left H.
+auto.
+qed.
\ No newline at end of file
index c455b7692b3f9f7228afb8790239f8c9334e65af..8b0f1a6a0196ab225cf00b546f12e52d019aaff7 100644 (file)
@@ -4,5 +4,9 @@ theorem a :
  \forall A:Set.
  \forall x,y : A.
  not (x = y) \to not(y = x).
-intro.
+intros.
 simplify.
+intro. apply H.
+symmetry.
+exact H1.
+qed.
\ No newline at end of file
index 29c694d5fd114bb1ce6f68e2031480f880da80f1..c3f3c36b8e1e877a575e8cc8124ad1c7497560a2 100644 (file)
@@ -4,4 +4,6 @@ alias symbol "eq" (instance 0) = "leibnitz's equality".
 theorem a:\forall x:nat.x=x\land x=x.
 intro.
 split.
-goal 6.
\ No newline at end of file
+reflexivity.
+reflexivity.
+qed.
\ No newline at end of file