From 4f9165b052ea5e6141da50c7a8294515fe2743de Mon Sep 17 00:00:00 2001 From: Ferruccio Guidi Date: Sat, 5 May 2018 12:20:33 +0200 Subject: [PATCH] update in basic_2 + list length is now in a separate file --- .../contribs/lambdadelta/ground_2/lib/list.ma | 39 +------------- .../lambdadelta/ground_2/lib/list_length.ma | 53 +++++++++++++++++++ .../lambdadelta/ground_2/web/ground_2_src.tbl | 2 +- 3 files changed, 56 insertions(+), 38 deletions(-) create mode 100644 matita/matita/contribs/lambdadelta/ground_2/lib/list_length.ma diff --git a/matita/matita/contribs/lambdadelta/ground_2/lib/list.ma b/matita/matita/contribs/lambdadelta/ground_2/lib/list.ma index 0ea6ae285..07e13ea8f 100644 --- a/matita/matita/contribs/lambdadelta/ground_2/lib/list.ma +++ b/matita/matita/contribs/lambdadelta/ground_2/lib/list.ma @@ -14,7 +14,7 @@ include "ground_2/notation/constructors/circledE_1.ma". include "ground_2/notation/constructors/oplusright_3.ma". -include "ground_2/lib/arith.ma". +include "ground_2/lib/relations.ma". (* LISTS ********************************************************************) @@ -26,43 +26,8 @@ interpretation "nil (list)" 'CircledE A = (nil A). interpretation "cons (list)" 'OPlusRight A hd tl = (cons A hd tl). -rec definition length A (l:list A) on l ≝ match l with -[ nil ⇒ 0 -| cons _ l ⇒ ↑(length A l) -]. - -interpretation "length (list)" - 'card l = (length ? l). - rec definition all A (R:predicate A) (l:list A) on l ≝ match l with [ nil ⇒ ⊤ - | cons hd tl ⇒ R hd ∧ all A R tl + | cons hd tl ⇒ ∧∧ R hd & all A R tl ]. - -(* Basic properties on length ***********************************************) - -lemma length_nil (A:Type[0]): |nil A| = 0. -// qed. - -lemma length_cons (A:Type[0]) (l:list A) (a:A): |a⨮l| = ↑|l|. -// qed. - -(* Basic inversion lemmas on length *****************************************) - -lemma length_inv_zero_dx (A:Type[0]) (l:list A): |l| = 0 → l = Ⓔ. -#A * // #a #l >length_cons #H destruct -qed-. - -lemma length_inv_zero_sn (A:Type[0]) (l:list A): 0 = |l| → l = Ⓔ. -/2 width=1 by length_inv_zero_dx/ qed-. - -lemma length_inv_succ_dx (A:Type[0]) (l:list A) (x): |l| = ↑x → - ∃∃tl,a. x = |tl| & l = a ⨮ tl. -#A * /2 width=4 by ex2_2_intro/ ->length_nil #x #H destruct -qed-. - -lemma length_inv_succ_sn (A:Type[0]) (l:list A) (x): ↑x = |l| → - ∃∃tl,a. x = |tl| & l = a ⨮ tl. -/2 width=1 by length_inv_succ_dx/ qed. diff --git a/matita/matita/contribs/lambdadelta/ground_2/lib/list_length.ma b/matita/matita/contribs/lambdadelta/ground_2/lib/list_length.ma new file mode 100644 index 000000000..64aaac35a --- /dev/null +++ b/matita/matita/contribs/lambdadelta/ground_2/lib/list_length.ma @@ -0,0 +1,53 @@ +(**************************************************************************) +(* ___ *) +(* ||M|| *) +(* ||A|| A project by Andrea Asperti *) +(* ||T|| *) +(* ||I|| Developers: *) +(* ||T|| The HELM team. *) +(* ||A|| http://helm.cs.unibo.it *) +(* \ / *) +(* \ / This file is distributed under the terms of the *) +(* v GNU General Public License Version 2 *) +(* *) +(**************************************************************************) + +include "ground_2/lib/arith.ma". +include "ground_2/lib/list.ma". + +(* LENGTH OF A LIST *********************************************************) + +rec definition length A (l:list A) on l ≝ match l with +[ nil ⇒ 0 +| cons _ l ⇒ ↑(length A l) +]. + +interpretation "length (list)" + 'card l = (length ? l). + +(* Basic properties *********************************************************) + +lemma length_nil (A:Type[0]): |nil A| = 0. +// qed. + +lemma length_cons (A:Type[0]) (l:list A) (a:A): |a⨮l| = ↑|l|. +// qed. + +(* Basic inversion lemmas ***************************************************) + +lemma length_inv_zero_dx (A:Type[0]) (l:list A): |l| = 0 → l = Ⓔ. +#A * // #a #l >length_cons #H destruct +qed-. + +lemma length_inv_zero_sn (A:Type[0]) (l:list A): 0 = |l| → l = Ⓔ. +/2 width=1 by length_inv_zero_dx/ qed-. + +lemma length_inv_succ_dx (A:Type[0]) (l:list A) (x): |l| = ↑x → + ∃∃tl,a. x = |tl| & l = a ⨮ tl. +#A * /2 width=4 by ex2_2_intro/ +>length_nil #x #H destruct +qed-. + +lemma length_inv_succ_sn (A:Type[0]) (l:list A) (x): ↑x = |l| → + ∃∃tl,a. x = |tl| & l = a ⨮ tl. +/2 width=1 by length_inv_succ_dx/ qed. diff --git a/matita/matita/contribs/lambdadelta/ground_2/web/ground_2_src.tbl b/matita/matita/contribs/lambdadelta/ground_2/web/ground_2_src.tbl index 4fc221673..5d0f40bd8 100644 --- a/matita/matita/contribs/lambdadelta/ground_2/web/ground_2_src.tbl +++ b/matita/matita/contribs/lambdadelta/ground_2/web/ground_2_src.tbl @@ -53,7 +53,7 @@ table { [ { "extensions to the library" * } { [ { "" * } { [ "stream ( ? ⨮{?} ? )" "stream_eq ( ? ≗{?} ? )" "stream_hdtl ( ⫰{?}? )" "stream_tls ( ⫰*{?}[?]? )" * ] - [ "list ( Ⓔ{?} ) ( ? ⨮{?} ? ) ( |?| )" * ] + [ "list ( Ⓔ{?} ) ( ? ⨮{?} ? )" "list_length ( |?| )" * ] [ "bool ( Ⓕ ) ( Ⓣ )" "arith ( ?^? ) ( ↑? ) ( ↓? ) ( ? ∨ ? ) ( ? ∧ ? )" * ] [ "logic ( ⊥ ) ( ⊤ )" "relations ( ? ⊆ ? )" "functions" "exteq ( ? ≐{?,?} ? )" "star" "ltc" * ] } -- 2.39.2