]> matita.cs.unibo.it Git - helm.git/blob - helm/software/matita/contribs/ng_assembly/universe/universe.ma
freescale porting, work in progress
[helm.git] / helm / software / matita / contribs / ng_assembly / universe / universe.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 (* ********************************************************************** *)
16 (*                          Progetto FreeScale                            *)
17 (*                                                                        *)
18 (*   Sviluppato da: Ing. Cosimo Oliboni, oliboni@cs.unibo.it              *)
19 (*   Ultima modifica: 05/08/2009                                          *)
20 (*                                                                        *)
21 (* ********************************************************************** *)
22
23 include "common/list.ma".
24 include "common/nat_lemmas.ma".
25 include "common/prod.ma".
26
27 nlet rec nmember_natList (elem:nat) (l:ne_list nat) on l ≝
28  match l with
29   [ ne_nil h ⇒ ⊖(eq_nat elem h)
30   | ne_cons h t ⇒ match eq_nat elem h with
31    [ true ⇒ false | false ⇒ nmember_natList elem t ]
32   ].
33
34 (* elem presente una ed una sola volta in l *)
35 nlet rec member_natList (elem:nat) (l:ne_list nat) on l ≝
36  match l with
37   [ ne_nil h ⇒ eq_nat elem h
38   | ne_cons h t ⇒ match eq_nat elem h with
39     [ true ⇒ nmember_natList elem t | false ⇒ member_natList elem t ]
40   ].
41
42 (* costruttore di un sottouniverso:
43    S_EL cioe' uno qualsiasi degli elementi del sottouniverso
44 *)
45 ninductive S_UN (l:ne_list nat) : Type ≝
46  S_EL : Πx:nat.((member_natList x l) = true) → S_UN l.
47
48 ndefinition getelem : ∀l.∀e:S_UN l.nat.
49  #l; #s; nelim s;
50  #u; #dim;
51  napply u.
52 nqed.
53
54 ndefinition eq_SUN ≝ λl.λx,y:S_UN l.eq_nat (getelem ? x) (getelem ? y).
55
56 ndefinition getdim : ∀l.∀e:S_UN l.member_natList (getelem ? e) l = true.
57  #l; #s; nelim s;
58  #u; #dim;
59  napply dim.
60 nqed.
61
62 nlemma SUN_destruct_1
63  : ∀l.∀e1,e2.∀dim1,dim2.S_EL l e1 dim1 = S_EL l e2 dim2 → e1 = e2.
64  #l; #e1; #e2; #dim1; #dim2; #H;
65  nchange with (match S_EL l e2 dim2 with [ S_EL a _ ⇒ e1 = a ]);
66  nrewrite < H;
67  nnormalize;
68  napply refl_eq.
69 nqed.
70
71 (* destruct universale *)
72 ndefinition SUN_destruct : ∀l.∀x,y:S_UN l.∀P:Prop.x = y → match eq_SUN l x y with [ true ⇒ P → P | false ⇒ P ].
73  #l; #x; nelim x;
74  #u1; #dim1;
75  #y; nelim y;
76  #u2; #dim2;
77  #P;
78  nchange with (? → (match eq_nat u1 u2 with [ true ⇒ P → P | false ⇒ P ]));
79  #H;
80  nrewrite > (SUN_destruct_1 l … H);
81  nrewrite > (eq_to_eqnat u2 u2 (refl_eq …));
82  nnormalize;
83  napply (λx.x).
84 nqed.
85
86 (* eq_to_eqxx universale *)
87 nlemma eq_to_eqSUN : ∀l.∀x,y:S_UN l.x = y → eq_SUN l x y = true.
88  #l; #x; nelim x;
89  #u1; #dim1;
90  #y; nelim y;
91  #u2; #dim2;
92  nchange with (? → eq_nat u1 u2 = true);
93  #H; napply (eq_to_eqnat u1 u2);
94  napply (SUN_destruct_1 l … H).
95 nqed.
96
97 (* neqxx_to_neq universale *)
98 nlemma neqSUN_to_neq : ∀l.∀x,y:S_UN l.eq_SUN l x y = false → x ≠ y.
99  #l; #n1; #n2; #H;
100  napply (not_to_not (n1 = n2) (eq_SUN l n1 n2 = true) …);
101  ##[ ##1: napply (eq_to_eqSUN l n1 n2)
102  ##| ##2: napply (eqfalse_to_neqtrue … H)
103  ##]
104 nqed.
105
106 (* eqxx_to_eq universale *)
107 (* serve l'assioma di equivalenza sulle dimostrazioni *)
108 nlemma eqSUN_to_eq : ∀l.∀x,y:S_UN l.eq_SUN l x y = true → x = y.
109  #l; #x; nelim x;
110  #u1; #dim1;
111  #y; nelim y;
112  #u2; #dim2;
113  nchange with ((eq_nat u1 u2 = true) → ?);
114  #H;
115  nrewrite > (eqnat_to_eq u1 u2 H) in dim1:(%) ⊢ %;
116  #dim1;
117  napply (peqv_ind ? dim1 (λ_.?) ? dim2 (peqv_ax ? dim1 dim2));
118  napply refl_eq.
119 nqed.
120
121 (* neq_to_neqxx universale *)
122 nlemma neq_to_neqSUN : ∀l.∀x,y:S_UN l.x ≠ y → eq_SUN l x y = false.
123  #l; #n1; #n2; #H;
124  napply (neqtrue_to_eqfalse (eq_SUN l n1 n2));
125  napply (not_to_not (eq_SUN l n1 n2 = true) (n1 = n2) ? H);
126  napply (eqSUN_to_eq l n1 n2).
127 nqed.
128
129 (* decidibilita' universale *)
130 nlemma decidable_SUN : ∀l.∀x,y:S_UN l.decidable (x = y).
131  #l; #x; #y; nnormalize;
132  napply (or2_elim (eq_SUN l x y = true) (eq_SUN l x y = false) ? (decidable_bexpr ?));
133  ##[ ##1: #H; napply (or2_intro1 (x = y) (x ≠ y) (eqSUN_to_eq l … H))
134  ##| ##2: #H; napply (or2_intro2 (x = y) (x ≠ y) (neqSUN_to_neq l … H))
135  ##]
136 nqed.
137
138 (* simmetria di uguaglianza universale *)
139 nlemma symmetric_eqSUN : ∀l.symmetricT (S_UN l) bool (eq_SUN l).
140  #l; #n1; #n2;
141  napply (or2_elim (n1 = n2) (n1 ≠ n2) ? (decidable_SUN l n1 n2));
142  ##[ ##1: #H; nrewrite > H; napply refl_eq
143  ##| ##2: #H; nrewrite > (neq_to_neqSUN l n1 n2 H);
144           napply (symmetric_eq ? (eq_SUN l n2 n1) false);
145           napply (neq_to_neqSUN l n2 n1 (symmetric_neq ? n1 n2 H))
146  ##]
147 nqed.
148
149 (* scheletro di funzione generica ad 1 argomento *)
150 nlet rec farg1_auxT (T:Type) (l:ne_list nat) on l ≝
151  match l with
152   [ ne_nil _ ⇒ T
153   | ne_cons _ t ⇒ ProdT T (farg1_auxT T t)
154   ].
155
156 nlemma farg1_auxDim : ∀h,t,x.eq_nat x h = false → member_natList x (h§§t) = true → member_natList x t = true.
157  #h; #t; #x; #H; #H1;
158  nnormalize in H1:(%);
159  nrewrite > H in H1:(%);
160  nnormalize;
161  napply (λx.x).
162 nqed.
163
164 nlet rec farg1 (T:Type) (l:ne_list nat) on l ≝
165  match l with
166   [ ne_nil h ⇒ λarg:farg1_auxT T «£h».λx:S_UN «£h».arg
167   | ne_cons h t ⇒ λarg:farg1_auxT T (h§§t).λx:S_UN (h§§t).
168    match eq_nat (getelem ? x) h
169     return λy.eq_nat (getelem ? x) h = y → ?
170    with
171     [ true ⇒ λp:(eq_nat (getelem ? x) h = true).fst … arg
172     | false ⇒ λp:(eq_nat (getelem ? x) h = false).
173      farg1 T t
174       (snd … arg)
175       (S_EL t (getelem ? x) (farg1_auxDim h t (getelem ? x) p (getdim ? x)))
176     ] (refl_eq ? (eq_nat (getelem ? x) h))
177   ].
178
179 (* scheletro di funzione generica a 2 argomenti *)
180 nlet rec farg2 (T:Type) (l,lfix:ne_list nat) on l ≝
181  match l with
182   [ ne_nil h ⇒ λarg:farg1_auxT (farg1_auxT T lfix) «£h».λx:S_UN «£h».farg1 T lfix arg
183   | ne_cons h t ⇒ λarg:farg1_auxT (farg1_auxT T lfix) (h§§t).λx:S_UN (h§§t).
184    match eq_nat (getelem ? x) h
185     return λy.eq_nat (getelem ? x) h = y → ?
186    with
187     [ true ⇒ λp:(eq_nat (getelem ? x) h = true).farg1 T lfix (fst … arg)
188     | false ⇒ λp:(eq_nat (getelem ? x) h = false).
189      farg2 T t lfix
190       (snd … arg)
191       (S_EL t (getelem ? x) (farg1_auxDim h t (getelem ? x) p (getdim ? x)))
192     ] (refl_eq ? (eq_nat (getelem ? x) h))
193   ].
194
195 (* esempio0: universo ottale *)
196 ndefinition oct0 ≝ O.
197 ndefinition oct1 ≝ S O.
198 ndefinition oct2 ≝ S (S O).
199 ndefinition oct3 ≝ S (S (S O)).
200 ndefinition oct4 ≝ S (S (S (S O))).
201 ndefinition oct5 ≝ S (S (S (S (S O)))).
202 ndefinition oct6 ≝ S (S (S (S (S (S O))))).
203 ndefinition oct7 ≝ S (S (S (S (S (S (S O)))))).
204
205 ndefinition oct_UN ≝ « oct0 ; oct1 ; oct2 ; oct3 ; oct4 ; oct5 ; oct6 £ oct7 ».
206
207 ndefinition uoct0 ≝ S_EL oct_UN oct0 (refl_eq …).
208 ndefinition uoct1 ≝ S_EL oct_UN oct1 (refl_eq …).
209 ndefinition uoct2 ≝ S_EL oct_UN oct2 (refl_eq …).
210 ndefinition uoct3 ≝ S_EL oct_UN oct3 (refl_eq …).
211 ndefinition uoct4 ≝ S_EL oct_UN oct4 (refl_eq …).
212 ndefinition uoct5 ≝ S_EL oct_UN oct5 (refl_eq …).
213 ndefinition uoct6 ≝ S_EL oct_UN oct6 (refl_eq …).
214 ndefinition uoct7 ≝ S_EL oct_UN oct7 (refl_eq …).
215
216 (* esempio1: NOT ottale *)
217 ndefinition octNOT ≝
218  farg1 (S_UN oct_UN) oct_UN
219   (pair … uoct7 (pair … uoct6 (pair … uoct5 (pair … uoct4 (pair … uoct3 (pair … uoct2 (pair … uoct1 uoct0))))))). 
220
221 (* esempio2: AND ottale *)
222 ndefinition octAND0 ≝ pair … uoct0 (pair … uoct0 (pair … uoct0 (pair … uoct0 (pair … uoct0 (pair … uoct0 (pair … uoct0 uoct0)))))).
223 ndefinition octAND1 ≝ pair … uoct0 (pair … uoct1 (pair … uoct0 (pair … uoct1 (pair … uoct0 (pair … uoct1 (pair … uoct0 uoct1)))))).
224 ndefinition octAND2 ≝ pair … uoct0 (pair … uoct0 (pair … uoct2 (pair … uoct2 (pair … uoct0 (pair … uoct0 (pair … uoct2 uoct2)))))).
225 ndefinition octAND3 ≝ pair … uoct0 (pair … uoct1 (pair … uoct2 (pair … uoct3 (pair … uoct0 (pair … uoct1 (pair … uoct2 uoct3)))))).
226 ndefinition octAND4 ≝ pair … uoct0 (pair … uoct0 (pair … uoct0 (pair … uoct0 (pair … uoct4 (pair … uoct4 (pair … uoct4 uoct4)))))).
227 ndefinition octAND5 ≝ pair … uoct0 (pair … uoct1 (pair … uoct0 (pair … uoct1 (pair … uoct4 (pair … uoct5 (pair … uoct4 uoct5)))))).
228 ndefinition octAND6 ≝ pair … uoct0 (pair … uoct0 (pair … uoct2 (pair … uoct2 (pair … uoct4 (pair … uoct4 (pair … uoct6 uoct6)))))).
229 ndefinition octAND7 ≝ pair … uoct0 (pair … uoct1 (pair … uoct2 (pair … uoct3 (pair … uoct4 (pair … uoct5 (pair … uoct6 uoct7)))))).
230
231 ndefinition octAND ≝
232  farg2 (S_UN oct_UN) oct_UN oct_UN
233   (pair … octAND0 (pair … octAND1 (pair … octAND2 (pair … octAND3 (pair … octAND4 (pair … octAND5 (pair … octAND6 octAND7))))))).
234
235 (* ora e' possibile fare
236    octNOT uoctX
237    octAND uoctX uoctY
238 *)