2 ||M|| This file is part of HELM, an Hypertextual, Electronic
3 ||A|| Library of Mathematics, developed at the Computer Science
4 ||T|| Department of the University of Bologna, Italy.
7 ||A|| This file is distributed under the terms of the
8 \ / GNU General Public License Version 2
10 V_______________________________________________________________ *)
12 include "basics/relations.ma".
14 (* Definitions **************************************************************)
18 inductive nat : Type[0] ≝
22 interpretation "Natural numbers" 'N = nat.
24 alias num (instance 0) = "natural number".
27 λn. match n with [ O ⇒ O | S p ⇒ p].
29 definition not_zero: nat → Prop ≝
30 λn: nat. match n with [ O ⇒ False | (S p) ⇒ True ].
34 inductive le (n:nat) : nat → Prop ≝
36 | le_S : ∀ m:nat. le n m → le n (S m).
38 interpretation "natural 'less or equal to'" 'leq x y = (le x y).
40 interpretation "natural 'neither less nor equal to'" 'nleq x y = (Not (le x y)).
42 definition lt: nat → nat → Prop ≝ λn,m. S n ≤ m.
44 interpretation "natural 'less than'" 'lt x y = (lt x y).
46 interpretation "natural 'not less than'" 'nless x y = (Not (lt x y)).
48 definition ge: nat → nat → Prop ≝ λn,m.m ≤ n.
50 interpretation "natural 'greater or equal to'" 'geq x y = (ge x y).
52 definition gt: nat → nat → Prop ≝ λn,m.m<n.
54 interpretation "natural 'greater than'" 'gt x y = (gt x y).
56 interpretation "natural 'not greater than'" 'ngtr x y = (Not (gt x y)).
58 (* abstract properties *)
60 definition increasing ≝ λf:nat → nat. ∀n:nat. f n < f (S n).
62 (* arithmetic operations *)
65 match n with [ O ⇒ m | S p ⇒ S (plus p m) ].
67 interpretation "natural plus" 'plus x y = (plus x y).
70 match n with [ O ⇒ 0 | S p ⇒ m + (times p m) ].
72 interpretation "natural times" 'times x y = (times x y).
82 interpretation "natural minus" 'minus x y = (minus x y).
84 (* Generic conclusion ******************************************************)
88 (n=O → P O) → (∀m:nat. n= S m → P (S m)) → P n.
89 #n #P (elim n) /2/ qed.
95 → (∀n,m:nat. R n m → R (S n) (S m))
97 #R #ROn #RSO #RSS #n (elim n) // #n0 #Rn0m #m (cases m) /2/ qed.
99 lemma le_gen: ∀P:nat → Prop.∀n.(∀i. i ≤ n → P i) → P n.
102 (* Equalities ***************************************************************)
104 theorem pred_Sn : ∀n. n = pred (S n).
107 theorem injective_S : injective nat nat S.
110 theorem S_pred: ∀n. 0 < n → S(pred n) = n.
111 #n #posn (cases posn) //
114 theorem plus_O_n: ∀n:nat. n = 0 + n.
117 theorem plus_n_O: ∀n:nat. n = n + 0.
118 #n (elim n) normalize // qed.
120 theorem plus_n_Sm : ∀n,m:nat. S (n+m) = n + S m.
121 #n (elim n) normalize // qed.
123 theorem commutative_plus: commutative ? plus.
124 #n (elim n) normalize // qed.
126 theorem associative_plus : associative nat plus.
127 #n (elim n) normalize // qed.
129 theorem assoc_plus1: ∀a,b,c. c + (b + a) = b + c + a.
132 theorem injective_plus_r: ∀n:nat.injective nat nat (λm.n+m).
133 #n (elim n) normalize /3/ qed.
135 theorem injective_plus_l: ∀n:nat.injective nat nat (λm.m+n).
138 theorem times_Sn_m: ∀n,m:nat. m+n*m = S n*m.
141 theorem times_O_n: ∀n:nat. 0 = 0 * n.
144 theorem times_n_O: ∀n:nat. 0 = n * 0.
147 theorem times_n_Sm : ∀n,m:nat. n+(n*m) = n*(S m).
148 #n (elim n) normalize // qed.
150 theorem commutative_times : commutative nat times.
151 #n (elim n) normalize // qed.
153 theorem distributive_times_plus : distributive nat times plus.
154 #n (elim n) normalize // qed.
156 theorem distributive_times_plus_r :
157 ∀a,b,c:nat. (b+c)*a = b*a + c*a.
160 theorem associative_times: associative nat times.
161 #n (elim n) normalize // qed.
163 lemma times_times: ∀x,y,z. x*(y*z) = y*(x*z).
166 theorem times_n_1 : ∀n:nat. n = n * 1.
169 theorem minus_S_S: ∀n,m:nat.S n - S m = n -m.
172 theorem minus_O_n: ∀n:nat.0=0-n.
175 theorem minus_n_O: ∀n:nat.n=n-0.
178 theorem minus_n_n: ∀n:nat.0=n-n.
181 theorem minus_Sn_n: ∀n:nat. S 0 = (S n)-n.
182 #n (elim n) normalize // qed.
184 theorem eq_minus_S_pred: ∀n,m. n - (S m) = pred(n -m).
185 @nat_elim2 normalize // qed.
187 lemma plus_plus_comm_23: ∀x,y,z. x + y + z = x + z + y.
190 lemma discr_plus_xy_minus_xz: ∀x,z,y. x + y = x - z → y = 0.
191 #x elim x -x // #x #IHx * normalize
192 [ #y #H @(IHx 0) <minus_n_O /2 width=1/
193 | #z #y >plus_n_Sm #H lapply (IHx … H) -x -z #H destruct
197 (* Negated equalities *******************************************************)
199 theorem not_eq_S: ∀n,m:nat. n ≠ m → S n ≠ S m.
202 theorem not_eq_O_S : ∀n:nat. 0 ≠ S n.
203 #n @nmk #eqOS (change with (not_zero O)) >eqOS // qed.
205 theorem not_eq_n_Sn: ∀n:nat. n ≠ S n.
208 (* Atomic conclusion *******************************************************)
212 theorem lt_to_not_zero : ∀n,m:nat. n < m → not_zero m.
213 #n #m #Hlt (elim Hlt) // qed.
217 theorem le_S_S: ∀n,m:nat. n ≤ m → S n ≤ S m.
218 #n #m #lenm (elim lenm) /2/ qed.
220 theorem le_O_n : ∀n:nat. 0 ≤ n.
223 theorem le_n_Sn : ∀n:nat. n ≤ S n.
226 theorem transitive_le : transitive nat le.
227 #a #b #c #leab #lebc (elim lebc) /2/
230 theorem le_pred_n : ∀n:nat. pred n ≤ n.
233 theorem monotonic_pred: monotonic ? le pred.
234 #n #m #lenm (elim lenm) /2/ qed.
236 theorem le_S_S_to_le: ∀n,m:nat. S n ≤ S m → n ≤ m.
240 theorem monotonic_le_plus_r:
241 ∀n:nat.monotonic nat le (λm.n + m).
242 #n #a #b (elim n) normalize //
243 #m #H #leab @le_S_S /2/ qed.
245 theorem monotonic_le_plus_l:
246 ∀m:nat.monotonic nat le (λn.n + m).
249 theorem le_plus: ∀n1,n2,m1,m2:nat. n1 ≤ n2 → m1 ≤ m2
251 #n1 #n2 #m1 #m2 #len #lem @(transitive_le ? (n1+m2))
254 theorem le_plus_n :∀n,m:nat. m ≤ n + m.
257 lemma le_plus_a: ∀a,n,m. n ≤ m → n ≤ a + m.
260 lemma le_plus_b: ∀b,n,m. n + b ≤ m → n ≤ m.
263 theorem le_plus_n_r :∀n,m:nat. m ≤ m + n.
266 theorem eq_plus_to_le: ∀n,m,p:nat.n=m+p → m ≤ n.
269 theorem le_plus_to_le: ∀a,n,m. a + n ≤ a + m → n ≤ m.
270 #a (elim a) normalize /3/ qed.
272 theorem le_plus_to_le_r: ∀a,n,m. n + a ≤ m +a → n ≤ m.
275 theorem monotonic_le_times_r:
276 ∀n:nat.monotonic nat le (λm. n * m).
277 #n #x #y #lexy (elim n) normalize//(* lento /2/*)
281 theorem le_times: ∀n1,n2,m1,m2:nat.
282 n1 ≤ n2 → m1 ≤ m2 → n1*m1 ≤ n2*m2.
283 #n1 #n2 #m1 #m2 #len #lem @(transitive_le ? (n1*m2)) /2/
287 theorem lt_times_n: ∀n,m:nat. O < n → m ≤ n*m.
290 theorem le_times_to_le:
291 ∀a,n,m. O < a → a * n ≤ a * m → n ≤ m.
292 #a @nat_elim2 normalize
295 @(transitive_le ? (a*S n)) /2/
301 theorem le_plus_minus_m_m: ∀n,m:nat. n ≤ (n-m)+m.
302 #n (elim n) // #a #Hind #m (cases m) // normalize #n/2/
305 theorem le_plus_to_minus_r: ∀a,b,c. a + b ≤ c → a ≤ c -b.
306 #a #b #c #H @(le_plus_to_le_r … b) /2/
309 lemma lt_to_le: ∀x,y. x < y → x ≤ y.
312 lemma inv_eq_minus_O: ∀x,y. x - y = 0 → x ≤ y.
315 lemma le_x_times_x: ∀x. x ≤ x * x.
321 theorem transitive_lt: transitive nat lt.
322 #a #b #c #ltab #ltbc (elim ltbc) /2/
325 theorem lt_to_le_to_lt: ∀n,m,p:nat. n < m → m ≤ p → n < p.
326 #n #m #p #H #H1 (elim H1) /2/ qed.
328 theorem le_to_lt_to_lt: ∀n,m,p:nat. n ≤ m → m < p → n < p.
329 #n #m #p #H (elim H) /3/ qed.
331 theorem lt_S_to_lt: ∀n,m. S n < m → n < m.
334 theorem ltn_to_ltO: ∀n,m:nat. n < m → 0 < m.
337 theorem lt_O_S : ∀n:nat. O < S n.
340 theorem monotonic_lt_plus_r:
341 ∀n:nat.monotonic nat lt (λm.n+m).
344 theorem monotonic_lt_plus_l:
345 ∀n:nat.monotonic nat lt (λm.m+n).
348 theorem lt_plus: ∀n,m,p,q:nat. n < m → p < q → n + p < m + q.
349 #n #m #p #q #ltnm #ltpq
350 @(transitive_lt ? (n+q))/2/ qed.
352 theorem lt_plus_to_lt_l :∀n,p,q:nat. p+n < q+n → p<q.
355 theorem lt_plus_to_lt_r :∀n,p,q:nat. n+p < n+q → p<q.
358 theorem increasing_to_monotonic: ∀f:nat → nat.
359 increasing f → monotonic nat lt f.
360 #f #incr #n #m #ltnm (elim ltnm) /2/
363 theorem monotonic_lt_times_r:
364 ∀c:nat. O < c → monotonic nat lt (λt.(c*t)).
366 (elim ltnm) normalize
368 |#a #_ #lt1 @(transitive_le … lt1) //
372 theorem monotonic_lt_times_l:
373 ∀c:nat. 0 < c → monotonic nat lt (λt.(t*c)).
377 theorem lt_to_le_to_lt_times:
378 ∀n,m,p,q:nat. n < m → p ≤ q → O < q → n*p < m*q.
379 #n #m #p #q #ltnm #lepq #posq
380 @(le_to_lt_to_lt ? (n*q))
381 [@monotonic_le_times_r //
382 |@monotonic_lt_times_l //
386 theorem lt_times:∀n,m,p,q:nat. n<m → p<q → n*p < m*q.
387 #n #m #p #q #ltnm #ltpq @lt_to_le_to_lt_times/2/
390 theorem lt_plus_to_minus_r: ∀a,b,c. a + b < c → a < c - b.
391 #a #b #c #H @le_plus_to_minus_r //
394 lemma lt_plus_Sn_r: ∀a,x,n. a < a + x + (S n).
397 theorem lt_S_S_to_lt: ∀n,m:nat. S n < S m → n < m.
403 theorem not_le_Sn_O: ∀ n:nat. S n ≰ 0.
404 #n @nmk #Hlen0 @(lt_to_not_zero ?? Hlen0) qed.
406 theorem not_le_to_not_le_S_S: ∀ n,m:nat. n ≰ m → S n ≰ S m.
409 theorem not_le_S_S_to_not_le: ∀ n,m:nat. S n ≰ S m → n ≰ m.
412 theorem not_le_Sn_n: ∀n:nat. S n ≰ n.
415 theorem lt_to_not_le: ∀n,m. n < m → m ≰ n.
416 #n #m #Hltnm (elim Hltnm) /3/ qed.
418 theorem not_le_to_lt: ∀n,m. n ≰ m → m < n.
422 |#m #Hind #HnotleSS @le_S_S @Hind /2/
428 theorem not_lt_to_le: ∀n,m:nat. n ≮ m → m ≤ n.
429 #n #m #H @le_S_S_to_le @not_le_to_lt /2/ qed.
431 theorem le_to_not_lt: ∀n,m:nat. n ≤ m → m ≮ n.
432 #n #m #H @lt_to_not_le /2/ (* /3/ *) qed.
434 (* Compound conclusion ******************************************************)
436 theorem decidable_eq_nat : ∀n,m:nat.decidable (n=m).
437 @nat_elim2 #n [ (cases n) /2/ | /3/ | #m #Hind (cases Hind) /3/]
440 theorem decidable_le: ∀n,m. decidable (n≤m).
441 @nat_elim2 #n /2/ #m * /3/ qed.
443 theorem decidable_lt: ∀n,m. decidable (n < m).
444 #n #m @decidable_le qed.
446 theorem le_to_or_lt_eq: ∀n,m:nat. n ≤ m → n < m ∨ n = m.
447 #n #m #lenm (elim lenm) /3/ qed.
449 theorem eq_or_gt: ∀n. 0 = n ∨ 0 < n.
450 #n elim (le_to_or_lt_eq 0 n ?) // /2 width=1/
453 theorem increasing_to_le2: ∀f:nat → nat. increasing f →
454 ∀m:nat. f 0 ≤ m → ∃i. f i ≤ m ∧ m < f (S i).
455 #f #incr #m #lem (elim lem)
456 [@(ex_intro ? ? O) /2/
457 |#n #len * #a * #len #ltnr (cases(le_to_or_lt_eq … ltnr)) #H
458 [@(ex_intro ? ? a) % /2/
459 |@(ex_intro ? ? (S a)) % //
464 lemma le_inv_plus_l: ∀x,y,z. x + y ≤ z → x ≤ z - y ∧ y ≤ z.
467 lemma lt_inv_plus_l: ∀x,y,z. x + y < z → x < z ∧ y < z - x.
470 lemma lt_or_ge: ∀m,n. m < n ∨ n ≤ m.
471 #m #n elim (decidable_lt m n) /2/ /3/
474 lemma le_or_ge: ∀m,n. m ≤ n ∨ n ≤ m.
475 #m #n elim (decidable_le m n) /2/ /4/
478 (* More general conclusion **************************************************)
480 theorem nat_ind_plus: ∀R:predicate nat.
481 R 0 → (∀n. R n → R (n + 1)) → ∀n. R n.
484 theorem lt_O_n_elim: ∀n:nat. 0 < n →
485 ∀P:nat → Prop.(∀m:nat.P (S m)) → P n.
486 #n (elim n) // #abs @False_ind /2/ @absurd
489 theorem le_n_O_elim: ∀n:nat. n ≤ O → ∀P: nat →Prop. P O → P n.
490 #n (cases n) // #a #abs @False_ind /2/ qed.
492 theorem le_n_Sm_elim : ∀n,m:nat.n ≤ S m →
493 ∀P:Prop. (S n ≤ S m → P) → (n=S m → P) → P.
494 #n #m #Hle #P (elim Hle) /3/ qed.
496 theorem nat_elim1 : ∀n:nat.∀P:nat → Prop.
497 (∀m.(∀p. p < m → P p) → P m) → P n.
499 cut (∀q:nat. q ≤ n → P q) /2/
501 [#q #HleO (* applica male *)
502 @(le_n_O_elim ? HleO)
503 @H #p #ltpO @False_ind /2/ (* 3 *)
505 @H #a #lta @Hind @le_S_S_to_le /2/
509 fact f_ind_aux: ∀A. ∀f:A→ℕ. ∀P:predicate A.
510 (∀n. (∀a. f a < n → P a) → ∀a. f a = n → P a) →
512 #A #f #P #H #n @(nat_elim1 … n) -n #n /3 width=3/ (**) (* auto slow (34s) without #n *)
515 lemma f_ind: ∀A. ∀f:A→ℕ. ∀P:predicate A.
516 (∀n. (∀a. f a < n → P a) → ∀a. f a = n → P a) → ∀a. P a.
518 @(f_ind_aux … H) -H [2: // | skip ]
521 fact f2_ind_aux: ∀A1,A2. ∀f:A1→A2→ℕ. ∀P:relation2 A1 A2.
522 (∀n. (∀a1,a2. f a1 a2 < n → P a1 a2) → ∀a1,a2. f a1 a2 = n → P a1 a2) →
523 ∀n,a1,a2. f a1 a2 = n → P a1 a2.
524 #A1 #A2 #f #P #H #n @(nat_elim1 … n) -n #n /3 width=3/ (**) (* auto slow (34s) without #n *)
527 lemma f2_ind: ∀A1,A2. ∀f:A1→A2→ℕ. ∀P:relation2 A1 A2.
528 (∀n. (∀a1,a2. f a1 a2 < n → P a1 a2) → ∀a1,a2. f a1 a2 = n → P a1 a2) →
530 #A1 #A2 #f #P #H #a1 #a2
531 @(f2_ind_aux … H) -H [2: // | skip ]
534 (* More negated equalities **************************************************)
536 theorem lt_to_not_eq : ∀n,m:nat. n < m → n ≠ m.
537 #n #m #H @not_to_not /2/ qed.
539 (* More equalities **********************************************************)
541 theorem le_n_O_to_eq : ∀n:nat. n ≤ 0 → 0=n.
542 #n (cases n) // #a #abs @False_ind /2/ qed.
544 theorem le_to_le_to_eq: ∀n,m. n ≤ m → m ≤ n → n = m.
545 @nat_elim2 /4 by le_n_O_to_eq, monotonic_pred, eq_f, sym_eq/
548 theorem increasing_to_injective: ∀f:nat → nat.
549 increasing f → injective nat nat f.
550 #f #incr #n #m cases(decidable_le n m)
551 [#lenm cases(le_to_or_lt_eq … lenm) //
552 #lenm #eqf @False_ind @(absurd … eqf) @lt_to_not_eq
553 @increasing_to_monotonic //
554 |#nlenm #eqf @False_ind @(absurd … eqf) @sym_not_eq
555 @lt_to_not_eq @increasing_to_monotonic /2/
559 theorem minus_Sn_m: ∀m,n:nat. m ≤ n → S n -m = S (n-m).
560 (* qualcosa da capire qui
561 #n #m #lenm nelim lenm napplyS refl_eq. *)
564 |#n #abs @False_ind /2/
565 |#n #m #Hind #c applyS Hind /2/
570 ∀m,n,p:nat. m ≤ n → (n-m)+p = (n+p)-m.
573 |#n #p #abs @False_ind /2/
578 theorem minus_plus_m_m: ∀n,m:nat.n = (n+m)-m.
581 theorem plus_minus_m_m: ∀n,m:nat.
583 #n #m #lemn @sym_eq /2/ qed.
585 theorem minus_to_plus :∀n,m,p:nat.
586 m ≤ n → n-m = p → n = m+p.
587 #n #m #p #lemn #eqp (applyS plus_minus_m_m) //
590 theorem plus_to_minus :∀n,m,p:nat.n = m+p → n-m = p.
591 #n #m #p #eqp @sym_eq (applyS (minus_plus_m_m p m))
594 theorem minus_pred_pred : ∀n,m:nat. O < n → O < m →
595 pred n - pred m = n - m.
596 #n #m #posn #posm @(lt_O_n_elim n posn) @(lt_O_n_elim m posm) //.
599 theorem plus_minus_commutative: ∀x,y,z. z ≤ y → x + (y - z) = x + y - z.
600 /2 by plus_minus/ qed.
602 (* More atomic conclusion ***************************************************)
606 theorem le_n_fn: ∀f:nat → nat.
607 increasing f → ∀n:nat. n ≤ f n.
608 #f #incr #n (elim n) /2/
611 theorem monotonic_le_minus_l:
612 ∀p,q,n:nat. q ≤ p → q-n ≤ p-n.
614 [#lePO @(le_n_O_elim ? lePO) //
616 |#Hind #n (cases n) // #a #leSS @Hind /2/
620 theorem le_minus_to_plus: ∀n,m,p. n-m ≤ p → n≤ p+m.
621 #n #m #p #lep @transitive_le
622 [|@le_plus_minus_m_m | @monotonic_le_plus_l // ]
625 theorem le_minus_to_plus_r: ∀a,b,c. c ≤ b → a ≤ b - c → a + c ≤ b.
626 #a #b #c #Hlecb #H >(plus_minus_m_m … Hlecb) /2/
629 theorem le_plus_to_minus: ∀n,m,p. n ≤ p+m → n-m ≤ p.
630 #n #m #p #lep /2/ qed.
632 theorem monotonic_le_minus_r:
633 ∀p,q,n:nat. q ≤ p → n-p ≤ n-q.
634 #p #q #n #lepq @le_plus_to_minus
635 @(transitive_le … (le_plus_minus_m_m ? q)) /2/
638 theorem increasing_to_le: ∀f:nat → nat.
639 increasing f → ∀m:nat.∃i.m ≤ f i.
640 #f #incr #m (elim m) /2/#n * #a #lenfa
641 @(ex_intro ?? (S a)) /2/
645 lemma le_plus_compatible: ∀x1,x2,y1,y2. x1 ≤ y1 → x2 ≤ y2 → x1 + x2 ≤ y1 + y2.
646 #x1 #y1 #x2 #y2 #H1 #H2 /2/ @le_plus // /2/ /3 by le_minus_to_plus, monotonic_le_plus_r, transitive_le/ qed.
649 lemma minus_le: ∀x,y. x - y ≤ x.
654 theorem not_eq_to_le_to_lt: ∀n,m. n≠m → n≤m → n<m.
655 #n #m #Hneq #Hle cases (le_to_or_lt_eq ?? Hle) //
656 #Heq @not_le_to_lt /2/ qed-.
658 theorem lt_times_n_to_lt_l:
659 ∀n,p,q:nat. p*n < q*n → p < q.
660 #n #p #q #Hlt (elim (decidable_lt p q)) //
661 #nltpq @False_ind @(absurd ? ? (lt_to_not_le ? ? Hlt))
662 applyS monotonic_le_times_r /2/
665 theorem lt_times_n_to_lt_r:
666 ∀n,p,q:nat. n*p < n*q → p < q.
669 theorem lt_minus_to_plus: ∀a,b,c. a - b < c → a < c + b.
670 #a #b #c #H @not_le_to_lt
671 @(not_to_not … (lt_to_not_le …H)) /2/
674 theorem lt_minus_to_plus_r: ∀a,b,c. a < b - c → a + c < b.
675 #a #b #c #H @not_le_to_lt @(not_to_not … (le_plus_to_minus …))
679 theorem lt_plus_to_minus: ∀n,m,p. m ≤ n → n < p+m → n-m < p.
680 #n #m #p #lenm #H normalize <minus_Sn_m // @le_plus_to_minus //
683 theorem monotonic_lt_minus_l: ∀p,q,n. n ≤ q → q < p → q - n < p - n.
685 @lt_plus_to_minus_r <plus_minus_m_m //
688 (* More compound conclusion *************************************************)
690 lemma discr_minus_x_xy: ∀x,y. x = x - y → x = 0 ∨ y = 0.
691 * /2 width=1/ #x * /2 width=1/ #y normalize #H
692 lapply (minus_le x y) <H -H #H
693 elim (not_le_Sn_n x) #H0 elim (H0 ?) //
696 lemma plus_le_0: ∀x,y. x + y ≤ 0 → x = 0 ∧ y = 0.
697 #x #y #H elim (le_inv_plus_l … H) -H #H1 #H2 /3 width=1/
700 (* Still more equalities ****************************************************)
702 theorem eq_minus_O: ∀n,m:nat.
704 #n #m #lenm @(le_n_O_elim (n-m)) /2/
707 theorem distributive_times_minus: distributive ? times minus.
709 (cases (decidable_lt b c)) #Hbc
710 [> eq_minus_O [2:/2/] >eq_minus_O //
711 @monotonic_le_times_r /2/
712 |@sym_eq (applyS plus_to_minus) <distributive_times_plus
713 @eq_f (applyS plus_minus_m_m) /2/
716 theorem minus_plus: ∀n,m,p. n-m-p = n -(m+p).
718 cases (decidable_le (m+p) n) #Hlt
719 [@plus_to_minus @plus_to_minus <associative_plus
721 |cut (n ≤ m+p) [@(transitive_le … (le_n_Sn …)) @not_le_to_lt //]
722 #H >eq_minus_O /2/ (* >eq_minus_O // *)
726 theorem minus_minus: ∀n,m,p:nat. p ≤ m → m ≤ n →
729 @sym_eq @plus_to_minus <associative_plus <plus_minus_m_m //
730 <commutative_plus <plus_minus_m_m //
733 lemma minus_minus_comm: ∀a,b,c. a - b - c = a - c - b.
734 /3 by monotonic_le_minus_l, le_to_le_to_eq/ qed.
736 lemma minus_le_minus_minus_comm: ∀b,c,a. c ≤ b → a - (b - c) = a + c - b.
737 #b #c #a #H >(plus_minus_m_m b c) in ⊢ (? ? ?%); //
740 lemma minus_minus_m_m: ∀m,n. n ≤ m → m - (m - n) = n.
743 lemma minus_plus_plus_l: ∀x,y,h. (x + h) - (y + h) = x - y.
746 (* Stilll more atomic conclusion ********************************************)
750 lemma le_fwd_plus_plus_ge: ∀m1,m2. m2 ≤ m1 → ∀n1,n2. m1 + n1 ≤ m2 + n2 → n1 ≤ n2.
751 #m1 #m2 #H #n1 #n2 >commutative_plus
752 #H elim (le_inv_plus_l … H) -H >commutative_plus <minus_le_minus_minus_comm //
753 #H #_ @(transitive_le … H) /2 width=1/
756 (*********************** boolean arithmetics ********************)
758 include "basics/bool.ma".
762 [ O ⇒ match m with [ O ⇒ true | S q ⇒ false]
763 | S p ⇒ match m with [ O ⇒ false | S q ⇒ eqb p q]
766 theorem eqb_elim : ∀ n,m:nat.∀ P:bool → Prop.
767 (n=m → (P true)) → (n ≠ m → (P false)) → (P (eqb n m)).
769 [#n (cases n) normalize /3/
775 theorem eqb_n_n: ∀n. eqb n n = true.
776 #n (elim n) normalize // qed.
778 theorem eqb_true_to_eq: ∀n,m:nat. eqb n m = true → n = m.
779 #n #m @(eqb_elim n m) // #_ #abs @False_ind /2/ qed.
781 theorem eqb_false_to_not_eq: ∀n,m:nat. eqb n m = false → n ≠ m.
782 #n #m @(eqb_elim n m) /2/ qed.
784 theorem eq_to_eqb_true: ∀n,m:nat.n = m → eqb n m = true.
787 theorem not_eq_to_eqb_false: ∀n,m:nat.
788 n ≠ m → eqb n m = false.
789 #n #m #noteq @eqb_elim// #Heq @False_ind /2/ qed.
799 theorem leb_elim: ∀n,m:nat. ∀P:bool → Prop.
800 (n ≤ m → P true) → (n ≰ m → P false) → P (leb n m).
804 |#n #m #Hind #P #Pt #Pf @Hind
805 [#lenm @Pt @le_S_S // |#nlenm @Pf /2/ ]
809 theorem leb_true_to_le:∀n,m.leb n m = true → n ≤ m.
810 #n #m @leb_elim // #_ #abs @False_ind /2/ qed.
812 theorem leb_false_to_not_le:∀n,m.
813 leb n m = false → n ≰ m.
814 #n #m @leb_elim // #_ #abs @False_ind /2/ qed.
816 theorem le_to_leb_true: ∀n,m. n ≤ m → leb n m = true.
817 #n #m @leb_elim // #H #H1 @False_ind /2/ qed.
819 theorem not_le_to_leb_false: ∀n,m. n ≰ m → leb n m = false.
820 #n #m @leb_elim // #H #H1 @False_ind /2/ qed.
822 theorem lt_to_leb_false: ∀n,m. m < n → leb n m = false.
826 definition min: nat →nat →nat ≝
827 λn.λm. if leb n m then n else m.
829 definition max: nat →nat →nat ≝
830 λn.λm. if leb n m then m else n.
832 lemma commutative_min: commutative ? min.
833 #n #m normalize @leb_elim
834 [@leb_elim normalize /2/
835 |#notle >(le_to_leb_true …) // @(transitive_le ? (S m)) /2/
838 lemma le_minr: ∀i,n,m. i ≤ min n m → i ≤ m.
839 #i #n #m normalize @leb_elim normalize /2/ qed.
841 lemma le_minl: ∀i,n,m. i ≤ min n m → i ≤ n.
844 lemma to_min: ∀i,n,m. i ≤ n → i ≤ m → i ≤ min n m.
845 #i #n #m #lein #leim normalize (cases (leb n m))
848 lemma commutative_max: commutative ? max.
849 #n #m normalize @leb_elim
850 [@leb_elim normalize /2/
851 |#notle >(le_to_leb_true …) // @(transitive_le ? (S m)) /2/
854 lemma le_maxl: ∀i,n,m. max n m ≤ i → n ≤ i.
855 #i #n #m normalize @leb_elim normalize /2/ qed.
857 lemma le_maxr: ∀i,n,m. max n m ≤ i → m ≤ i.
860 lemma to_max: ∀i,n,m. n ≤ i → m ≤ i → max n m ≤ i.
861 #i #n #m #leni #lemi normalize (cases (leb n m))