1 (**************************************************************************)
4 (* ||A|| A project by Andrea Asperti *)
6 (* ||I|| Developers: *)
7 (* ||T|| The HELM team. *)
8 (* ||A|| http://helm.cs.unibo.it *)
10 (* \ / This file is distributed under the terms of the *)
11 (* v GNU General Public License Version 2 *)
13 (**************************************************************************)
15 include "basic_2/grammar/lenv_append.ma".
16 include "basic_2/substitution/ldrop.ma".
18 (* DROPPING *****************************************************************)
20 (* Properties on append for local environments ******************************)
22 fact ldrop_O1_append_sn_le_aux: ∀L1,L2,d,e. ⇩[d, e] L1 ≡ L2 →
24 ∀L. ⇩[0, e] L @@ L1 ≡ L @@ L2.
25 #L1 #L2 #d #e #H elim H -L1 -L2 -d -e normalize // /4 width=1/
27 lapply (le_n_O_to_eq … H) -H //
30 lemma ldrop_O1_append_sn_le: ∀L1,L2,e. ⇩[0, e] L1 ≡ L2 → e ≤ |L1| →
31 ∀L. ⇩[0, e] L @@ L1 ≡ L @@ L2.
32 /2 width=3 by ldrop_O1_append_sn_le_aux/ qed.
34 lemma ldrop_O1_inv_append1_ge: ∀K,L1,L2,e. ⇩[0, e] L1 @@ L2 ≡ K →
35 |L2| ≤ e → ⇩[0, e - |L2|] L1 ≡ K.
36 #K #L1 #L2 elim L2 -L2 normalize //
37 #L2 #I #V #IHL2 #e #H #H1e
38 elim (ldrop_inv_O1 … H) -H * #H2e #HL12 destruct
39 [ lapply (le_n_O_to_eq … H1e) -H1e -IHL2
40 >commutative_plus normalize #H destruct
41 | <minus_plus >minus_minus_comm /3 width=1/
45 lemma ldrop_O1_inv_append1_le: ∀K,L1,L2,e. ⇩[0, e] L1 @@ L2 ≡ K → e ≤ |L2| →
46 ∀K2. ⇩[0, e] L2 ≡ K2 → K = L1 @@ K2.
47 #K #L1 #L2 elim L2 -L2 normalize
49 lapply (le_n_O_to_eq … H2) -H2 #H2
50 lapply (ldrop_inv_atom1 … H3) -H3 #H3 destruct
51 >(ldrop_inv_refl … H1) -H1 //
52 | #L2 #I #V #IHL2 #e @(nat_ind_plus … e) -e [ -IHL2 ]
54 lapply (ldrop_inv_refl … H1) -H1 #H1
55 lapply (ldrop_inv_refl … H2) -H2 #H2 destruct //
56 | #e #_ #H1 #H1e #K2 #H2
57 lapply (ldrop_inv_ldrop1 … H1 ?) -H1 //
58 lapply (ldrop_inv_ldrop1 … H2 ?) -H2 // /3 width=4/