]> matita.cs.unibo.it Git - helm.git/blob - helm/software/matita/nlibrary/arithmetics/nat.ma
minus in nat.ma
[helm.git] / helm / software / matita / nlibrary / arithmetics / nat.ma
1 (**************************************************************************)
2 (*       ___                                                              *)
3 (*      ||M||                                                             *)
4 (*      ||A||       A project by Andrea Asperti                           *)
5 (*      ||T||                                                             *)
6 (*      ||I||       Developers:                                           *)
7 (*      ||T||       A.Asperti, C.Sacerdoti Coen,                          *)
8 (*      ||A||       E.Tassi, S.Zacchiroli                                 *)
9 (*      \   /                                                             *)
10 (*       \ /        This file is distributed under the terms of the       *)
11 (*        v         GNU Lesser General Public License Version 2.1         *)
12 (*                                                                        *)
13 (**************************************************************************)
14
15 (* include "higher_order_defs/functions.ma". *)
16 include "hints_declaration.ma".
17 include "basics/functions.ma".
18 include "basics/eq.ma". 
19
20 ninductive nat : Type[0] ≝
21   | O : nat
22   | S : nat → nat.
23   
24 interpretation "Natural numbers" 'N = nat.
25
26 alias num (instance 0) = "nnatural number".
27
28 (*
29 nrecord pos : Type ≝
30  {n:>nat; is_pos: n ≠ 0}.
31
32 ncoercion nat_to_pos: ∀n:nat. n ≠0 →pos ≝ mk_pos on 
33 *)
34
35 (* default "natural numbers" cic:/matita/ng/arithmetics/nat/nat.ind.
36 *)
37
38 ndefinition pred ≝
39  λn. match n with [ O ⇒  O | (S p) ⇒ p].
40
41 ntheorem pred_Sn : ∀n. n = pred (S n).
42 //; nqed.
43
44 ntheorem injective_S : injective nat nat S.
45 //; nqed.
46
47 (*
48 ntheorem inj_S : \forall n,m:nat.(S n)=(S m) \to n=m.
49 //. nqed. *)
50
51 ntheorem not_eq_S: ∀n,m:nat. n ≠ m → S n ≠ S m.
52 /2/; nqed.
53
54 ndefinition not_zero: nat → Prop ≝
55  λn: nat. match n with
56   [ O ⇒ False | (S p) ⇒ True ].
57
58 ntheorem not_eq_O_S : ∀n:nat. O ≠ S n.
59 #n; #eqOS; nchange with (not_zero O); nrewrite > eqOS; //.
60 nqed.
61
62 ntheorem not_eq_n_Sn : ∀n:nat. n ≠ S n.
63 #n; nelim n; /2/; nqed.
64
65 ntheorem nat_case:
66  ∀n:nat.∀P:nat → Prop. 
67   (n=O → P O) → (∀m:nat. (n=(S m) → P (S m))) → P n.
68 #n; #P; nelim n; /2/; nqed.
69
70 ntheorem nat_elim2 :
71  ∀R:nat → nat → Prop.
72   (∀n:nat. R O n) 
73   → (∀n:nat. R (S n) O)
74   → (∀n,m:nat. R n m → R (S n) (S m))
75   → ∀n,m:nat. R n m.
76 #R; #ROn; #RSO; #RSS; #n; nelim n;//;
77 #n0; #Rn0m; #m; ncases m;/2/; nqed.
78
79 ntheorem decidable_eq_nat : \forall n,m:nat.decidable (n=m).
80 napply nat_elim2; #n;
81  ##[ ncases n; /2/;
82  ##| /3/;
83  ##| #m; #Hind; ncases Hind; /3/;
84  ##]
85 nqed. 
86
87 (*************************** plus ******************************)
88
89 nlet rec plus n m ≝ 
90  match n with 
91  [ O ⇒ m
92  | S p ⇒ S (plus p m) ].
93
94 interpretation "natural plus" 'plus x y = (plus x y).
95
96 ntheorem plus_O_n: ∀n:nat. n = 0+n.
97 //; nqed.
98
99 (*
100 ntheorem plus_Sn_m: ∀n,m:nat. S (n + m) = S n + m.
101 //; nqed.
102 *)
103
104 ntheorem plus_n_O: ∀n:nat. n = n+0.
105 #n; nelim n; nnormalize; //; nqed.
106
107 ntheorem plus_n_Sm : ∀n,m:nat. S (n+m) = n + S m.
108 #n; nelim n; nnormalize; //; nqed.
109
110 (*
111 ntheorem plus_Sn_m1: ∀n,m:nat. S m + n = n + S m.
112 #n; nelim n; nnormalize; //; nqed.
113 *)
114
115 (*
116 ntheorem plus_n_SO : ∀n:nat. S n = n+S O.
117 //; nqed. *)
118
119 ntheorem symmetric_plus: symmetric ? plus.
120 #n; nelim n; nnormalize; //; nqed. 
121
122 ntheorem associative_plus : associative nat plus.
123 #n; nelim n; nnormalize; //; nqed.
124
125 ntheorem assoc_plus1: ∀a,b,c. c + (b + a) = b + c + a.
126 //; nqed.
127
128 ntheorem injective_plus_r: ∀n:nat.injective nat nat (λm.n+m).
129 #n; nelim n; nnormalize; /3/; nqed.
130
131 (* ntheorem inj_plus_r: \forall p,n,m:nat. p+n = p+m \to n=m
132 \def injective_plus_r. 
133
134 ntheorem injective_plus_l: ∀m:nat.injective nat nat (λn.n+m).
135 /2/; nqed. *)
136
137 (* ntheorem inj_plus_l: \forall p,n,m:nat. n+p = m+p \to n=m
138 \def injective_plus_l. *)
139
140 (*************************** times *****************************)
141
142 nlet rec times n m ≝ 
143  match n with 
144  [ O ⇒ O
145  | S p ⇒ m+(times p m) ].
146
147 interpretation "natural times" 'times x y = (times x y).
148
149 ntheorem times_Sn_m: ∀n,m:nat. m+n*m = S n*m.
150 //; nqed.
151
152 ntheorem times_O_n: ∀n:nat. O = O*n.
153 //; nqed.
154
155 ntheorem times_n_O: ∀n:nat. O = n*O.
156 #n; nelim n; //; nqed.
157
158 ntheorem times_n_Sm : ∀n,m:nat. n+(n*m) = n*(S m).
159 #n; nelim n; nnormalize; //; nqed.
160
161 ntheorem symmetric_times : symmetric nat times. 
162 #n; nelim n; nnormalize; //; nqed.
163
164 (* variant sym_times : \forall n,m:nat. n*m = m*n \def
165 symmetric_times. *)
166
167 ntheorem distributive_times_plus : distributive nat times plus.
168 #n; nelim n; nnormalize; //; nqed.
169
170 ntheorem distributive_times_plus_r:  
171 \forall a,b,c:nat. (b+c)*a = b*a + c*a.
172 //; nqed.
173
174 ntheorem associative_times: associative nat times.
175 #n; nelim n; nnormalize; //; nqed.
176
177 nlemma times_times: ∀x,y,z. x*(y*z) = y*(x*z).
178 //; nqed. 
179
180 (* ci servono questi risultati? 
181 ntheorem times_O_to_O: ∀n,m:nat.n*m=O → n=O ∨ m=O.
182 napply nat_elim2; /2/; 
183 #n; #m; #H; nnormalize; #H1; napply False_ind;napply not_eq_O_S;
184 //; nqed.
185   
186 ntheorem times_n_SO : ∀n:nat. n = n * S O.
187 #n; //; nqed.
188
189 ntheorem times_SSO_n : ∀n:nat. n + n = (S(S O)) * n.
190 nnormalize; //; nqed.
191
192 nlemma times_SSO: \forall n.(S(S O))*(S n) = S(S((S(S O))*n)).
193 //; nqed.
194
195 ntheorem or_eq_eq_S: \forall n.\exists m. 
196 n = (S(S O))*m \lor n = S ((S(S O))*m).
197 #n; nelim n;
198   ##[@; /2/;
199   ##|#a; #H; nelim H; #b;#or;nelim or;#aeq;
200     ##[@ b; @ 2; //;
201     ##|@ (S b); @ 1; /2/;
202     ##]
203 nqed.
204 *)
205
206 (******************** ordering relations ************************)
207
208 ninductive le (n:nat) : nat → Prop ≝
209   | le_n : le n n
210   | le_S : ∀ m:nat. le n m → le n (S m).
211
212 interpretation "natural 'less or equal to'" 'leq x y = (le x y).
213
214 interpretation "natural 'neither less nor equal to'" 'nleq x y = (Not (le x y)).
215
216 ndefinition lt: nat → nat → Prop ≝
217 λn,m:nat. S n ≤ m.
218
219 interpretation "natural 'less than'" 'lt x y = (lt x y).
220
221 interpretation "natural 'not less than'" 'nless x y = (Not (lt x y)).
222
223 ndefinition ge: nat \to nat \to Prop \def
224 \lambda n,m:nat.m \leq n.
225
226 interpretation "natural 'greater or equal to'" 'geq x y = (ge x y).
227
228 ndefinition gt: nat \to nat \to Prop \def
229 \lambda n,m:nat.m<n.
230
231 interpretation "natural 'greater than'" 'gt x y = (gt x y).
232
233 interpretation "natural 'not greater than'" 'ngtr x y = (Not (gt x y)).
234
235 ntheorem transitive_le : transitive nat le.
236 #a; #b; #c; #leab; #lebc;nelim lebc;/2/;
237 nqed.
238
239 (*
240 ntheorem trans_le: \forall n,m,p:nat. n \leq m \to m \leq p \to n \leq p
241 \def transitive_le. *)
242
243 ntheorem transitive_lt: transitive nat lt.
244 #a; #b; #c; #ltab; #ltbc;nelim ltbc;/2/;nqed.
245
246 (*
247 theorem trans_lt: \forall n,m,p:nat. lt n m \to lt m p \to lt n p
248 \def transitive_lt. *)
249
250 ntheorem le_S_S: ∀n,m:nat. n ≤ m → S n ≤ S m.
251 #n; #m; #lenm; nelim lenm; /2/; nqed.
252
253 ntheorem le_O_n : ∀n:nat. O ≤ n.
254 #n; nelim n; /2/; nqed.
255
256 ntheorem le_n_Sn : ∀n:nat. n ≤ S n.
257 /2/; nqed.
258
259 ntheorem le_pred_n : ∀n:nat. pred n ≤ n.
260 #n; nelim n; //; nqed.
261
262 ntheorem monotonic_pred: monotonic ? le pred.
263 #n; #m; #lenm; nelim lenm; /2/; nqed.
264
265 ntheorem le_S_S_to_le: ∀n,m:nat. S n ≤ S m → n ≤ m.
266 /2/; nqed.
267
268 ntheorem lt_S_S_to_lt: ∀n,m. S n < S m \to n < m.
269 /2/; nqed. 
270
271 ntheorem lt_to_lt_S_S: ∀n,m. n < m → S n < S m.
272 /2/; nqed.
273
274 ntheorem lt_to_not_zero : ∀n,m:nat. n < m → not_zero m.
275 #n; #m; #Hlt; nelim Hlt;//; nqed.
276
277 (* lt vs. le *)
278 ntheorem not_le_Sn_O: ∀ n:nat. S n ≰ O.
279 #n; #Hlen0; napply (lt_to_not_zero ?? Hlen0); nqed.
280
281 ntheorem not_le_to_not_le_S_S: ∀ n,m:nat. n ≰ m → S n ≰ S m.
282 /3/; nqed.
283
284 ntheorem not_le_S_S_to_not_le: ∀ n,m:nat. S n ≰ S m → n ≰ m.
285 /3/; nqed.
286
287 ntheorem decidable_le: ∀n,m. decidable (n≤m).
288 napply nat_elim2; #n; /2/;
289 #m; #dec; ncases dec;/3/; nqed.
290
291 ntheorem decidable_lt: ∀n,m. decidable (n < m).
292 #n; #m; napply decidable_le ; nqed.
293
294 ntheorem not_le_Sn_n: ∀n:nat. S n ≰ n.
295 #n; nelim n; /2/; nqed.
296
297 ntheorem lt_S_to_le: ∀n,m:nat. n < S m → n ≤ m.
298 /2/; nqed.
299
300 ntheorem not_le_to_lt: ∀n,m. n ≰ m → m < n.
301 napply nat_elim2; #n;
302  ##[#abs; napply False_ind;/2/;
303  ##|/2/;
304  ##|#m;#Hind;#HnotleSS; napply lt_to_lt_S_S;/3/;
305  ##]
306 nqed.
307
308 ntheorem lt_to_not_le: ∀n,m. n < m → m ≰ n.
309 #n; #m; #Hltnm; nelim Hltnm;/3/; nqed.
310
311 ntheorem not_lt_to_le: ∀n,m:nat. n ≮ m → m ≤ n.
312 #n; #m; #Hnlt; napply lt_S_to_le;
313 (* something strange here: /2/ fails: 
314    we need an extra depths for unfolding not *)
315 napply not_le_to_lt; napply Hnlt; nqed. 
316
317 ntheorem le_to_not_lt: ∀n,m:nat. n ≤ m → m ≮ n.
318 /2/; nqed.
319
320 (* lt and le trans *)
321
322 ntheorem lt_to_le_to_lt: ∀n,m,p:nat. n < m → m ≤ p → n < p.
323 #n; #m; #p; #H; #H1; nelim H1; /2/; nqed.
324
325 ntheorem le_to_lt_to_lt: ∀n,m,p:nat. n ≤ m → m < p → n < p.
326 #n; #m; #p; #H; nelim H; /3/; nqed.
327
328 ntheorem lt_S_to_lt: ∀n,m. S n < m → n < m.
329 /2/; nqed.
330
331 ntheorem ltn_to_ltO: ∀n,m:nat. n < m → O < m.
332 /2/; nqed.
333
334 (*
335 theorem lt_SO_n_to_lt_O_pred_n: \forall n:nat.
336 (S O) \lt n \to O \lt (pred n).
337 intros.
338 apply (ltn_to_ltO (pred (S O)) (pred n) ?).
339  apply (lt_pred (S O) n);
340  [ apply (lt_O_S O) 
341  | assumption
342  ]
343 qed. *)
344
345 ntheorem lt_O_n_elim: ∀n:nat. O < n → 
346   ∀P:nat → Prop.(∀m:nat.P (S m)) → P n.
347 #n; nelim n; //; #abs; napply False_ind; /2/; nqed.
348
349 (*
350 theorem lt_pred: \forall n,m. 
351   O < n \to n < m \to pred n < pred m. 
352 apply nat_elim2
353   [intros.apply False_ind.apply (not_le_Sn_O ? H)
354   |intros.apply False_ind.apply (not_le_Sn_O ? H1)
355   |intros.simplify.unfold.apply le_S_S_to_le.assumption
356   ]
357 qed.
358
359 theorem S_pred: \forall n:nat.lt O n \to eq nat n (S (pred n)).
360 intro.elim n.apply False_ind.exact (not_le_Sn_O O H).
361 apply eq_f.apply pred_Sn.
362 qed.
363
364 theorem le_pred_to_le:
365  ∀n,m. O < m → pred n ≤ pred m → n ≤ m.
366 intros 2;
367 elim n;
368 [ apply le_O_n
369 | simplify in H2;
370   rewrite > (S_pred m);
371   [ apply le_S_S;
372     assumption
373   | assumption
374   ]
375 ].
376 qed.
377
378 *)
379
380 (* le to lt or eq *)
381 ntheorem le_to_or_lt_eq: ∀n,m:nat. n ≤ m → n < m ∨ n = m.
382 #n; #m; #lenm; nelim lenm; /3/; nqed.
383
384 (* not eq *)
385 ntheorem lt_to_not_eq : ∀n,m:nat. n < m → n ≠ m.
386 /2/; nqed.
387
388 (*not lt 
389 ntheorem eq_to_not_lt: ∀a,b:nat. a = b → a ≮ b.
390 intros.
391 unfold Not.
392 intros.
393 rewrite > H in H1.
394 apply (lt_to_not_eq b b)
395 [ assumption
396 | reflexivity
397 ]
398 qed. 
399
400 theorem lt_n_m_to_not_lt_m_Sn: ∀n,m. n < m → m ≮ S n.
401 intros;
402 unfold Not;
403 intro;
404 unfold lt in H;
405 unfold lt in H1;
406 generalize in match (le_S_S ? ? H);
407 intro;
408 generalize in match (transitive_le ? ? ? H2 H1);
409 intro;
410 apply (not_le_Sn_n ? H3).
411 qed. *)
412
413 ntheorem not_eq_to_le_to_lt: ∀n,m. n≠m → n≤m → n<m.
414 #n; #m; #Hneq; #Hle; ncases (le_to_or_lt_eq ?? Hle); //;
415 #Heq; nelim (Hneq Heq); nqed.
416
417 (* le elimination *)
418 ntheorem le_n_O_to_eq : ∀n:nat. n ≤ O → O=n.
419 #n; ncases n; //; #a ; #abs; nelim (not_le_Sn_O ? abs); nqed.
420
421 ntheorem le_n_O_elim: ∀n:nat. n ≤ O → ∀P: nat →Prop. P O → P n.
422 #n; ncases n; //; #a; #abs; nelim (not_le_Sn_O ? abs); nqed. 
423
424 ntheorem le_n_Sm_elim : ∀n,m:nat.n ≤ S m → 
425 ∀P:Prop. (S n ≤ S m → P) → (n=S m → P) → P.
426 #n; #m; #Hle; #P; nelim Hle; /3/; nqed.
427
428 (* le and eq *)
429
430 ntheorem le_to_le_to_eq: ∀n,m. n ≤ m → m ≤ n → n = m.
431 napply nat_elim2; /3/; nqed.
432
433 ntheorem lt_O_S : \forall n:nat. O < S n.
434 /2/; nqed.
435
436 (*
437 (* other abstract properties *)
438 theorem antisymmetric_le : antisymmetric nat le.
439 unfold antisymmetric.intros 2.
440 apply (nat_elim2 (\lambda n,m.(n \leq m \to m \leq n \to n=m))).
441 intros.apply le_n_O_to_eq.assumption.
442 intros.apply False_ind.apply (not_le_Sn_O ? H).
443 intros.apply eq_f.apply H.
444 apply le_S_S_to_le.assumption.
445 apply le_S_S_to_le.assumption.
446 qed.
447
448 theorem antisym_le: \forall n,m:nat. n \leq m \to m \leq n \to n=m
449 \def antisymmetric_le.
450
451 theorem le_n_m_to_lt_m_Sn_to_eq_n_m: ∀n,m. n ≤ m → m < S n → n=m.
452 intros;
453 unfold lt in H1;
454 generalize in match (le_S_S_to_le ? ? H1);
455 intro;
456 apply antisym_le;
457 assumption.
458 qed.
459 *)
460
461 (* well founded induction principles *)
462
463 ntheorem nat_elim1 : ∀n:nat.∀P:nat → Prop. 
464 (∀m.(∀p. p < m → P p) → P m) → P n.
465 #n; #P; #H; 
466 ncut (∀q:nat. q ≤ n → P q);/2/;
467 nelim n; 
468  ##[#q; #HleO; (* applica male *) 
469     napply (le_n_O_elim ? HleO);
470     napply H; #p; #ltpO;
471     napply False_ind; /2/; 
472  ##|#p; #Hind; #q; #HleS; 
473     napply H; #a; #lta; napply Hind;
474     napply le_S_S_to_le;/2/;
475  ##]
476 nqed.
477
478 (* some properties of functions *)
479 (*
480 definition increasing \def \lambda f:nat \to nat. 
481 \forall n:nat. f n < f (S n).
482
483 theorem increasing_to_monotonic: \forall f:nat \to nat.
484 increasing f \to monotonic nat lt f.
485 unfold monotonic.unfold lt.unfold increasing.unfold lt.intros.elim H1.apply H.
486 apply (trans_le ? (f n1)).
487 assumption.apply (trans_le ? (S (f n1))).
488 apply le_n_Sn.
489 apply H.
490 qed.
491
492 theorem le_n_fn: \forall f:nat \to nat. (increasing f) 
493 \to \forall n:nat. n \le (f n).
494 intros.elim n.
495 apply le_O_n.
496 apply (trans_le ? (S (f n1))).
497 apply le_S_S.apply H1.
498 simplify in H. unfold increasing in H.unfold lt in H.apply H.
499 qed.
500
501 theorem increasing_to_le: \forall f:nat \to nat. (increasing f) 
502 \to \forall m:nat. \exists i. m \le (f i).
503 intros.elim m.
504 apply (ex_intro ? ? O).apply le_O_n.
505 elim H1.
506 apply (ex_intro ? ? (S a)).
507 apply (trans_le ? (S (f a))).
508 apply le_S_S.assumption.
509 simplify in H.unfold increasing in H.unfold lt in H.
510 apply H.
511 qed.
512
513 theorem increasing_to_le2: \forall f:nat \to nat. (increasing f) 
514 \to \forall m:nat. (f O) \le m \to 
515 \exists i. (f i) \le m \land m <(f (S i)).
516 intros.elim H1.
517 apply (ex_intro ? ? O).
518 split.apply le_n.apply H.
519 elim H3.elim H4.
520 cut ((S n1) < (f (S a)) \lor (S n1) = (f (S a))).
521 elim Hcut.
522 apply (ex_intro ? ? a).
523 split.apply le_S. assumption.assumption.
524 apply (ex_intro ? ? (S a)).
525 split.rewrite < H7.apply le_n.
526 rewrite > H7.
527 apply H.
528 apply le_to_or_lt_eq.apply H6.
529 qed.
530 *)
531
532 (*********************** monotonicity ***************************)
533 ntheorem monotonic_le_plus_r: 
534 ∀n:nat.monotonic nat le (λm.n + m).
535 #n; #a; #b; nelim n; nnormalize; //;
536 #m; #H; #leab;napply le_S_S; /2/; nqed.
537
538 (*
539 ntheorem le_plus_r: ∀p,n,m:nat. n ≤ m → p + n ≤ p + m
540 ≝ monotonic_le_plus_r. *)
541
542 ntheorem monotonic_le_plus_l: 
543 ∀m:nat.monotonic nat le (λn.n + m).
544 /2/; nqed.
545
546 (*
547 ntheorem le_plus_l: \forall p,n,m:nat. n \le m \to n + p \le m + p
548 \def monotonic_le_plus_l. *)
549
550 ntheorem le_plus: ∀n1,n2,m1,m2:nat. n1 ≤ n2  \to m1 ≤ m2 
551 → n1 + m1 ≤ n2 + m2.
552 #n1; #n2; #m1; #m2; #len; #lem; napply transitive_le;
553 /2/; nqed.
554
555 ntheorem le_plus_n :∀n,m:nat. m ≤ n + m.
556 /2/; nqed. 
557
558 ntheorem le_plus_n_r :∀n,m:nat. m ≤ m + n.
559 /2/; nqed.
560
561 ntheorem eq_plus_to_le: ∀n,m,p:nat.n=m+p → m ≤ n.
562 //; nqed.
563
564 ntheorem le_plus_to_le: ∀a,n,m. a + n ≤ a + m → n ≤ m.
565 #a; nelim a; /3/; nqed. 
566
567 ntheorem le_plus_to_le_r: ∀a,n,m. n + a ≤ m +a → n ≤ m.
568 /2/; nqed. 
569
570 (* times *)
571 ntheorem monotonic_le_times_r: 
572 ∀n:nat.monotonic nat le (λm. n * m).
573 #n; #x; #y; #lexy; nelim n; nnormalize;//;(* lento /2/;*)
574 #a; #lea; napply le_plus; //;
575 nqed.
576
577 (*
578 ntheorem le_times_r: \forall p,n,m:nat. n \le m \to p*n \le p*m
579 \def monotonic_le_times_r. *)
580
581 ntheorem monotonic_le_times_l: 
582 ∀m:nat.monotonic nat le (λn.n*m).
583 /2/; nqed.
584
585 (*
586 theorem le_times_l: \forall p,n,m:nat. n \le m \to n*p \le m*p
587 \def monotonic_le_times_l. *)
588
589 ntheorem le_times: ∀n1,n2,m1,m2:nat. 
590 n1 ≤ n2  → m1 ≤ m2 → n1*m1 ≤ n2*m2.
591 #n1; #n2; #m1; #m2; #len; #lem; 
592 napply transitive_le; (* /2/ slow *)
593  ##[ ##| napply monotonic_le_times_l;//; 
594      ##| napply monotonic_le_times_r;//;
595  ##]
596 nqed.
597
598 ntheorem lt_times_n: ∀n,m:nat. O < n → m ≤ n*m.
599 (* bello *)
600 /2/; nqed.
601
602 ntheorem le_times_to_le: 
603 ∀a,n,m. O < a → a * n ≤ a * m → n ≤ m.
604 #a; napply nat_elim2; nnormalize;
605   ##[//;
606   ##|#n; #H1; #H2; napply False_ind;
607      ngeneralize in match H2;
608      napply lt_to_not_le;
609      napply (transitive_le ? (S n));/2/;
610   ##|#n; #m; #H; #lta; #le;
611      napply le_S_S; napply H; /2/;
612   ##]
613 nqed.
614
615 ntheorem le_S_times_2: ∀n,m.O < m → n ≤ m → n < 2*m.
616 #n; #m; #posm; #lenm; (* interessante *)
617 nnormalize; napplyS (le_plus n); //; nqed.
618
619 (************************** minus ******************************)
620
621 nlet rec minus n m ≝ 
622  match n with 
623  [ O ⇒ O
624  | S p ⇒ 
625         match m with
626           [ O ⇒ S p
627     | S q ⇒ minus p q ]].
628         
629 interpretation "natural minus" 'minus x y = (minus x y).
630
631 ntheorem minus_S_S: ∀n,m:nat.S n - S m = n -m.
632 //; nqed.
633
634 ntheorem minus_O_n: ∀n:nat.O=O-n.
635 #n; ncases n; //; nqed.
636
637 ntheorem minus_n_O: ∀n:nat.n=n-O.
638 #n; ncases n; //; nqed.
639
640 ntheorem minus_n_n: ∀n:nat.O=n-n.
641 #n; nelim n; //; nqed.
642
643 ntheorem minus_Sn_n: ∀n:nat. S O = (S n)-n.
644 #n; nelim n; //; nqed.
645
646 ntheorem minus_Sn_m: ∀m,n:nat. m ≤ n → S n -m = S (n-m).
647 (* qualcosa da capire qui 
648 #n; #m; #lenm; nelim lenm; napplyS refl_eq. *)
649 napply nat_elim2; 
650   ##[//
651   ##|#n; #abs; napply False_ind;/2/;
652   ##|/3/;
653   ##]
654 nqed.
655
656 ntheorem eq_minus_S_pred: ∀n,m. n - (S m) = pred(n -m).
657 napply nat_elim2; //; nqed.
658
659 ntheorem plus_minus:
660 ∀m,n,p:nat. m ≤ n → (n-m)+p = (n+p)-m.
661 napply nat_elim2; 
662   ##[//
663   ##|#n; #p; #abs; napply False_ind;/2/;
664   ##|nnormalize;/3/;
665   ##]
666 nqed.
667
668 ntheorem minus_plus_m_m: ∀n,m:nat.n = (n+m)-m.
669 #n; #m; napplyS (plus_minus m m n); //; nqed.
670
671 ntheorem plus_minus_m_m: ∀n,m:nat.
672 m \leq n \to n = (n-m)+m.
673 #n; #m; #lemn; napplyS symmetric_eq; 
674 napplyS (plus_minus m n m); //; nqed.
675
676 ntheorem le_plus_minus_m_m: ∀n,m:nat. n ≤ (n-m)+m.
677 #n; nelim n;
678   ##[//
679   ##|#a; #Hind; #m; ncases m;/2/;  
680   ##]
681 nqed.
682
683 ntheorem minus_to_plus :∀n,m,p:nat.
684   m ≤ n → n-m = p → n = m+p.
685 #n; #m; #p; #lemn; #eqp; napplyS plus_minus_m_m; //;
686 nqed.
687
688 ntheorem plus_to_minus :∀n,m,p:nat.n = m+p → n-m = p.
689 (* /4/ done in 43.5 *)
690 #n; #m; #p; #eqp; 
691 napply symmetric_eq;
692 napplyS (minus_plus_m_m p m);
693 nqed.
694
695 ntheorem minus_pred_pred : ∀n,m:nat. O < n → O < m → 
696 pred n - pred m = n - m.
697 #n; #m; #posn; #posm;
698 napply (lt_O_n_elim n posn);
699 napply (lt_O_n_elim m posm);//.
700 nqed.
701
702 (*
703 theorem eq_minus_n_m_O: \forall n,m:nat.
704 n \leq m \to n-m = O.
705 intros 2.
706 apply (nat_elim2 (\lambda n,m.n \leq m \to n-m = O)).
707 intros.simplify.reflexivity.
708 intros.apply False_ind.
709 apply not_le_Sn_O;
710 [2: apply H | skip].
711 intros.
712 simplify.apply H.apply le_S_S_to_le. apply H1.
713 qed.
714
715 theorem le_SO_minus: \forall n,m:nat.S n \leq m \to S O \leq m-n.
716 intros.elim H.elim (minus_Sn_n n).apply le_n.
717 rewrite > minus_Sn_m.
718 apply le_S.assumption.
719 apply lt_to_le.assumption.
720 qed.
721
722 theorem minus_le_S_minus_S: \forall n,m:nat. m-n \leq S (m-(S n)).
723 intros.
724 apply (nat_elim2 (\lambda n,m.m-n \leq S (m-(S n)))).
725 intro.elim n1.simplify.apply le_n_Sn.
726 simplify.rewrite < minus_n_O.apply le_n.
727 intros.simplify.apply le_n_Sn.
728 intros.simplify.apply H.
729 qed.
730
731 theorem lt_minus_S_n_to_le_minus_n : \forall n,m,p:nat. m-(S n) < p \to m-n \leq p. 
732 intros 3.intro.
733 (* autobatch *)
734 (* end auto($Revision: 9739 $) proof: TIME=1.33 SIZE=100 DEPTH=100 *)
735 apply (trans_le (m-n) (S (m-(S n))) p).
736 apply minus_le_S_minus_S.
737 assumption.
738 qed.
739
740 theorem le_minus_m: \forall n,m:nat. n-m \leq n.
741 intros.apply (nat_elim2 (\lambda m,n. n-m \leq n)).
742 intros.rewrite < minus_n_O.apply le_n.
743 intros.simplify.apply le_n.
744 intros.simplify.apply le_S.assumption.
745 qed.
746
747 theorem lt_minus_m: \forall n,m:nat. O < n \to O < m \to n-m \lt n.
748 intros.apply (lt_O_n_elim n H).intro.
749 apply (lt_O_n_elim m H1).intro.
750 simplify.unfold lt.apply le_S_S.apply le_minus_m.
751 qed.
752
753 theorem minus_le_O_to_le: \forall n,m:nat. n-m \leq O \to n \leq m.
754 intros 2.
755 apply (nat_elim2 (\lambda n,m:nat.n-m \leq O \to n \leq m)).
756 intros.apply le_O_n.
757 simplify.intros. assumption.
758 simplify.intros.apply le_S_S.apply H.assumption.
759 qed.
760 *)
761
762 (* monotonicity and galois *)
763
764 ntheorem monotonic_le_minus_l: 
765 ∀p,q,n:nat. q ≤ p → q-n ≤ p-n.
766 napply nat_elim2; #p; #q;
767   ##[#lePO; napply (le_n_O_elim ? lePO);//;
768   ##|//;
769   ##|#Hind; #n; ncases n;
770     ##[//;
771     ##|#a; #leSS; napply Hind; /2/;
772     ##]
773   ##]
774 nqed.
775
776 ntheorem le_minus_to_plus: ∀n,m,p. n-m ≤ p → n≤ p+m.
777 #n; #m; #p; #lep;
778 napply transitive_le;
779   ##[##|napply le_plus_minus_m_m
780   ##|napply monotonic_le_plus_l;//;
781   ##]
782 nqed.
783
784 ntheorem le_plus_to_minus: ∀n,m,p. n ≤ p+m → n-m ≤ p.
785 #n; #m; #p; #lep;
786 (* bello *)
787 napplyS monotonic_le_minus_l;//;
788 nqed.
789
790 ntheorem monotonic_le_minus_r: 
791 ∀p,q,n:nat. q ≤ p → n-p ≤ n-q.
792 #p; #q; #n; #lepq;
793 napply le_plus_to_minus;
794 napply (transitive_le ??? (le_plus_minus_m_m ? q));/2/;
795 nqed.