X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fmatita%2Fnlibrary%2Farithmetics%2Fnat.ma;h=120a0bb16199c888d16866c495c1fbc7a2f1579e;hb=603f2f6b596d8632b9bd53c73ae0b9c3575231e0;hp=d8ac55049f19e5c3d16008f4f4387f1b28442131;hpb=68710656f43bcc362a14df381cc03dc92feab73d;p=helm.git diff --git a/helm/software/matita/nlibrary/arithmetics/nat.ma b/helm/software/matita/nlibrary/arithmetics/nat.ma index d8ac55049..120a0bb16 100644 --- a/helm/software/matita/nlibrary/arithmetics/nat.ma +++ b/helm/software/matita/nlibrary/arithmetics/nat.ma @@ -112,7 +112,7 @@ ntheorem plus_Sn_m1: ∀n,m:nat. S m + n = n + S m. #n; nelim n; nnormalize; //; nqed. *) -(* +(* deleterio ntheorem plus_n_SO : ∀n:nat. S n = n+S O. //; nqed. *) @@ -220,6 +220,9 @@ interpretation "natural 'less than'" 'lt x y = (lt x y). interpretation "natural 'not less than'" 'nless x y = (Not (lt x y)). +(* nlemma eq_lt: ∀n,m. (n < m) = (S n ≤ m). +//; nqed. *) + ndefinition ge: nat \to nat \to Prop \def \lambda n,m:nat.m \leq n. @@ -240,8 +243,9 @@ nqed. ntheorem trans_le: \forall n,m,p:nat. n \leq m \to m \leq p \to n \leq p \def transitive_le. *) -ntheorem transitive_lt: transitive nat lt. -#a; #b; #c; #ltab; #ltbc;nelim ltbc;/2/;nqed. + +naxiom transitive_lt: transitive nat lt. +(* #a; #b; #c; #ltab; #ltbc;nelim ltbc;/2/;nqed.*) (* theorem trans_lt: \forall n,m,p:nat. lt n m \to lt m p \to lt n p @@ -259,13 +263,18 @@ ntheorem le_n_Sn : ∀n:nat. n ≤ S n. ntheorem le_pred_n : ∀n:nat. pred n ≤ n. #n; nelim n; //; nqed. +(* XXX global problem *) +nlemma my_trans_le : ∀x,y,z:nat.x ≤ y → y ≤ z → x ≤ z. +napply transitive_le. +nqed. + ntheorem monotonic_pred: monotonic ? le pred. -#n; #m; #lenm; nelim lenm; //; /2/; nqed. +#n; #m; #lenm; nelim lenm; /2/; nqed. ntheorem le_S_S_to_le: ∀n,m:nat. S n ≤ S m → n ≤ m. -/2/; nqed. +(* XXX *) nletin hint ≝ monotonic. /2/; nqed. -ntheorem lt_S_S_to_lt: ∀n,m. S n < S m \to n < m. +ntheorem lt_S_S_to_lt: ∀n,m. S n < S m → n < m. /2/; nqed. ntheorem lt_to_lt_S_S: ∀n,m. n < m → S n < S m. @@ -284,9 +293,11 @@ ntheorem not_le_to_not_le_S_S: ∀ n,m:nat. n ≰ m → S n ≰ S m. ntheorem not_le_S_S_to_not_le: ∀ n,m:nat. S n ≰ S m → n ≰ m. /3/; nqed. +naxiom decidable_le: ∀n,m. decidable (n≤m). +(* ntheorem decidable_le: ∀n,m. decidable (n≤m). napply nat_elim2; #n; /3/; -#m; #dec; ncases dec;/4/; nqed. +#m; #dec; ncases dec;/4/; nqed. *) ntheorem decidable_lt: ∀n,m. decidable (n < m). #n; #m; napply decidable_le ; nqed. @@ -549,7 +560,7 @@ ntheorem le_plus_l: \forall p,n,m:nat. n \le m \to n + p \le m + p ntheorem le_plus: ∀n1,n2,m1,m2:nat. n1 ≤ n2 \to m1 ≤ m2 → n1 + m1 ≤ n2 + m2. -#n1; #n2; #m1; #m2; #len; #lem; napply transitive_le; +#n1; #n2; #m1; #m2; #len; #lem; napply (transitive_le ? (n1+m2)); /2/; nqed. ntheorem le_plus_n :∀n,m:nat. m ≤ n + m. @@ -562,7 +573,7 @@ ntheorem eq_plus_to_le: ∀n,m,p:nat.n=m+p → m ≤ n. //; nqed. ntheorem le_plus_to_le: ∀a,n,m. a + n ≤ a + m → n ≤ m. -#a; nelim a; /3/; nqed. +#a; nelim a; nnormalize; /3/; nqed. ntheorem le_plus_to_le_r: ∀a,n,m. n + a ≤ m +a → n ≤ m. /2/; nqed. @@ -630,7 +641,7 @@ napply transitive_le; (* /2/ slow *) nqed. ntheorem lt_times_n: ∀n,m:nat. O < n → m ≤ n*m. -(* bello *) +#n; #m; #H; napplyS monotonic_le_times_l; /2/; nqed. ntheorem le_times_to_le: @@ -646,9 +657,9 @@ ntheorem le_times_to_le: ##] nqed. -ntheorem le_S_times_2: ∀n,m.O < m → n ≤ m → n < 2*m. +ntheorem le_S_times_2: ∀n,m.O < m → n ≤ m → S n ≤ 2*m. #n; #m; #posm; #lenm; (* interessante *) -nnormalize; napplyS (le_plus n); //; nqed. +napplyS (le_plus n); //; nqed. (* times & lt *) (* @@ -835,7 +846,7 @@ ntheorem minus_Sn_m: ∀m,n:nat. m ≤ n → S n -m = S (n-m). #n; #m; #lenm; nelim lenm; napplyS refl_eq. *) napply nat_elim2; ##[// - ##|#n; #abs; napply False_ind;/2/; + ##|#n; #abs; napply False_ind; /2/. ##|#n; #m; #Hind; #c; napplyS Hind; /2/; ##] nqed. @@ -854,7 +865,7 @@ ntheorem plus_minus: ∀m,n,p:nat. m ≤ n → (n-m)+p = (n+p)-m. napply nat_elim2; ##[// - ##|#n; #p; #abs; napply False_ind;/2/; + ##|#n; #p; #abs; napply False_ind; /2/; ##|nnormalize;/3/; ##] nqed. @@ -1026,9 +1037,9 @@ ntheorem eqb_elim : ∀ n,m:nat.∀ P:bool → Prop. (n=m → (P true)) → (n ≠ m → (P false)) → (P (eqb n m)). napply nat_elim2; ##[#n; ncases n; nnormalize; /3/; - ##|nnormalize; /3/; - ##|nnormalize; /4/; - ##] + ##|nnormalize; /3/; + ##|nnormalize; /4/; + ##] nqed. ntheorem eqb_n_n: ∀n. eqb n n = true. @@ -1037,7 +1048,7 @@ nqed. ntheorem eqb_true_to_eq: ∀n,m:nat. eqb n m = true → n = m. #n; #m; napply (eqb_elim n m);//; -#_; #abs; napply False_ind;/2/; +#_; #abs; napply False_ind; /2/; nqed. ntheorem eqb_false_to_not_eq: ∀n,m:nat. eqb n m = false → n ≠ m. @@ -1067,7 +1078,7 @@ ntheorem leb_elim: ∀n,m:nat. ∀P:bool → Prop. (n ≤ m → P true) → (n ≰ m → P false) → P (leb n m). napply nat_elim2; nnormalize; ##[/2/ - ##|/3/; + ##| /3/; ##|#n; #m; #Hind; #P; #Pt; #Pf; napply Hind; ##[#lenm; napply Pt; napply le_S_S;//; ##|#nlenm; napply Pf; #leSS; /3/;