]> matita.cs.unibo.it Git - helm.git/commitdiff
some examples of the new ApplyS tactic
authorAndrea Asperti <andrea.asperti@unibo.it>
Thu, 15 Jun 2006 09:39:55 +0000 (09:39 +0000)
committerAndrea Asperti <andrea.asperti@unibo.it>
Thu, 15 Jun 2006 09:39:55 +0000 (09:39 +0000)
matita/tests/applys.ma [new file with mode: 0644]

diff --git a/matita/tests/applys.ma b/matita/tests/applys.ma
new file mode 100644 (file)
index 0000000..7457317
--- /dev/null
@@ -0,0 +1,34 @@
+(**************************************************************************)
+(*       ___                                                              *)
+(*      ||M||                                                             *)
+(*      ||A||       A project by Andrea Asperti                           *)
+(*      ||T||                                                             *)
+(*      ||I||       Developers:                                           *)
+(*      ||T||         The HELM team.                                      *)
+(*      ||A||         http://helm.cs.unibo.it                             *)
+(*      \   /                                                             *)
+(*       \ /        This file is distributed under the terms of the       *)
+(*        v         GNU General Public License Version 2                  *)
+(*                                                                        *)
+(**************************************************************************)
+
+set "baseuri" "cic:/matita/test/".
+
+include "nat/div_and_mod.ma".
+include "nat/factorial.ma".
+include "nat/primes.ma".
+
+theorem prova : \forall n. (n+O)*(S O) = n.
+intro.
+applyS times_n_SO.
+qed.
+
+lemma foo: ∀n.(S n)! = (S n) * n!.
+intro; reflexivity.
+qed.
+
+theorem prova2 :
+ \forall n. S n \divides (S n)!.
+intros.
+applyS (witness ? ? ? (refl_eq ? ?)).
+qed.