diff -r 99069744ad74 -r 6b496f69f76c Nominal/Ex/Let.thy --- a/Nominal/Ex/Let.thy Tue Jun 28 14:30:30 2011 +0900 +++ b/Nominal/Ex/Let.thy Tue Jun 28 14:45:30 2011 +0900 @@ -96,6 +96,90 @@ (* TODO: should be provided by nominal *) lemmas [eqvt] = trm_assn.fv_bn_eqvt +lemma Abs_lst_fcb2: + fixes as bs :: "'a :: fs" + and x y :: "'b :: fs" + and c::"'c::fs" + assumes eq: "[ba as]lst. x = [ba bs]lst. y" + and fcb1: "(set (ba as)) \* f as x c" + and fresh1: "set (ba as) \* c" + and fresh2: "set (ba bs) \* c" + and perm1: "\p. supp p \* c \ p \ (f as x c) = f (p \ as) (p \ x) c" + and perm2: "\p. supp p \* c \ p \ (f bs y c) = f (p \ bs) (p \ y) c" + and props: "eqvt ba" "inj ba" + shows "f as x c = f bs y c" +proof - + have "supp (as, x, c) supports (f as x c)" + unfolding supports_def fresh_def[symmetric] + by (simp add: fresh_Pair perm1 fresh_star_def supp_swap swap_fresh_fresh) + then have fin1: "finite (supp (f as x c))" + by (auto intro: supports_finite simp add: finite_supp) + have "supp (bs, y, c) supports (f bs y c)" + unfolding supports_def fresh_def[symmetric] + by (simp add: fresh_Pair perm2 fresh_star_def supp_swap swap_fresh_fresh) + then have fin2: "finite (supp (f bs y c))" + by (auto intro: supports_finite simp add: finite_supp) + obtain q::"perm" where + fr1: "(q \ (set (ba as))) \* (x, c, f as x c, f bs y c)" and + fr2: "supp q \* ([ba as]lst. x)" and + inc: "supp q \ (set (ba as)) \ q \ (set (ba as))" + using at_set_avoiding3[where xs="set (ba as)" and c="(x, c, f as x c, f bs y c)" and x="[ba as]lst. x"] + fin1 fin2 + by (auto simp add: supp_Pair finite_supp Abs_fresh_star dest: fresh_star_supp_conv) + have "[q \ (ba as)]lst. (q \ x) = q \ ([ba as]lst. x)" by simp + also have "\ = [ba as]lst. x" + by (simp only: fr2 perm_supp_eq) + finally have "[q \ (ba as)]lst. (q \ x) = [ba bs]lst. y" using eq by simp + then obtain r::perm where + qq1: "q \ x = r \ y" and + qq2: "q \ (ba as) = r \ (ba bs)" and + qq3: "supp r \ (q \ (set (ba as))) \ set (ba bs)" + apply(drule_tac sym) + apply(simp only: Abs_eq_iff2 alphas) + apply(erule exE) + apply(erule conjE)+ + apply(drule_tac x="p" in meta_spec) + apply(simp add: set_eqvt) + apply(blast) + done + have qq4: "q \ as = r \ bs" using qq2 props unfolding eqvt_def inj_on_def + apply(perm_simp) + apply(simp) + done + have "(set (ba as)) \* f as x c" by (rule fcb1) + then have "q \ ((set (ba as)) \* f as x c)" + by (simp add: permute_bool_def) + then have "set (q \ (ba as)) \* f (q \ as) (q \ x) c" + apply(simp add: fresh_star_eqvt set_eqvt) + apply(subst (asm) perm1) + using inc fresh1 fr1 + apply(auto simp add: fresh_star_def fresh_Pair) + done + then have "set (r \ (ba bs)) \* f (r \ bs) (r \ y) c" using qq1 qq2 qq4 + by simp + then have "r \ ((set (ba bs)) \* f bs y c)" + apply(simp add: fresh_star_eqvt set_eqvt) + apply(subst (asm) perm2[symmetric]) + using qq3 fresh2 fr1 + apply(auto simp add: set_eqvt fresh_star_def fresh_Pair) + done + then have fcb2: "(set (ba bs)) \* f bs y c" by (simp add: permute_bool_def) + have "f as x c = q \ (f as x c)" + apply(rule perm_supp_eq[symmetric]) + using inc fcb1 fr1 by (auto simp add: fresh_star_def) + also have "\ = f (q \ as) (q \ x) c" + apply(rule perm1) + using inc fresh1 fr1 by (auto simp add: fresh_star_def) + also have "\ = f (r \ bs) (r \ y) c" using qq1 qq4 by simp + also have "\ = r \ (f bs y c)" + apply(rule perm2[symmetric]) + using qq3 fresh2 fr1 by (auto simp add: fresh_star_def) + also have "... = f bs y c" + apply(rule perm_supp_eq) + using qq3 fr1 fcb2 by (auto simp add: fresh_star_def) + finally show ?thesis by simp +qed + (* PROBLEM: the proof needs induction on alpha_bn inside which is not possible... *) nominal_primrec height_trm :: "trm \ nat" @@ -154,12 +238,9 @@ apply auto apply (simp_all add: meta_eq_to_obj_eq[OF subst_def, symmetric, unfolded fun_eq_iff]) apply (simp_all add: meta_eq_to_obj_eq[OF substa_def, symmetric, unfolded fun_eq_iff]) - (*apply (erule Abs_lst1_fcb)*) - prefer 3 - apply (erule alpha_bn_inducts) - apply (simp add: alpha_bn_refl) - (* Needs an invariant *) - oops + prefer 2 + apply (erule_tac Abs_lst_fcb2) + oops end