]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/contribs/lambdadelta/basic_2A/grammar/lenv_append.ma
made executable again
[helm.git] / matita / matita / contribs / lambdadelta / basic_2A / grammar / lenv_append.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 "ground/notation/functions/double_semicolon_2.ma".
16 include "basic_2A/notation/functions/snbind2_3.ma".
17 include "basic_2A/notation/functions/snabbr_2.ma".
18 include "basic_2A/notation/functions/snabst_2.ma".
19 include "basic_2A/grammar/lenv_length.ma".
20
21 (* LOCAL ENVIRONMENTS *******************************************************)
22
23 let rec append L K on K ≝ match K with
24 [ LAtom       ⇒ L
25 | LPair K I V ⇒ (append L K). ⓑ{I} V
26 ].
27
28 interpretation
29   "append (local environment)"
30   'DoubleSemicolon L1 L2 = (append L1 L2).
31
32 interpretation
33   "local environment tail binding construction (binary)"
34   'SnBind2 I T L = (append (LPair LAtom I T) L).
35
36 interpretation
37   "tail abbreviation (local environment)"
38   'SnAbbr T L = (append (LPair LAtom Abbr T) L).
39
40 interpretation
41   "tail abstraction (local environment)"
42   'SnAbst L T = (append (LPair LAtom Abst T) L).
43
44 definition d_appendable_sn: predicate (lenv→relation term) ≝ λR.
45                             ∀K,T1,T2. R K T1 T2 → ∀L. R (L ● K) T1 T2.
46
47 (* Basic properties *********************************************************)
48
49 lemma append_atom_sn: ∀L. ⋆ ● L = L.
50 #L elim L -L normalize //
51 qed.
52
53 lemma append_assoc: associative … append.
54 #L1 #L2 #L3 elim L3 -L3 normalize //
55 qed.
56
57 lemma append_length: ∀L1,L2. |L1 ● L2| = |L1| + |L2|.
58 #L1 #L2 elim L2 -L2 normalize //
59 qed.
60
61 lemma ltail_length: ∀I,L,V. |ⓑ{I}V.L| = |L| + 1.
62 #I #L #V >append_length //
63 qed.
64
65 lemma lpair_ltail: ∀L,I,V. ∃∃J,K,W. L.ⓑ{I}V = ⓑ{J}W.K & |L| = |K|.
66 #L elim L -L /2 width=5 by ex2_3_intro/
67 #L #Z #X #IHL #I #V elim (IHL Z X) -IHL
68 #J #K #W #H #_ >H -H >ltail_length
69 @(ex2_3_intro … J (K.ⓑ{I}V) W) //
70 qed-.
71
72 (* Basic inversion lemmas ***************************************************)
73
74 lemma append_inj_sn: ∀K1,K2,L1,L2. L1 ● K1 = L2 ● K2 → |K1| = |K2| →
75                      L1 = L2 ∧ K1 = K2.
76 #K1 elim K1 -K1
77 [ * normalize /2 width=1 by conj/
78   #K2 #I2 #V2 #L1 #L2 #_ <plus_n_Sm #H destruct
79 | #K1 #I1 #V1 #IH * normalize
80   [ #L1 #L2 #_ <plus_n_Sm #H destruct
81   | #K2 #I2 #V2 #L1 #L2 #H1 #H2
82     elim (destruct_lpair_lpair_aux … H1) -H1 #H1 #H3 #H4 destruct (**) (* destruct lemma needed *)
83     elim (IH … H1) -IH -H1 /2 width=1 by conj/
84   ]
85 ]
86 qed-.
87
88 (* Note: lemma 750 *)
89 lemma append_inj_dx: ∀K1,K2,L1,L2. L1 ● K1 = L2 ● K2 → |L1| = |L2| →
90                      L1 = L2 ∧ K1 = K2.
91 #K1 elim K1 -K1
92 [ * normalize /2 width=1 by conj/
93   #K2 #I2 #V2 #L1 #L2 #H1 #H2 destruct
94   normalize in H2; >append_length in H2; #H
95   elim (plus_xySz_x_false … H)
96 | #K1 #I1 #V1 #IH * normalize
97   [ #L1 #L2 #H1 #H2 destruct
98     normalize in H2; >append_length in H2; #H
99     elim (plus_xySz_x_false … (sym_eq … H))
100   | #K2 #I2 #V2 #L1 #L2 #H1 #H2
101     elim (destruct_lpair_lpair_aux … H1) -H1 #H1 #H3 #H4 destruct (**) (* destruct lemma needed *)
102     elim (IH … H1) -IH -H1 /2 width=1 by conj/
103   ]
104 ]
105 qed-.
106
107 lemma append_inv_refl_dx: ∀L,K. L ● K = L → K = ⋆.
108 #L #K #H elim (append_inj_dx … (⋆) … H) //
109 qed-.
110
111 lemma append_inv_pair_dx: ∀I,L,K,V. L ● K = L.ⓑ{I}V → K = ⋆.ⓑ{I}V.
112 #I #L #K #V #H elim (append_inj_dx … (⋆.ⓑ{I}V) … H) //
113 qed-.
114
115 lemma length_inv_pos_dx_ltail: ∀L,l. |L| = l + 1 →
116                                ∃∃I,K,V. |K| = l & L = ⓑ{I}V.K.
117 #Y #l #H elim (length_inv_pos_dx … H) -H #I #L #V #Hl #HLK destruct
118 elim (lpair_ltail L I V) /2 width=5 by ex2_3_intro/
119 qed-.
120
121 lemma length_inv_pos_sn_ltail: ∀L,l. l + 1 = |L| →
122                                ∃∃I,K,V. l = |K| & L = ⓑ{I}V.K.
123 #Y #l #H elim (length_inv_pos_sn … H) -H #I #L #V #Hl #HLK destruct
124 elim (lpair_ltail L I V) /2 width=5 by ex2_3_intro/
125 qed-.
126
127 (* Basic eliminators ********************************************************)
128
129 lemma lenv_ind_alt: ∀R:predicate lenv.
130                     R (⋆) → (∀I,L,T. R L → R (ⓑ{I}T.L)) →
131                     ∀L. R L.
132 #R #IH1 #IH2 #L @(f_ind … length … L) -L #x #IHx * // -IH1
133 #L #I #V normalize #H destruct elim (lpair_ltail L I V) /3 width=1 by/
134 qed-.