]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/contribs/lambdadelta/basic_2/s_transition/fqu_tdeq.ma
renaming in basic_2
[helm.git] / matita / matita / contribs / lambdadelta / basic_2 / s_transition / fqu_tdeq.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 "basic_2/syntax/tdeq.ma".
16 include "basic_2/s_transition/fqu_length.ma".
17
18 (* SUPCLOSURE ***************************************************************)
19
20 (* Inversion lemmas with context-free degree-based equivalence for terms ****)
21
22 fact fqu_inv_tdeq_aux: ∀h,o,b,G1,G2,L1,L2,T1,T2. ⦃G1, L1, T1⦄ ⊐[b] ⦃G2, L2, T2⦄ →
23                        G1 = G2 → |L1| = |L2| → T1 ≛[h, o] T2 → ⊥.
24 #h #o #b #G1 #G2 #L1 #L2 #T1 #T2 * -G1 -G2 -L1 -L2 -T1 -T2
25 [1: #I #G #L #V #_ #H elim (succ_inv_refl_sn … H)
26 |6: #I #G #L #T #U #_ #_ #H elim (succ_inv_refl_sn … H)
27 ]
28 /2 width=6 by tdeq_inv_pair_xy_y, tdeq_inv_pair_xy_x/
29 qed-.
30
31 (* Basic_2A1: uses: fqu_inv_eq *)
32 lemma fqu_inv_tdeq: ∀h,o,b,G,L1,L2,T1,T2. ⦃G, L1, T1⦄ ⊐[b] ⦃G, L2, T2⦄ →
33                     |L1| = |L2| → T1 ≛[h, o] T2 → ⊥.
34 #h #o #b #G #L1 #L2 #T1 #T2 #H
35 @(fqu_inv_tdeq_aux … H) // (**) (* full auto fails *)
36 qed-.