]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/library/list/list.ma
test branch
[helm.git] / helm / matita / library / list / list.ma
1 (**************************************************************************)
2 (*       ___                                                              *)
3 (*      ||M||                                                             *)
4 (*      ||A||       A project by Andrea Asperti                           *)
5 (*      ||T||                                                             *)
6 (*      ||I||       Developers:                                           *)
7 (*      ||T||         The HELM team.                                      *)
8 (*      ||A||         http://helm.cs.unibo.it                             *)
9 (*      \   /                                                             *)
10 (*       \ /        This file is distributed under the terms of the       *)
11 (*        v         GNU General Public License Version 2                  *)
12 (*                                                                        *)
13 (**************************************************************************)
14
15 set "baseuri" "cic:/matita/list/".
16 include "logic/equality.ma".
17 include "higher_order_defs/functions.ma".
18
19 inductive list (A:Set) : Set :=
20   | nil: list A
21   | cons: A -> list A -> list A.
22
23 notation "hvbox(hd break :: tl)"
24   right associative with precedence 46
25   for @{'cons $hd $tl}.
26
27 notation "[ list0 x sep ; ]"
28   non associative with precedence 90
29   for ${fold right @'nil rec acc @{'cons $x $acc}}.
30
31 notation "hvbox(l1 break @ l2)"
32   right associative with precedence 47
33   for @{'append $l1 $l2 }.
34
35 interpretation "nil" 'nil = (cic:/matita/list/list.ind#xpointer(1/1/1) _).
36 interpretation "cons" 'cons hd tl =
37   (cic:/matita/list/list.ind#xpointer(1/1/2) _ hd tl).
38
39 (* theorem test_notation: [O; S O; S (S O)] = O :: S O :: S (S O) :: []. *)
40
41 theorem nil_cons:
42   \forall A:Set.\forall l:list A.\forall a:A.
43     a::l <> [].
44   intros;
45   unfold Not;
46   intros;
47   discriminate H.
48 qed.
49
50 let rec id_list A (l: list A) on l :=
51   match l with
52   [ nil => []
53   | (cons hd tl) => hd :: id_list A tl ].
54
55 let rec append A (l1: list A) l2 on l1 :=
56   match l1 with
57   [ nil => l2
58   | (cons hd tl) => hd :: append A tl l2 ].
59
60 definition tail := \lambda A:Set. \lambda l: list A.
61   match l with
62   [ nil => []
63   | (cons hd tl) => tl].
64
65 interpretation "append" 'append l1 l2 = (cic:/matita/list/append.con _ l1 l2).
66
67 theorem append_nil: \forall A:Set.\forall l:list A.l @ [] = l.
68   intros;
69   elim l;
70   [ reflexivity;
71   | simplify;
72     rewrite > H;
73     reflexivity;
74   ]
75 qed.
76
77 theorem associative_append: \forall A:Set.associative (list A) (append A).
78   intros; unfold; intros;
79   elim x;
80   [ simplify;
81     reflexivity;
82   | simplify;
83     rewrite > H;
84     reflexivity;
85   ]
86 qed.
87
88 theorem cons_append_commute:
89   \forall A:Set.\forall l1,l2:list A.\forall a:A.
90     a :: (l1 @ l2) = (a :: l1) @ l2.
91   intros;
92   reflexivity;
93 qed.
94
95 (*
96 theorem nil_append_nil_both:
97   \forall A:Set.\forall l1,l2:list A.
98     l1 @ l2 = [] \to l1 = [] \land l2 = [].
99 *)
100
101 (*
102 include "nat/nat.ma".
103
104 theorem test_notation: [O; S O; S (S O)] = O :: S O :: S (S O) :: []. 
105 reflexivity.
106 qed.
107
108 theorem test_append: [O;O;O;O;O;O] = [O;O;O] @ [O;O] @ [O].
109 simplify.
110 reflexivity.
111 qed.
112 *)