Tutorial/Lambda.thy
author Christian Urban <urbanc@in.tum.de>
Tue, 10 May 2011 07:47:06 +0100
changeset 2781 542ff50555f5
parent 2718 8c1cda7ec284
child 3132 87eca760dcba
permissions -rw-r--r--
updated to new Isabelle (> 9 May)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2684
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     1
theory Lambda
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     2
imports "../Nominal/Nominal2" 
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     3
begin
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     4
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     5
section {* Definitions for Lambda Terms *}
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     6
2686
52e1e98edb34 added a very rough version of the tutorial; all seems to work
Christian Urban <urbanc@in.tum.de>
parents: 2684
diff changeset
     7
2684
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     8
text {* type of variables *}
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     9
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    10
atom_decl name
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    11
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    12
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    13
subsection {* Alpha-Equated Lambda Terms *}
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    14
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    15
nominal_datatype lam =
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    16
  Var "name"
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    17
| App "lam" "lam"
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    18
| Lam x::"name" l::"lam" bind x in l ("Lam [_]. _" [100, 100] 100)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    19
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    20
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    21
text {* some automatically derived theorems *}
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    22
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    23
thm lam.distinct
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    24
thm lam.eq_iff
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    25
thm lam.fresh
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    26
thm lam.size
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    27
thm lam.exhaust 
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    28
thm lam.strong_exhaust
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    29
thm lam.induct
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    30
thm lam.strong_induct
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    31
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    32
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    33
subsection {* Height Function *}
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    34
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    35
nominal_primrec
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    36
  height :: "lam \<Rightarrow> int"
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    37
where
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    38
  "height (Var x) = 1"
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    39
| "height (App t1 t2) = max (height t1) (height t2) + 1"
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    40
| "height (Lam [x].t) = height t + 1"
2718
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    41
apply(subgoal_tac "\<And>p x r. height_graph x r \<Longrightarrow> height_graph (p \<bullet> x) (p \<bullet> r)") 
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    42
unfolding eqvt_def
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    43
apply(rule allI)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    44
apply(simp add: permute_fun_def)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    45
apply(rule ext)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    46
apply(rule ext)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    47
apply(simp add: permute_bool_def)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    48
apply(rule iffI)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    49
apply(drule_tac x="p" in meta_spec)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    50
apply(drule_tac x="- p \<bullet> x" in meta_spec)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    51
apply(drule_tac x="- p \<bullet> xa" in meta_spec)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    52
apply(simp)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    53
apply(drule_tac x="-p" in meta_spec)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    54
apply(drule_tac x="x" in meta_spec)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    55
apply(drule_tac x="xa" in meta_spec)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    56
apply(simp)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    57
apply(erule height_graph.induct)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    58
apply(perm_simp)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    59
apply(rule height_graph.intros)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    60
apply(perm_simp)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    61
apply(rule height_graph.intros)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    62
apply(assumption)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    63
apply(assumption)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    64
apply(perm_simp)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    65
apply(rule height_graph.intros)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    66
apply(assumption)
2684
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    67
apply(rule_tac y="x" in lam.exhaust)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    68
apply(auto simp add: lam.distinct lam.eq_iff)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    69
apply(simp add: Abs_eq_iff alphas)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    70
apply(clarify)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    71
apply(subst (4) supp_perm_eq[where p="p", symmetric])
2718
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    72
apply(simp add: pure_supp  fresh_star_def)
2684
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    73
apply(simp add: eqvt_at_def)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    74
done
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    75
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    76
termination
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    77
  by (relation "measure size") (simp_all add: lam.size)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    78
  
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    79
2686
52e1e98edb34 added a very rough version of the tutorial; all seems to work
Christian Urban <urbanc@in.tum.de>
parents: 2684
diff changeset
    80
subsection {* Capture-Avoiding Substitution *}
2684
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    81
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    82
nominal_primrec
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    83
  subst :: "lam \<Rightarrow> name \<Rightarrow> lam \<Rightarrow> lam"  ("_ [_ ::= _]" [90,90,90] 90)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    84
where
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    85
  "(Var x)[y ::= s] = (if x = y then s else (Var x))"
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    86
| "(App t1 t2)[y ::= s] = App (t1[y ::= s]) (t2[y ::= s])"
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    87
| "atom x \<sharp> (y, s) \<Longrightarrow> (Lam [x]. t)[y ::= s] = Lam [x].(t[y ::= s])"
2718
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    88
apply(subgoal_tac "\<And>p x r. subst_graph x r \<Longrightarrow> subst_graph (p \<bullet> x) (p \<bullet> r)") 
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    89
unfolding eqvt_def
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    90
apply(rule allI)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    91
apply(simp add: permute_fun_def)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    92
apply(rule ext)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    93
apply(rule ext)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    94
apply(simp add: permute_bool_def)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    95
apply(rule iffI)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    96
apply(drule_tac x="p" in meta_spec)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    97
apply(drule_tac x="- p \<bullet> x" in meta_spec)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    98
apply(drule_tac x="- p \<bullet> xa" in meta_spec)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
    99
apply(simp)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
   100
apply(drule_tac x="-p" in meta_spec)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
   101
apply(drule_tac x="x" in meta_spec)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
   102
apply(drule_tac x="xa" in meta_spec)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
   103
apply(simp)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
   104
apply(erule subst_graph.induct)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
   105
apply(perm_simp)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
   106
apply(rule subst_graph.intros)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
   107
apply(perm_simp)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
   108
apply(rule subst_graph.intros)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
   109
apply(assumption)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
   110
apply(assumption)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
   111
apply(perm_simp)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
   112
apply(rule subst_graph.intros)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
   113
apply(simp add: fresh_Pair)
8c1cda7ec284 Lambda.thy which works with Nominal_Isabelle2011
Christian Urban <urbanc@in.tum.de>
parents: 2701
diff changeset
   114
apply(assumption)
2684
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   115
apply(auto simp add: lam.distinct lam.eq_iff)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   116
apply(rule_tac y="a" and c="(aa, b)" in lam.strong_exhaust)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   117
apply(blast)+
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   118
apply(simp add: fresh_star_def)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   119
apply(subgoal_tac "atom xa \<sharp> [[atom x]]lst. t \<and> atom x \<sharp> [[atom xa]]lst. ta")
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   120
apply(subst (asm) Abs_eq_iff2)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   121
apply(simp add: alphas atom_eqvt)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   122
apply(clarify)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   123
apply(rule trans)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   124
apply(rule_tac p="p" in supp_perm_eq[symmetric])
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   125
apply(rule fresh_star_supp_conv)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   126
apply(drule fresh_star_perm_set_conv)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   127
apply(simp add: finite_supp)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   128
apply(subgoal_tac "{atom (p \<bullet> x), atom x} \<sharp>* ([[atom x]]lst. subst_sumC (t, ya, sa))")
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   129
apply(auto simp add: fresh_star_def)[1]
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   130
apply(simp (no_asm) add: fresh_star_def)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   131
apply(rule conjI)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   132
apply(simp (no_asm) add: Abs_fresh_iff)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   133
apply(clarify)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   134
apply(drule_tac a="atom (p \<bullet> x)" in fresh_eqvt_at)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   135
apply(simp add: finite_supp)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   136
apply(simp (no_asm_use) add: fresh_Pair)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   137
apply(simp add: Abs_fresh_iff)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   138
apply(simp)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   139
apply(simp add: Abs_fresh_iff)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   140
apply(subgoal_tac "p \<bullet> ya = ya")
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   141
apply(subgoal_tac "p \<bullet> sa = sa")
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   142
apply(simp add: atom_eqvt eqvt_at_def)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   143
apply(rule perm_supp_eq)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   144
apply(auto simp add: fresh_star_def fresh_Pair)[1]
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   145
apply(rule perm_supp_eq)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   146
apply(auto simp add: fresh_star_def fresh_Pair)[1]
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   147
apply(rule conjI)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   148
apply(simp add: Abs_fresh_iff)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   149
apply(drule sym)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   150
apply(simp add: Abs_fresh_iff)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   151
done
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   152
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   153
termination
2686
52e1e98edb34 added a very rough version of the tutorial; all seems to work
Christian Urban <urbanc@in.tum.de>
parents: 2684
diff changeset
   154
  by (relation "measure (\<lambda>(t, _, _). size t)")
2684
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   155
     (simp_all add: lam.size)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   156
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   157
lemma subst_eqvt[eqvt]:
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   158
  shows "(p \<bullet> t[x ::= s]) = (p \<bullet> t)[(p \<bullet> x) ::= (p \<bullet> s)]"
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   159
by (induct t x s rule: subst.induct) (simp_all)
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   160
2701
7b2691911fbc cleaning up
Christian Urban <urbanc@in.tum.de>
parents: 2686
diff changeset
   161
lemma fresh_fact:
7b2691911fbc cleaning up
Christian Urban <urbanc@in.tum.de>
parents: 2686
diff changeset
   162
  assumes a: "atom z \<sharp> s"
7b2691911fbc cleaning up
Christian Urban <urbanc@in.tum.de>
parents: 2686
diff changeset
   163
  and b: "z = y \<or> atom z \<sharp> t"
7b2691911fbc cleaning up
Christian Urban <urbanc@in.tum.de>
parents: 2686
diff changeset
   164
  shows "atom z \<sharp> t[y ::= s]"
7b2691911fbc cleaning up
Christian Urban <urbanc@in.tum.de>
parents: 2686
diff changeset
   165
using a b
7b2691911fbc cleaning up
Christian Urban <urbanc@in.tum.de>
parents: 2686
diff changeset
   166
by (nominal_induct t avoiding: z y s rule: lam.strong_induct)
7b2691911fbc cleaning up
Christian Urban <urbanc@in.tum.de>
parents: 2686
diff changeset
   167
   (auto simp add: lam.fresh fresh_at_base)
2684
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   168
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   169
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   170
end
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   171
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   172
d72a7168f1cb base file for the tutorial (contains definitions for heigt, subst and beta-reduction)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   173