]> matita.cs.unibo.it Git - helm.git/blob - helm/software/matita/contribs/dama/dama/models/list_support.ma
...
[helm.git] / helm / software / matita / contribs / dama / dama / models / list_support.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 include "nat/minus.ma".
16 include "list/list.ma".
17
18 interpretation "list nth" 'nth = (nth _).
19 interpretation "list nth" 'nth_appl l d i = (nth _ l d i).
20 notation "\nth" with precedence 90 for @{'nth}.
21 notation < "\nth \nbsp term 90 l \nbsp term 90 d \nbsp term 90 i" 
22 with precedence 69 for @{'nth_appl $l $d $i}.
23
24 definition make_list ≝
25   λA:Type.λdef:nat→A.
26     let rec make_list (n:nat) on n ≝
27       match n with [ O ⇒ nil ? | S m ⇒ def m :: make_list m]
28     in make_list.
29
30 interpretation "\mk_list appl" 'mk_list_appl f n = (make_list _ f n).
31 interpretation "\mk_list" 'mk_list = (make_list _).   
32 notation "\mk_list" with precedence 90 for @{'mk_list}.
33 notation < "\mk_list \nbsp term 90 f \nbsp term 90 n" 
34 with precedence 69 for @{'mk_list_appl $f $n}.
35
36 notation "\len" with precedence 90 for @{'len}.
37 interpretation "len" 'len = (length _).
38 notation < "\len \nbsp term 90 l" with precedence 69 for @{'len_appl $l}.
39 interpretation "len appl" 'len_appl l = (length _ l).
40
41 lemma len_mk_list : ∀T:Type.∀f:nat→T.∀n.\len (\mk_list f n) = n.
42 intros; elim n; [reflexivity] simplify; rewrite > H; reflexivity;
43 qed.
44
45 record rel (rel_T : Type) : Type ≝ {
46   rel_op :2> rel_T → rel_T → Prop
47 }.
48
49 record trans_rel : Type ≝ {
50   o_T :> Type;
51   o_rel :> rel o_T;
52   o_tra : ∀x,y,z: o_T.o_rel x y → o_rel y z → o_rel x z 
53 }.
54
55 lemma trans: ∀r:trans_rel.∀x,y,z:r.r x y → r y z → r x z.
56 apply o_tra;
57 qed.
58
59 inductive sorted (lt : trans_rel): list (o_T lt) → Prop ≝ 
60 | sorted_nil : sorted lt []
61 | sorted_one : ∀x. sorted lt [x]
62 | sorted_cons : ∀x,y,tl. lt x y → sorted lt (y::tl) → sorted lt (x::y::tl). 
63
64 lemma nth_nil: ∀T,i.∀def:T. \nth [] def i = def.
65 intros; elim i; simplify; [reflexivity;] assumption; qed.
66
67 lemma len_append: ∀T:Type.∀l1,l2:list T. \len (l1@l2) = \len l1 + \len l2.
68 intros; elim l1; [reflexivity] simplify; rewrite < H; reflexivity;
69 qed.
70
71 coinductive non_empty_list (A:Type) : list A → Type := 
72 | show_head: ∀x,l. non_empty_list A (x::l).
73
74 lemma len_gt_non_empty : 
75   ∀T.∀l:list T.O < \len l → non_empty_list T l.
76 intros; cases l in H; [intros; cases (not_le_Sn_O ? H);] intros; constructor 1;
77 qed. 
78
79 lemma sorted_tail: ∀r,x,l.sorted r (x::l) → sorted r l.
80 intros; inversion H; intros; [destruct H1;|destruct H1;constructor 1;]
81 destruct H4; assumption;
82 qed.
83
84 lemma sorted_skip: ∀r,x,y,l. sorted r (x::y::l) → sorted r (x::l).
85 intros (r x y l H1); inversion H1; intros; [1,2: destruct H]
86 destruct H4; inversion H2; intros; [destruct H4]
87 [1: destruct H4; constructor 2;
88 |2: destruct H7; constructor 3; 
89     [ apply (o_tra ? ??? H H4); | apply (sorted_tail ??? H2);]]
90 qed.
91
92 lemma sorted_tail_bigger : ∀r,x,l,d.sorted r (x::l) → ∀i. i < \len l → r x (\nth l d i).
93 intros 4; elim l; [ cases (not_le_Sn_O i H1);]
94 cases i in H2;
95 [2: intros; apply (H ? n);[apply (sorted_skip ???? H1)|apply le_S_S_to_le; apply H2]
96 |1: intros; inversion H1; intros; [1,2: destruct H3]
97     destruct H6; simplify; assumption;]
98 qed. 
99
100 (* move in nat/ *)
101 lemma lt_n_plus_n_Sm : ∀n,m:nat.n < n + S m.
102 intros; rewrite > sym_plus; apply (le_S_S n (m+n)); alias id "le_plus_n" = "cic:/matita/nat/le_arith/le_plus_n.con".
103 apply (le_plus_n m n); qed.
104
105 lemma nth_append_lt_len:
106   ∀T:Type.∀l1,l2:list T.∀def.∀i.i < \len l1 → \nth (l1@l2) def i = \nth l1 def i.
107 intros 4; elim l1; [cases (not_le_Sn_O ? H)] cases i in H H1; simplify; intros;
108 [reflexivity| rewrite < H;[reflexivity] apply le_S_S_to_le; apply H1]
109 qed. 
110
111 lemma nth_append_ge_len:
112   ∀T:Type.∀l1,l2:list T.∀def.∀i.
113     \len l1 ≤ i → \nth (l1@l2) def i = \nth l2 def (i - \len l1).
114 intros 4; elim l1; [ rewrite < minus_n_O; reflexivity]
115 cases i in H1; simplify; intros; [cases (not_le_Sn_O ? H1)]
116 apply H; apply le_S_S_to_le; apply H1;
117 qed. 
118
119 lemma nth_len:
120   ∀T:Type.∀l1,l2:list T.∀def,x.
121     \nth (l1@x::l2) def (\len l1) = x.
122 intros 2; elim l1;[reflexivity] simplify; apply H; qed.
123
124 lemma sorted_head_smaller:
125   ∀r,l,p,d. sorted r (p::l) → ∀i.i < \len l → r p (\nth l d i).
126 intros 2 (r l); elim l; [cases (not_le_Sn_O ? H1)] cases i in H2; simplify; intros;
127 [1: inversion H1; [1,2: simplify; intros; destruct H3] intros; destruct H6; assumption; 
128 |2: apply (H p ?? n ?); [apply (sorted_skip ???? H1)] apply le_S_S_to_le; apply H2]
129 qed.
130
131 alias symbol "lt" = "natural 'less than'".
132 lemma sorted_pivot:
133   ∀r,l1,l2,p,d. sorted r (l1@p::l2) → 
134     (∀i. i < \len l1 → r (\nth l1 d i) p) ∧
135     (∀i. i < \len l2 → r p (\nth l2 d i)).
136 intros 2 (r l); elim l; 
137 [1: split; [intros; cases (not_le_Sn_O ? H1);] intros;
138     apply sorted_head_smaller; assumption;
139 |2: simplify in H1; cases (H ?? d (sorted_tail ??? H1));
140     lapply depth = 0 (sorted_head_smaller ??? d H1) as Hs;
141     split; simplify; intros;
142     [1: cases i in H4; simplify; intros; 
143         [1: lapply depth = 0 (Hs (\len l1)) as HS; 
144             rewrite > nth_len in HS; apply HS;
145             rewrite > len_append; simplify; apply lt_n_plus_n_Sm;
146         |2: apply (H2 n); apply le_S_S_to_le; apply H4]
147     |2: apply H3; assumption]]
148 qed.
149
150 coinductive cases_bool (p:bool) : bool → CProp ≝
151 | case_true : p = true → cases_bool p true
152 | cases_false : p = false → cases_bool p false.
153
154 lemma case_b : ∀A:Type.∀f:A → bool. ∀x.cases_bool (f x) (f x).
155 intros; cases (f x);[left;|right] reflexivity;
156 qed. 
157
158 coinductive break_spec (T : Type) (n : nat) (l : list T) : list T → CProp ≝
159 | break_to: ∀l1,x,l2. \len l1 = n → l = l1 @ [x] @ l2 → break_spec T n l l.     
160
161 lemma list_break: ∀T,n,l. n < \len l → break_spec T n l l.
162 intros 2; elim n;
163 [1: elim l in H; [cases (not_le_Sn_O ? H)]
164     apply (break_to ?? ? [] a l1); reflexivity;
165 |2: cases (H l); [2: apply lt_S_to_lt; assumption;] cases l2 in H3; intros;
166     [1: rewrite < H2 in H1; rewrite > H3 in H1; rewrite > append_nil in H1;
167         rewrite > len_append in H1; rewrite > plus_n_SO in H1;
168         cases (not_le_Sn_n ? H1);
169     |2: apply (break_to ?? ? (l1@[x]) t l3); 
170         [2: simplify; rewrite > associative_append; assumption;
171         |1: rewrite < H2; rewrite > len_append; rewrite > plus_n_SO; reflexivity]]]
172 qed.
173
174 include "logic/cprop_connectives.ma".
175
176 definition eject_N ≝
177   λP.λp:∃x:nat.P x.match p with [ex_introT p _ ⇒ p].
178 coercion eject_N.
179 definition inject_N ≝ λP.λp:nat.λh:P p. ex_introT ? P p h.
180 coercion inject_N with 0 1 nocomposites.
181
182 coinductive find_spec (T:Type) (P:T→bool) (l:list T) (d:T) (res : nat) : nat → CProp ≝
183 | found: 
184     ∀i. i < \len l → P (\nth l d i) = true → res = i →  
185     (∀j. j < i → P (\nth l d j) = false) → find_spec T P l d res i  
186 | not_found: ∀i. i = \len l → res = i →
187     (∀j.j < \len l → P (\nth l d j) = false) → find_spec T P l d res i.
188
189 lemma find_lemma : ∀T.∀P:T→bool.∀l:list T.∀d.∃i.find_spec ? P l d i i.
190 intros;
191 letin find ≝ (
192   let rec aux (acc: nat) (l : list T) on l : nat ≝
193     match l with
194     [ nil ⇒ acc
195     | cons x tl ⇒
196         match P x with
197         [ false ⇒ aux (S acc) tl   
198         | true ⇒ acc]]
199   in aux :
200   ∀acc,l1.∃p:nat.
201     ∀story. story @ l1 = l → acc = \len story →
202     find_spec ? P story d acc acc → 
203     find_spec ? P (story @ l1) d p p);
204 [4: clearbody find; cases (find 0 l);
205     lapply (H [] (refl_eq ??) (refl_eq ??)) as K;
206     [2: apply (not_found ?? [] d); intros; try reflexivity; cases (not_le_Sn_O ? H1);
207     |1: cases K; clear K;
208         [2: exists[apply (\len l)]
209             apply not_found; try reflexivity; apply H3;
210         |1: exists[apply i] apply found;  try reflexivity; assumption;]]
211 |1: intros; cases (aux (S n) l2); simplify; clear aux;
212     lapply depth = 0 (H5 (story@[t])) as K; clear H5;
213     change with (find_spec ? P (story @ ([t] @ l2)) d w w);
214     rewrite < associative_append; apply K; clear K;
215     [1: rewrite > associative_append; apply H2;
216     |2: rewrite > H3; rewrite > len_append; rewrite > sym_plus; reflexivity;
217     |3: cases H4; clear H4; destruct H7;
218         [2: rewrite > H5; rewrite > (?:S (\len story) = \len (story @ [t])); [2:
219               rewrite > len_append; rewrite > sym_plus; reflexivity;]
220             apply not_found; try reflexivity; intros; cases (cmp_nat (S j) (\len story));
221             [1: rewrite > (nth_append_lt_len ????? H8); apply H7; apply H8;
222             |2: rewrite > (nth_append_ge_len ????? (le_S_S_to_le ?? H8));
223                 rewrite > (?: j - \len story = 0);[assumption]
224                 rewrite > (?:j = \len story);[rewrite > minus_n_n; reflexivity]
225                 apply le_to_le_to_eq; [2: apply le_S_S_to_le; assumption;] 
226                 rewrite > len_append in H4;rewrite > sym_plus in H4; 
227                 apply le_S_S_to_le; apply H4;]
228         |1: rewrite < H3 in H5; cases (not_le_Sn_n ? H5);]]
229 |2: intros; cases H4; clear H4; 
230     [1: destruct H7; rewrite > H3 in H5; cases (not_le_Sn_n ? H5); 
231     |2: apply found; try reflexivity;
232         [1: rewrite > len_append; simplify; rewrite > H5; apply lt_n_plus_n_Sm;
233         |2: rewrite > H5; rewrite > nth_append_ge_len; [2: apply le_n]
234             rewrite < minus_n_n; assumption;
235         |3: intros; rewrite > H5 in H4; rewrite > nth_append_lt_len; [2:assumption]
236             apply H7; assumption]]
237 |3: intros; rewrite > append_nil; assumption;]
238 qed.
239
240 lemma find : ∀T:Type.∀P:T→bool.∀l:list T.∀d:T.nat.
241 intros; cases (find_lemma ? f l t); apply w; qed.
242
243 lemma cases_find: ∀T,P,l,d. find_spec T P l d (find T P l d) (find T P l d).
244 intros; unfold find; cases (find_lemma T P l d); simplify; assumption; qed.