1 (**************************************************************************)
4 (* ||A|| A project by Andrea Asperti *)
6 (* ||I|| Developers: *)
7 (* ||T|| A.Asperti, C.Sacerdoti Coen, *)
8 (* ||A|| E.Tassi, S.Zacchiroli *)
10 (* \ / This file is distributed under the terms of the *)
11 (* v GNU Lesser General Public License Version 2.1 *)
13 (**************************************************************************)
15 set "baseuri" "cic:/matita/library_autobatch/Z/orders".
17 include "auto/Z/z.ma".
18 include "auto/nat/orders.ma".
20 definition Zle : Z \to Z \to Prop \def
26 | (pos m) \Rightarrow True
27 | (neg m) \Rightarrow False ]
30 [ OZ \Rightarrow False
31 | (pos m) \Rightarrow n \leq m
32 | (neg m) \Rightarrow False ]
36 | (pos m) \Rightarrow True
37 | (neg m) \Rightarrow m \leq n ]].
39 (*CSC: the URI must disappear: there is a bug now *)
40 interpretation "integer 'less or equal to'" 'leq x y = (cic:/matita/library_autobatch/Z/orders/Zle.con x y).
41 (*CSC: the URI must disappear: there is a bug now *)
42 interpretation "integer 'neither less nor equal to'" 'nleq x y =
43 (cic:/matita/logic/connectives/Not.con (cic:/matita/library_autobatch/Z/orders/Zle.con x y)).
45 definition Zlt : Z \to Z \to Prop \def
50 [ OZ \Rightarrow False
51 | (pos m) \Rightarrow True
52 | (neg m) \Rightarrow False ]
55 [ OZ \Rightarrow False
56 | (pos m) \Rightarrow n<m
57 | (neg m) \Rightarrow False ]
61 | (pos m) \Rightarrow True
62 | (neg m) \Rightarrow m<n ]].
64 (*CSC: the URI must disappear: there is a bug now *)
65 interpretation "integer 'less than'" 'lt x y = (cic:/matita/library_autobatch/Z/orders/Zlt.con x y).
66 (*CSC: the URI must disappear: there is a bug now *)
67 interpretation "integer 'not less than'" 'nless x y =
68 (cic:/matita/logic/connectives/Not.con (cic:/matita/library_autobatch/Z/orders/Zlt.con x y)).
70 theorem irreflexive_Zlt: irreflexive Z Zlt.
75 [ (*qui autobatch non chiude il goal*)
77 | cut (neg n < neg n \to False)
79 (*qui autobatch non chiude il goal*)
86 | cut (pos n < pos n \to False)
88 (*qui autobatch non chiude il goal*)
98 theorem irrefl_Zlt: irreflexive Z Zlt
101 theorem Zlt_neg_neg_to_lt:
102 \forall n,m:nat. neg n < neg m \to m < n.
104 (*qui autobatch non chiude il goal*)
108 theorem lt_to_Zlt_neg_neg: \forall n,m:nat.m < n \to neg n < neg m.
114 theorem Zlt_pos_pos_to_lt:
115 \forall n,m:nat. pos n < pos m \to n < m.
117 (*qui autobatch non chiude il goal*)
121 theorem lt_to_Zlt_pos_pos: \forall n,m:nat.n < m \to pos n < pos m.
127 theorem Zlt_to_Zle: \forall x,y:Z. x < y \to Zsucc x \leq y.
131 cut (OZ < y \to Zsucc OZ \leq y)
138 (*qui autobatch non chiude il goal*)
143 (*qui autobatch non chiude il goal*)
150 cut (neg n < y \to Zsucc (neg n) \leq y)
155 [ cut (neg O < y \to Zsucc (neg O) \leq y)
166 (*qui autobatch non chiude il goal*)
167 apply (not_le_Sn_O n1 H2)
170 | cut (neg (S n1) < y \to (Zsucc (neg (S n1))) \leq y)
181 (*qui autobatch non chiude il goal*)
182 apply (le_S_S_to_le n2 n1 H3)