X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matita%2Fmatita%2Fcontribs%2Flambdadelta%2Fbasic_2%2Fdynamic%2Fnta_cpms.ma;h=2fbdaa07e5c6891ece5ba3047a95360568c9c534;hb=87f57ddc367303c33e19c83cd8989cd561f3185b;hp=71cc3f94e2cabd2a39632a44d190bfb39d765a9f;hpb=5c92c318030a05c766b3f6070dbd23589cbdee04;p=helm.git diff --git a/matita/matita/contribs/lambdadelta/basic_2/dynamic/nta_cpms.ma b/matita/matita/contribs/lambdadelta/basic_2/dynamic/nta_cpms.ma index 71cc3f94e..2fbdaa07e 100644 --- a/matita/matita/contribs/lambdadelta/basic_2/dynamic/nta_cpms.ma +++ b/matita/matita/contribs/lambdadelta/basic_2/dynamic/nta_cpms.ma @@ -18,32 +18,46 @@ include "basic_2/dynamic/nta.ma". (* NATIVE TYPE ASSIGNMENT FOR TERMS *****************************************) -(* Properties with rt_computation for terms *********************************) +(* Properties with advanced rt_computation for terms ************************) (* Basic_2A1: was by definition nta_appl ntaa_appl *) -lemma nta_beta (a) (h) (p) (G) (L): - ∀V,W. ⦃G,L⦄ ⊢ V :[a,h] W → - ∀T,U. ⦃G,L⦄ ⊢ ⓛ{p}W.T :[a,h] ⓛ{p}W.U → ⦃G,L⦄ ⊢ ⓐV.ⓛ{p}W.T :[a,h] ⓐV.ⓛ{p}W.U. -#a #h #p #G #L #V #W #H1 #T #U #H2 +lemma nta_appl_abst (a) (h) (p) (G) (K): yinj 0 < a → + ∀V,W. ⦃G,K⦄ ⊢ V :[a,h] W → + ∀T,U. ⦃G,K.ⓛW⦄ ⊢ T :[a,h] U → ⦃G,K⦄ ⊢ ⓐV.ⓛ{p}W.T :[a,h] ⓐV.ⓛ{p}W.U. +#a #h #p #G #K #Ha #V #W #H1 #T #U #H2 elim (cnv_inv_cast … H1) -H1 #X1 #HW #HV #HWX1 #HVX1 elim (cnv_inv_cast … H2) -H2 #X2 #HU #HT #HUX2 #HTX2 -/4 width=7 by cnv_cast, cnv_appl, cpms_bind, cpms_appl_dx/ +/4 width=7 by cnv_bind, cnv_appl, cnv_cast, cpms_appl_dx, cpms_bind_dx/ qed. (* Basic_1: was by definition: ty3_appl *) (* Basic_2A1: was nta_appl_old *) -lemma nta_appl (h) (p) (G) (L): - ∀V,W. ⦃G,L⦄ ⊢ V :[h] W → - ∀T,U. ⦃G,L⦄ ⊢ T :[h] ⓛ{p}W.U → ⦃G,L⦄ ⊢ ⓐV.T :[h] ⓐV.ⓛ{p}W.U. -#h #p #G #L #V #W #H1 #T #U #H2 +lemma nta_appl (a) (h) (p) (G) (L): yinj 1 < a → + ∀V,W. ⦃G,L⦄ ⊢ V :[a,h] W → + ∀T,U. ⦃G,L⦄ ⊢ T :[a,h] ⓛ{p}W.U → ⦃G,L⦄ ⊢ ⓐV.T :[a,h] ⓐV.ⓛ{p}W.U. +#a #h #p #G #L #Ha #V #W #H1 #T #U #H2 elim (cnv_inv_cast … H1) -H1 #X1 #HW #HV #HWX1 #HVX1 elim (cnv_inv_cast … H2) -H2 #X2 #HU #HT #HUX2 #HTX2 elim (cpms_inv_abst_sn … HUX2) #W0 #U0 #HW0 #HU0 #H destruct elim (cprs_conf … HWX1 … HW0) -HW0 #X0 #HX10 #HWX0 @(cnv_cast … (ⓐV.ⓛ{p}W0.U0)) (**) (* full auto too slow *) -[ /3 width=7 by cnv_appl, cpms_bind/ +[ /3 width=7 by cnv_appl, cpms_bind, lt_ylt_trans/ | /4 width=11 by cnv_appl, cpms_cprs_trans, cpms_bind/ | /2 width=1 by cpms_appl_dx/ | /2 width=1 by cpms_appl_dx/ ] qed. + +(* Inversion lemmas with advanced rt_computation for terms ******************) + +lemma nta_inv_abst_bi_cnv (a) (h) (p) (G) (K) (W): + ∀T,U. ⦃G,K⦄ ⊢ ⓛ{p}W.T :[a,h] ⓛ{p}W.U → + ∧∧ ⦃G,K⦄ ⊢ W ![a,h] & ⦃G,K.ⓛW⦄ ⊢ T :[a,h] U. +#a #h #p #G #K #W #T #U #H +elim (cnv_inv_cast … H) -H #X #HWU #HWT #HUX #HTX +elim (cnv_inv_bind … HWU) -HWU #HW #HU +elim (cnv_inv_bind … HWT) -HWT #_ #HT +elim (cpms_inv_abst_sn … HUX) -HUX #W0 #X0 #_ #HUX0 #H destruct +elim (cpms_inv_abst_bi … HTX) -HTX #_ #_ #HTX0 -W0 +/3 width=3 by cnv_cast, conj/ +qed-.