summaryrefslogtreecommitdiff
path: root/theories/ZArith/ZArith_dec.v
blob: b831afeefaa975b42b5251c86ecf3dc63361666c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
(************************************************************************)
(*  v      *   The Coq Proof Assistant  /  The Coq Development Team     *)
(* <O___,, * CNRS-Ecole Polytechnique-INRIA Futurs-Universite Paris Sud *)
(*   \VV/  **************************************************************)
(*    //   *      This file is distributed under the terms of the       *)
(*         *       GNU Lesser General Public License Version 2.1        *)
(************************************************************************)

(*i $Id: ZArith_dec.v 9759 2007-04-12 17:46:54Z notin $ i*)

Require Import Sumbool.

Require Import BinInt.
Require Import Zorder.
Require Import Zcompare.
Open Local Scope Z_scope.

Lemma Dcompare_inf : forall r:comparison, {r = Eq} + {r = Lt} + {r = Gt}.
Proof.
  simple induction r; auto with arith. 
Defined.

Lemma Zcompare_rec :
  forall (P:Set) (n m:Z),
    ((n ?= m) = Eq -> P) -> ((n ?= m) = Lt -> P) -> ((n ?= m) = Gt -> P) -> P.
Proof.
  intros P x y H1 H2 H3.
  elim (Dcompare_inf (x ?= y)).
  intro H. elim H; auto with arith. auto with arith.
Defined.

Section decidability.

  Variables x y : Z.
  
  (** * Decidability of equality on binary integers *)

  Definition Z_eq_dec : {x = y} + {x <> y}.
  Proof.
    apply Zcompare_rec with (n := x) (m := y).
    intro. left. elim (Zcompare_Eq_iff_eq x y); auto with arith.
    intro H3. right. elim (Zcompare_Eq_iff_eq x y). intros H1 H2. unfold not in |- *. intro H4.
    rewrite (H2 H4) in H3. discriminate H3.
    intro H3. right. elim (Zcompare_Eq_iff_eq x y). intros H1 H2. unfold not in |- *. intro H4.
    rewrite (H2 H4) in H3. discriminate H3.
  Defined. 

  (** * Decidability of order on binary integers *)

  Definition Z_lt_dec : {x < y} + {~ x < y}.
  Proof.
    unfold Zlt in |- *.
    apply Zcompare_rec with (n := x) (m := y); intro H.
    right. rewrite H. discriminate.
    left; assumption.
    right. rewrite H. discriminate.
  Defined.

  Definition Z_le_dec : {x <= y} + {~ x <= y}.
  Proof.
    unfold Zle in |- *.
    apply Zcompare_rec with (n := x) (m := y); intro H.
    left. rewrite H. discriminate.
    left. rewrite H. discriminate.
    right. tauto.
  Defined.
  
  Definition Z_gt_dec : {x > y} + {~ x > y}.
  Proof.
    unfold Zgt in |- *.
    apply Zcompare_rec with (n := x) (m := y); intro H.
    right. rewrite H. discriminate.
    right. rewrite H. discriminate.
    left; assumption.
  Defined.

  Definition Z_ge_dec : {x >= y} + {~ x >= y}.
  Proof.
    unfold Zge in |- *.
    apply Zcompare_rec with (n := x) (m := y); intro H.
    left. rewrite H. discriminate.
    right. tauto.
    left. rewrite H. discriminate.
  Defined.

  Definition Z_lt_ge_dec : {x < y} + {x >= y}.
  Proof.
    exact Z_lt_dec.
  Defined.

  Lemma Z_lt_le_dec : {x < y} + {y <= x}.
  Proof.
    intros.
    elim Z_lt_ge_dec.
    intros; left; assumption.
    intros; right; apply Zge_le; assumption.
  Defined.

  Definition Z_le_gt_dec : {x <= y} + {x > y}.
  Proof.
    elim Z_le_dec; auto with arith.
    intro. right. apply Znot_le_gt; auto with arith.
  Defined.

  Definition Z_gt_le_dec : {x > y} + {x <= y}.
  Proof.
    exact Z_gt_dec.
  Defined.

  Definition Z_ge_lt_dec : {x >= y} + {x < y}.
  Proof.
    elim Z_ge_dec; auto with arith.
    intro. right. apply Znot_ge_lt; auto with arith.
  Defined.

  Definition Z_le_lt_eq_dec : x <= y -> {x < y} + {x = y}.
  Proof.
    intro H.
    apply Zcompare_rec with (n := x) (m := y).
    intro. right. elim (Zcompare_Eq_iff_eq x y); auto with arith.
    intro. left. elim (Zcompare_Eq_iff_eq x y); auto with arith.
    intro H1. absurd (x > y); auto with arith.
  Defined.

End decidability.

(** * Cotransitivity of order on binary integers *)

Lemma Zlt_cotrans : forall n m:Z, n < m -> forall p:Z, {n < p} + {p < m}.
Proof.
  intros x y H z.
  case (Z_lt_ge_dec x z).
  intro.
  left.
  assumption.
  intro.
  right.
  apply Zle_lt_trans with (m := x).
  apply Zge_le.
  assumption.
  assumption.
Defined.

Lemma Zlt_cotrans_pos : forall n m:Z, 0 < n + m -> {0 < n} + {0 < m}.
Proof.
  intros x y H.
  case (Zlt_cotrans 0 (x + y) H x).
  intro.
  left.
  assumption.
  intro.
  right.
  apply Zplus_lt_reg_l with (p := x).
  rewrite Zplus_0_r.
  assumption.
Defined.

Lemma Zlt_cotrans_neg : forall n m:Z, n + m < 0 -> {n < 0} + {m < 0}.
Proof.
  intros x y H; case (Zlt_cotrans (x + y) 0 H x); intro Hxy;
    [ right; apply Zplus_lt_reg_l with (p := x); rewrite Zplus_0_r | left ];
    assumption.
Defined.

Lemma not_Zeq_inf : forall n m:Z, n <> m -> {n < m} + {m < n}.
Proof.
  intros x y H.
  case Z_lt_ge_dec with x y.
  intro.
  left.
  assumption.
  intro H0.
  generalize (Zge_le _ _ H0).
  intro.
  case (Z_le_lt_eq_dec _ _ H1).
  intro.
  right.
  assumption.
  intro.
  apply False_rec.
  apply H.
  symmetry  in |- *.
  assumption.
Defined.

Lemma Z_dec : forall n m:Z, {n < m} + {n > m} + {n = m}.
Proof.
  intros x y.
  case (Z_lt_ge_dec x y).
  intro H.
  left.
  left.
  assumption.
  intro H.
  generalize (Zge_le _ _ H).
  intro H0.
  case (Z_le_lt_eq_dec y x H0).
  intro H1.
  left.
  right.
  apply Zlt_gt.
  assumption.
  intro.
  right.
  symmetry  in |- *.
  assumption.
Defined.


Lemma Z_dec' : forall n m:Z, {n < m} + {m < n} + {n = m}.
Proof.
  intros x y.
  case (Z_eq_dec x y); intro H;
    [ right; assumption | left; apply (not_Zeq_inf _ _ H) ].
Defined.



Definition Z_zerop : forall x:Z, {x = 0} + {x <> 0}.
Proof.
  exact (fun x:Z => Z_eq_dec x 0).
Defined.

Definition Z_notzerop (x:Z) := sumbool_not _ _ (Z_zerop x).

Definition Z_noteq_dec (x y:Z) := sumbool_not _ _ (Z_eq_dec x y).