]> matita.cs.unibo.it Git - helm.git/blob - matita/tests/demodulation_matita.ma
experimental branch with no set baseuri command and no developments
[helm.git] / matita / tests / demodulation_matita.ma
1 (**************************************************************************)
2 (*       ___                                                              *)
3 (*      ||M||                                                             *)
4 (*      ||A||       A project by Andrea Asperti                           *)
5 (*      ||T||                                                             *)
6 (*      ||I||       Developers:                                           *)
7 (*      ||T||         The HELM team.                                      *)
8 (*      ||A||         http://helm.cs.unibo.it                             *)
9 (*      \   /                                                             *)
10 (*       \ /        This file is distributed under the terms of the       *)
11 (*        v         GNU General Public License Version 2                  *)
12 (*                                                                        *)
13 (**************************************************************************)
14
15 set "baseuri" "cic:/matita/demodulation_matita/".
16
17 include "nat/minus.ma".
18
19 theorem p2: \forall x,y:nat. x+x = (S(S O))*x.
20 intros.demodulate.reflexivity.
21 qed.
22
23 theorem p4: \forall x:nat. (x+(S O))*(x-(S O))=x*x - (S O).
24 intro.
25 apply (nat_case x)
26 [simplify.reflexivity
27 |intro.demodulate.reflexivity]
28 qed.
29
30 theorem p5: \forall x,y:nat. (x+y)*(x+y) = x*x + (S(S O))*(x*y) + (y*y).
31 intros.demodulate.reflexivity.
32 qed.
33