]> matita.cs.unibo.it Git - helm.git/blob - helm/software/matita/contribs/CoRN-Procedural/algebra/Basics.mma
Procedural: explicit flavour specification for constants is now working
[helm.git] / helm / software / matita / contribs / CoRN-Procedural / algebra / Basics.mma
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 (* This file was automatically generated: do not edit *********************)
16
17 include "CoRN.ma".
18
19 (* $Id: Basics.v,v 1.7 2004/04/09 15:58:31 lcf Exp $ *)
20
21 (*#* printing alpha %\ensuremath{\alpha}% #α# *)
22
23 (*#* printing beta %\ensuremath{\beta}% #β# *)
24
25 (*#* printing delta %\ensuremath{\delta}% #δ# *)
26
27 (*#* printing eps %\ensuremath{\varepsilon}% #ε# *)
28
29 (*#* printing phi %\ensuremath{\phi}% #φ# *)
30
31 (*#* printing eta %\ensuremath{\eta}% #η# *)
32
33 (*#* printing omega %\ensuremath{\omega}% #ω# *)
34
35 (*#* printing nat %\ensuremath{\mathbb N}% #<b>N</b># *)
36
37 (*#* printing Z %\ensuremath{\mathbb Z}% #<b>Z</b># *)
38
39 include "algebra/ListType.ma".
40
41 (*#* *Basics
42 This is random stuff that should be in the Coq basic library.
43 *)
44
45 inline procedural "cic:/CoRN/algebra/Basics/lt_le_dec.con" as lemma.
46
47 inline procedural "cic:/CoRN/algebra/Basics/lt_z_two.con" as lemma.
48
49 inline procedural "cic:/CoRN/algebra/Basics/le_pred.con" as lemma.
50
51 inline procedural "cic:/CoRN/algebra/Basics/lt_mult_right.con" as lemma.
52
53 inline procedural "cic:/CoRN/algebra/Basics/le_mult_right.con" as lemma.
54
55 (*#* The power function does not exist in the standard library *)
56
57 inline procedural "cic:/CoRN/algebra/Basics/power.con" as definition.
58
59 (*#* Factorial function. Does not exist in Arith.
60 Needed for special operations on polynomials. *)
61
62 inline procedural "cic:/CoRN/algebra/Basics/fac.con" as definition.
63
64 inline procedural "cic:/CoRN/algebra/Basics/nat_fac_gtzero.con" as lemma.
65
66 (* needed for computational behavior of "Inversion" tactic *)
67
68 (* UNEXPORTED
69 Transparent sym_eq.
70 *)
71
72 (* UNEXPORTED
73 Transparent f_equal.
74 *)
75
76 (* NOTATION
77 Notation Pair := (pair (B:=_)).
78 *)
79
80 (* NOTATION
81 Notation Proj1 := (proj1 (B:=_)).
82 *)
83
84 (* NOTATION
85 Notation Proj2 := (proj2 (B:=_)).
86 *)
87
88 (* Following only needed in finite, but tha's now obsolete
89
90 Lemma deMorgan_or_and: (A,B,X:Prop)((A\/B)->X)->(A->X)/\(B->X).
91 Tauto.
92 Qed.
93
94 Lemma deMorgan_and_or: (A,B,X:Prop)(A->X)/\(B->X)->(A\/B->X).
95 Tauto.
96 Qed.
97
98 Lemma deMorgan_ex_all:
99   (A:Set)(P:A->Prop)(X:Prop)((Ex P)->X)->(a:A)(P a)->X.
100 Intros. Apply H; Exists a; Assumption.
101 Qed.
102
103 Lemma deMorgan_all_ex:
104   (A:Set)(P:A->Prop)(X:Prop)((a:A)(P a)->X)->(Ex P)->X.
105 Intros. Elim H0; Assumption.
106 Qed.
107
108 Implicit Arguments Off.
109
110 Three lemmas for proving properties about definitions made with case
111 distinction to a sumbool, i.e. [{A} + {B}].
112
113 Lemma sumbool_rec_or : (A,B:Prop)(S:Set)(l,r:S)(s:{A}+{B})
114                   (sumbool_rec A B [_:{A}+{B}]S [x:A]l [x:B]r s) = l \/
115                   (sumbool_rec A B [_:{A}+{B}]S [x:A]l [x:B]r s) = r.
116 Intros. Elim s.
117 Intros. Left. Reflexivity.
118 Intros. Right. Reflexivity.
119 Qed.
120 *)
121
122 inline procedural "cic:/CoRN/algebra/Basics/not_r_sumbool_rec.con" as lemma.
123
124 inline procedural "cic:/CoRN/algebra/Basics/not_l_sumbool_rec.con" as lemma.
125
126 (* begin hide *)
127
128 (* UNEXPORTED
129 Set Implicit Arguments.
130 *)
131
132 (* UNEXPORTED
133 Unset Strict Implicit.
134 *)
135
136 (* end hide *)
137
138 (*#* **Some results about [Z]
139
140 We consider the injection [inject_nat] from [nat] to [Z] as a
141 coercion. *)
142
143 (* begin hide *)
144
145 (* COERCION
146 cic:/Coq/ZArith/BinInt/Z_of_nat.con
147 *)
148
149 (* end hide *)
150
151 inline procedural "cic:/CoRN/algebra/Basics/POS_anti_convert.con" as lemma.
152
153 inline procedural "cic:/CoRN/algebra/Basics/NEG_anti_convert.con" as lemma.
154
155 inline procedural "cic:/CoRN/algebra/Basics/lt_O_positive_to_nat.con" as lemma.
156
157 inline procedural "cic:/CoRN/algebra/Basics/anti_convert_pred_convert.con" as lemma.
158
159 inline procedural "cic:/CoRN/algebra/Basics/p_is_some_anti_convert.con" as lemma.
160
161 inline procedural "cic:/CoRN/algebra/Basics/convert_is_POS.con" as lemma.
162
163 inline procedural "cic:/CoRN/algebra/Basics/min_convert_is_NEG.con" as lemma.
164
165 inline procedural "cic:/CoRN/algebra/Basics/inject_nat_convert.con" as lemma.
166
167 inline procedural "cic:/CoRN/algebra/Basics/Z_exh.con" as lemma.
168
169 inline procedural "cic:/CoRN/algebra/Basics/nats_Z_ind.con" as lemma.
170
171 inline procedural "cic:/CoRN/algebra/Basics/pred_succ_Z_ind.con" as lemma.
172
173 inline procedural "cic:/CoRN/algebra/Basics/Zmult_minus_distr_r.con" as lemma.
174
175 inline procedural "cic:/CoRN/algebra/Basics/Zodd_Zeven_min1.con" as lemma.
176
177 (* begin hide *)
178
179 (* UNEXPORTED
180 Set Implicit Arguments.
181 *)
182
183 (* UNEXPORTED
184 Unset Strict Implicit.
185 *)
186
187 (* end hide *)
188
189 inline procedural "cic:/CoRN/algebra/Basics/caseZ_diff.con" as definition.
190
191 (* begin hide *)
192
193 (* UNEXPORTED
194 Set Strict Implicit.
195 *)
196
197 (* UNEXPORTED
198 Unset Implicit Arguments.
199 *)
200
201 (* end hide *)
202
203 inline procedural "cic:/CoRN/algebra/Basics/caseZ_diff_O.con" as lemma.
204
205 inline procedural "cic:/CoRN/algebra/Basics/caseZ_diff_Pos.con" as lemma.
206
207 inline procedural "cic:/CoRN/algebra/Basics/caseZ_diff_Neg.con" as lemma.
208
209 inline procedural "cic:/CoRN/algebra/Basics/proper_caseZ_diff.con" as lemma.
210
211 inline procedural "cic:/CoRN/algebra/Basics/diff_Z_ind.con" as lemma.
212
213 inline procedural "cic:/CoRN/algebra/Basics/Zlt_reg_mult_l.con" as lemma.
214
215 inline procedural "cic:/CoRN/algebra/Basics/Zlt_opp.con" as lemma.
216
217 inline procedural "cic:/CoRN/algebra/Basics/Zlt_conv_mult_l.con" as lemma.
218
219 inline procedural "cic:/CoRN/algebra/Basics/Zgt_not_eq.con" as lemma.
220
221 inline procedural "cic:/CoRN/algebra/Basics/Zmult_absorb.con" as lemma.
222
223 (* UNEXPORTED
224 Section Well_foundedT
225 *)
226
227 alias id "A" = "cic:/CoRN/algebra/Basics/Well_foundedT/A.var".
228
229 alias id "R" = "cic:/CoRN/algebra/Basics/Well_foundedT/R.var".
230
231 (*#* The accessibility predicate is defined to be non-informative *)
232
233 inline procedural "cic:/CoRN/algebra/Basics/Acc.ind".
234
235 (* UNEXPORTED
236 End Well_foundedT
237 *)
238
239 (* UNEXPORTED
240 Section AccT
241 *)
242
243 alias id "A" = "cic:/CoRN/algebra/Basics/AccT/A.var".
244
245 inline procedural "cic:/CoRN/algebra/Basics/well_founded.con" as definition.
246
247 (* UNEXPORTED
248 End AccT
249 *)
250
251 (* UNEXPORTED
252 Implicit Arguments Acc [A].
253 *)
254
255 (* UNEXPORTED
256 Section IndT
257 *)
258
259 alias id "A" = "cic:/CoRN/algebra/Basics/IndT/A.var".
260
261 alias id "R" = "cic:/CoRN/algebra/Basics/IndT/R.var".
262
263 (* UNEXPORTED
264 Section AccIter
265 *)
266
267 alias id "P" = "cic:/CoRN/algebra/Basics/IndT/AccIter/P.var".
268
269 alias id "F" = "cic:/CoRN/algebra/Basics/IndT/AccIter/F.var".
270
271 inline procedural "cic:/CoRN/algebra/Basics/Acc_inv.con" as lemma.
272
273 inline procedural "cic:/CoRN/algebra/Basics/Acc_iter.con" as definition.
274
275 (* UNEXPORTED
276 End AccIter
277 *)
278
279 alias id "Rwf" = "cic:/CoRN/algebra/Basics/IndT/Rwf.var".
280
281 inline procedural "cic:/CoRN/algebra/Basics/well_founded_induction_type.con" as theorem.
282
283 (* UNEXPORTED
284 End IndT
285 *)
286
287 (* UNEXPORTED
288 Section InductionT
289 *)
290
291 alias id "A" = "cic:/CoRN/algebra/Basics/InductionT/A.var".
292
293 alias id "f" = "cic:/CoRN/algebra/Basics/InductionT/f.var".
294
295 inline procedural "cic:/CoRN/algebra/Basics/ltof.con" as definition.
296
297 inline procedural "cic:/CoRN/algebra/Basics/well_founded_ltof.con" as theorem.
298
299 inline procedural "cic:/CoRN/algebra/Basics/induction_ltof2T.con" as theorem.
300
301 (* UNEXPORTED
302 End InductionT
303 *)
304
305 (* UNEXPORTED
306 Section InductionTT
307 *)
308
309 inline procedural "cic:/CoRN/algebra/Basics/lt_wf_rect.con" as lemma.
310
311 (* UNEXPORTED
312 End InductionTT
313 *)
314