]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/contribs/lambdadelta/basic_2A/grammar/aarity.ma
update in lambdadelta
[helm.git] / matita / matita / contribs / lambdadelta / basic_2A / grammar / aarity.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 (* THE FORMAL SYSTEM λδ: MATITA SOURCE FILES
16  * Initial invocation: - Patience on me to gain peace and perfection! -
17  *)
18
19 include "ground_2A/lib/star.ma".
20 include "basic_2A/notation/constructors/item0_0.ma".
21 include "basic_2A/notation/constructors/snitem2_2.ma".
22
23 (* ATOMIC ARITY *************************************************************)
24
25 inductive aarity: Type[0] ≝
26   | AAtom: aarity                   (* atomic aarity construction *)
27   | APair: aarity → aarity → aarity (* binary aarity construction *)
28 .
29
30 interpretation "atomic arity construction (atomic)"
31    'Item0 = AAtom.
32
33 interpretation "atomic arity construction (binary)"
34    'SnItem2 A1 A2 = (APair A1 A2).
35
36 (* Basic inversion lemmas ***************************************************)
37
38 fact destruct_apair_apair_aux: ∀A1,A2,B1,B2. ②B1.A1 = ②B2.A2 → B1 = B2 ∧ A1 = A2.
39 #A1 #A2 #B1 #B2 #H destruct /2 width=1 by conj/
40 qed-.
41
42 lemma discr_apair_xy_x: ∀A,B. ②B. A = B → ⊥.
43 #A #B elim B -B
44 [ #H destruct
45 | #Y #X #IHY #_ #H elim (destruct_apair_apair_aux … H) -H /2 width=1 by/ (**) (* destruct lemma needed *)
46 ]
47 qed-.
48
49 lemma discr_tpair_xy_y: ∀B,A. ②B. A = A → ⊥.
50 #B #A elim A -A
51 [ #H destruct
52 | #Y #X #_ #IHX #H elim (destruct_apair_apair_aux … H) -H /2 width=1 by/ (**) (* destruct lemma needed *)
53 ]
54 qed-.
55
56 (* Basic properties *********************************************************)
57
58 lemma eq_aarity_dec: ∀A1,A2:aarity. Decidable (A1 = A2).
59 #A1 elim A1 -A1
60 [ #A2 elim A2 -A2 /2 width=1 by or_introl/
61   #B2 #A2 #_ #_ @or_intror #H destruct
62 | #B1 #A1 #IHB1 #IHA1 #A2 elim A2 -A2
63   [ -IHB1 -IHA1 @or_intror #H destruct
64   | #B2 #A2 #_ #_ elim (IHB1 B2) -IHB1
65     [ #H destruct elim (IHA1 A2) -IHA1
66       [ #H destruct /2 width=1 by or_introl/
67       | #HA12 @or_intror #H destruct /2 width=1 by/
68       ]
69     | -IHA1 #HB12 @or_intror #H destruct /2 width=1 by/
70     ]
71   ]
72 ]
73 qed-.