]> matita.cs.unibo.it Git - helm.git/blob - helm/software/matita/library/logic/connectives2.ma
Preparing for 0.5.9 release.
[helm.git] / helm / software / matita / library / logic / connectives2.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 include "higher_order_defs/relations.ma".
16
17 theorem reflexive_iff: reflexive ? iff.
18  unfold reflexive;
19  intro;
20  split;
21  intro;
22  assumption.
23 qed.
24
25 theorem symmetric_iff: symmetric ? iff.
26  unfold symmetric;
27  intros;
28  elim H;
29  split;
30  assumption.
31 qed.
32
33 theorem transitive_iff: transitive ? iff.
34  unfold transitive;
35  intros;
36  elim H;
37  elim H1;
38  split;
39  intro;
40  autobatch depth=3.
41 qed.
42