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/Z/orders".
18 include "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/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/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/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/Z/orders/Zlt.con x y)).
70 theorem irreflexive_Zlt: irreflexive Z Zlt.
71 unfold irreflexive.unfold Not.
73 cut (neg n < neg n \to False).
74 apply Hcut.apply H.simplify.unfold lt.apply not_le_Sn_n.
75 cut (pos n < pos n \to False).
76 apply Hcut.apply H.simplify.unfold lt.apply not_le_Sn_n.
79 theorem irrefl_Zlt: irreflexive Z Zlt
82 theorem Zlt_neg_neg_to_lt:
83 \forall n,m:nat. neg n < neg m \to m < n.
87 theorem lt_to_Zlt_neg_neg: \forall n,m:nat.m < n \to neg n < neg m.
92 theorem Zlt_pos_pos_to_lt:
93 \forall n,m:nat. pos n < pos m \to n < m.
97 theorem lt_to_Zlt_pos_pos: \forall n,m:nat.n < m \to pos n < pos m.
102 theorem Zlt_to_Zle: \forall x,y:Z. x < y \to Zsucc x \leq y.
106 cut (OZ < y \to Zsucc OZ \leq y).
107 apply Hcut. assumption.
110 simplify.apply le_O_n.
115 cut (neg n < y \to Zsucc (neg n) \leq y).
116 apply Hcut. assumption.
118 cut (neg O < y \to Zsucc (neg O) \leq y).
119 apply Hcut. assumption.
123 simplify.apply (not_le_Sn_O n1 H2).
124 cut (neg (S n1) < y \to (Zsucc (neg (S n1))) \leq y).
125 apply Hcut. assumption.simplify.
129 simplify.apply (le_S_S_to_le n2 n1 H3).