Nominal/Ex/Let.thy
author Christian Urban <urbanc@in.tum.de>
Wed, 22 Dec 2010 10:32:01 +0000
changeset 2618 d17fadc20507
parent 2617 e44551d067e6
child 2630 8268b277d240
permissions -rw-r--r--
corrected premises of strong exhausts theorems
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2436
3885dc2669f9 cleaned up (almost completely) the examples
Christian Urban <urbanc@in.tum.de>
parents: 2120
diff changeset
     1
theory Let
2454
9ffee4eb1ae1 renamed NewParser to Nominal2
Christian Urban <urbanc@in.tum.de>
parents: 2449
diff changeset
     2
imports "../Nominal2" 
1600
e33e37fd4c7d More reorganization.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
     3
begin
e33e37fd4c7d More reorganization.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
     4
e33e37fd4c7d More reorganization.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
     5
atom_decl name
e33e37fd4c7d More reorganization.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
     6
e33e37fd4c7d More reorganization.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
     7
nominal_datatype trm =
2436
3885dc2669f9 cleaned up (almost completely) the examples
Christian Urban <urbanc@in.tum.de>
parents: 2120
diff changeset
     8
  Var "name"
3885dc2669f9 cleaned up (almost completely) the examples
Christian Urban <urbanc@in.tum.de>
parents: 2120
diff changeset
     9
| App "trm" "trm"
3885dc2669f9 cleaned up (almost completely) the examples
Christian Urban <urbanc@in.tum.de>
parents: 2120
diff changeset
    10
| Lam x::"name" t::"trm"  bind  x in t
2490
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    11
| Let as::"assn" t::"trm"   bind "bn as" in t
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    12
and assn =
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    13
  ANil
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    14
| ACons "name" "trm" "assn"
1600
e33e37fd4c7d More reorganization.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    15
binder
e33e37fd4c7d More reorganization.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    16
  bn
e33e37fd4c7d More reorganization.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    17
where
2490
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    18
  "bn ANil = []"
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    19
| "bn (ACons x t as) = (atom x) # (bn as)"
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    20
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    21
thm trm_assn.fv_defs
2492
5ac9a74d22fd post-processed eq_iff and supp threormes according to the fv-supp equality
Christian Urban <urbanc@in.tum.de>
parents: 2490
diff changeset
    22
thm trm_assn.eq_iff 
2490
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    23
thm trm_assn.bn_defs
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    24
thm trm_assn.perm_simps
2492
5ac9a74d22fd post-processed eq_iff and supp threormes according to the fv-supp equality
Christian Urban <urbanc@in.tum.de>
parents: 2490
diff changeset
    25
thm trm_assn.induct
5ac9a74d22fd post-processed eq_iff and supp threormes according to the fv-supp equality
Christian Urban <urbanc@in.tum.de>
parents: 2490
diff changeset
    26
thm trm_assn.inducts
2490
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    27
thm trm_assn.distinct
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    28
thm trm_assn.supp
2493
2e174807c891 added postprocessed fresh-lemmas for constructors
Christian Urban <urbanc@in.tum.de>
parents: 2492
diff changeset
    29
thm trm_assn.fresh
2617
e44551d067e6 properly exported strong exhaust theorem; cleaned up some examples
Christian Urban <urbanc@in.tum.de>
parents: 2562
diff changeset
    30
thm trm_assn.exhaust
e44551d067e6 properly exported strong exhaust theorem; cleaned up some examples
Christian Urban <urbanc@in.tum.de>
parents: 2562
diff changeset
    31
thm trm_assn.strong_exhaust
2494
11133eb76f61 added Foo1 to explore a contrived example
Christian Urban <urbanc@in.tum.de>
parents: 2493
diff changeset
    32
2490
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    33
lemma 
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    34
  fixes t::trm
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    35
  and   as::assn
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    36
  and   c::"'a::fs"
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    37
  assumes a1: "\<And>x c. P1 c (Var x)"
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    38
  and     a2: "\<And>t1 t2 c. \<lbrakk>\<And>d. P1 d t1; \<And>d. P1 d t2\<rbrakk> \<Longrightarrow> P1 c (App t1 t2)"
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    39
  and     a3: "\<And>x t c. \<lbrakk>{atom x} \<sharp>* c; \<And>d. P1 d t\<rbrakk> \<Longrightarrow> P1 c (Lam x t)"
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    40
  and     a4: "\<And>as t c. \<lbrakk>set (bn as) \<sharp>* c; \<And>d. P2 d as; \<And>d. P1 d t\<rbrakk> \<Longrightarrow> P1 c (Let as t)"
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    41
  and     a5: "\<And>c. P2 c ANil"
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    42
  and     a6: "\<And>x t as c. \<lbrakk>\<And>d. P1 d t; \<And>d. P2 d as\<rbrakk> \<Longrightarrow> P2 c (ACons x t as)"
2498
c7534584a7a0 use also induct_schema for the Let-example (permute_bn is used)
Christian Urban <urbanc@in.tum.de>
parents: 2494
diff changeset
    43
  shows "P1 c t" "P2 c as"
c7534584a7a0 use also induct_schema for the Let-example (permute_bn is used)
Christian Urban <urbanc@in.tum.de>
parents: 2494
diff changeset
    44
using assms
c7534584a7a0 use also induct_schema for the Let-example (permute_bn is used)
Christian Urban <urbanc@in.tum.de>
parents: 2494
diff changeset
    45
apply(induction_schema)
2618
d17fadc20507 corrected premises of strong exhausts theorems
Christian Urban <urbanc@in.tum.de>
parents: 2617
diff changeset
    46
apply(rule_tac y="t" in trm_assn.strong_exhaust(1))
2498
c7534584a7a0 use also induct_schema for the Let-example (permute_bn is used)
Christian Urban <urbanc@in.tum.de>
parents: 2494
diff changeset
    47
apply(blast)
c7534584a7a0 use also induct_schema for the Let-example (permute_bn is used)
Christian Urban <urbanc@in.tum.de>
parents: 2494
diff changeset
    48
apply(blast)
c7534584a7a0 use also induct_schema for the Let-example (permute_bn is used)
Christian Urban <urbanc@in.tum.de>
parents: 2494
diff changeset
    49
apply(blast)
c7534584a7a0 use also induct_schema for the Let-example (permute_bn is used)
Christian Urban <urbanc@in.tum.de>
parents: 2494
diff changeset
    50
apply(blast)
2618
d17fadc20507 corrected premises of strong exhausts theorems
Christian Urban <urbanc@in.tum.de>
parents: 2617
diff changeset
    51
apply(rule_tac ya="as" in trm_assn.strong_exhaust(2))
2498
c7534584a7a0 use also induct_schema for the Let-example (permute_bn is used)
Christian Urban <urbanc@in.tum.de>
parents: 2494
diff changeset
    52
apply(blast)
c7534584a7a0 use also induct_schema for the Let-example (permute_bn is used)
Christian Urban <urbanc@in.tum.de>
parents: 2494
diff changeset
    53
apply(blast)
c7534584a7a0 use also induct_schema for the Let-example (permute_bn is used)
Christian Urban <urbanc@in.tum.de>
parents: 2494
diff changeset
    54
apply(relation "measure (sum_case (\<lambda>y. size (snd y)) (\<lambda>z. size (snd z)))")
2503
cc5d23547341 simplified exhaust proofs
Christian Urban <urbanc@in.tum.de>
parents: 2500
diff changeset
    55
apply(simp_all add: trm_assn.size)
2498
c7534584a7a0 use also induct_schema for the Let-example (permute_bn is used)
Christian Urban <urbanc@in.tum.de>
parents: 2494
diff changeset
    56
done
c7534584a7a0 use also induct_schema for the Let-example (permute_bn is used)
Christian Urban <urbanc@in.tum.de>
parents: 2494
diff changeset
    57
c7534584a7a0 use also induct_schema for the Let-example (permute_bn is used)
Christian Urban <urbanc@in.tum.de>
parents: 2494
diff changeset
    58
text {* *}
c7534584a7a0 use also induct_schema for the Let-example (permute_bn is used)
Christian Urban <urbanc@in.tum.de>
parents: 2494
diff changeset
    59
c7534584a7a0 use also induct_schema for the Let-example (permute_bn is used)
Christian Urban <urbanc@in.tum.de>
parents: 2494
diff changeset
    60
c7534584a7a0 use also induct_schema for the Let-example (permute_bn is used)
Christian Urban <urbanc@in.tum.de>
parents: 2494
diff changeset
    61
(*
2490
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    62
proof -
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    63
  have x: "\<And>(p::perm) (c::'a::fs). P1 c (p \<bullet> t)" 
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    64
   and y: "\<And>(p::perm) (c::'a::fs). P2 c (p \<bullet> as)"
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    65
    apply(induct rule: trm_assn.inducts)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    66
    apply(simp)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    67
    apply(rule a1)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    68
    apply(simp)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    69
    apply(rule a2)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    70
    apply(assumption)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    71
    apply(assumption)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    72
    -- "lam case"
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    73
    apply(simp)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    74
    apply(subgoal_tac "\<exists>q. (q \<bullet> {atom (p \<bullet> name)}) \<sharp>* c \<and> supp (Lam (p \<bullet> name) (p \<bullet> trm)) \<sharp>* q")
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    75
    apply(erule exE)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    76
    apply(erule conjE)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    77
    apply(drule supp_perm_eq[symmetric])
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    78
    apply(simp)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    79
    apply(thin_tac "?X = ?Y")
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    80
    apply(rule a3)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    81
    apply(simp add: atom_eqvt permute_set_eq)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    82
    apply(simp only: permute_plus[symmetric])
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    83
    apply(rule at_set_avoiding2)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    84
    apply(simp add: finite_supp)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    85
    apply(simp add: finite_supp)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    86
    apply(simp add: finite_supp)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    87
    apply(simp add: freshs fresh_star_def)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    88
    --"let case"
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    89
    apply(simp)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    90
    thm trm_assn.eq_iff
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    91
    thm eq_iffs
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    92
    apply(subgoal_tac "\<exists>q. (q \<bullet> set (bn (p \<bullet> assn))) \<sharp>* c \<and> supp (Abs_lst (bn (p \<bullet> assn)) (p \<bullet> trm)) \<sharp>* q")
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    93
    apply(erule exE)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    94
    apply(erule conjE)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    95
    prefer 2
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    96
    apply(rule at_set_avoiding2)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    97
    apply(rule fin_bn)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    98
    apply(simp add: finite_supp)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    99
    apply(simp add: finite_supp)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   100
    apply(simp add: abs_fresh)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   101
    apply(rule_tac t = "Let (p \<bullet> assn) (p \<bullet> trm)" in subst)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   102
    prefer 2
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   103
    apply(rule a4)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   104
    prefer 4
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   105
    apply(simp add: eq_iffs)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   106
    apply(rule conjI)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   107
    prefer 2
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   108
    apply(simp add: set_eqvt trm_assn.fv_bn_eqvt)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   109
    apply(subst permute_plus[symmetric])
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   110
    apply(blast)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   111
    prefer 2
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   112
    apply(simp add: eq_iffs)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   113
    thm eq_iffs
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   114
    apply(subst permute_plus[symmetric])
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   115
    apply(blast)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   116
    apply(simp add: supps)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   117
    apply(simp add: fresh_star_def freshs)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   118
    apply(drule supp_perm_eq[symmetric])
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   119
    apply(simp)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   120
    apply(simp add: eq_iffs)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   121
    apply(simp)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   122
    apply(thin_tac "?X = ?Y")
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   123
    apply(rule a4) 
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   124
    apply(simp add: set_eqvt trm_assn.fv_bn_eqvt)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   125
    apply(subst permute_plus[symmetric])
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   126
    apply(blast)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   127
    apply(subst permute_plus[symmetric])
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   128
    apply(blast)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   129
    apply(simp add: supps)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   130
    thm at_set_avoiding2
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   131
    --"HERE"
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   132
    apply(rule at_set_avoiding2)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   133
    apply(rule fin_bn)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   134
    apply(simp add: finite_supp)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   135
    apply(simp add: finite_supp)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   136
    apply(simp add: fresh_star_def freshs)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   137
    apply(rule ballI)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   138
    apply(simp add: eqvts permute_bn)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   139
    apply(rule a5)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   140
    apply(simp add: permute_bn)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   141
    apply(rule a6)
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   142
    apply simp
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   143
    apply simp
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   144
    done
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   145
  then have a: "P1 c (0 \<bullet> t)" by blast
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   146
  have "P2 c (permute_bn 0 (0 \<bullet> l))" using b' by blast
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   147
  then show "P1 c t" and "P2 c l" using a permute_bn_zero by simp_all
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   148
qed
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
   149
*)
1600
e33e37fd4c7d More reorganization.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   150
2438
abafea9b39bb corrected bug with fv-function generation (that was the problem with recursive binders)
Christian Urban <urbanc@in.tum.de>
parents: 2436
diff changeset
   151
text {* *}
1731
3832a31a73b1 a test with let having multiple bodies
Christian Urban <urbanc@in.tum.de>
parents: 1685
diff changeset
   152
2436
3885dc2669f9 cleaned up (almost completely) the examples
Christian Urban <urbanc@in.tum.de>
parents: 2120
diff changeset
   153
(*
1731
3832a31a73b1 a test with let having multiple bodies
Christian Urban <urbanc@in.tum.de>
parents: 1685
diff changeset
   154
1644
0e705352bcef Properly defined permute_bn. No more sorry's in Let strong induction.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1643
diff changeset
   155
primrec
0e705352bcef Properly defined permute_bn. No more sorry's in Let strong induction.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1643
diff changeset
   156
  permute_bn_raw
0e705352bcef Properly defined permute_bn. No more sorry's in Let strong induction.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1643
diff changeset
   157
where
0e705352bcef Properly defined permute_bn. No more sorry's in Let strong induction.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1643
diff changeset
   158
  "permute_bn_raw pi (Lnil_raw) = Lnil_raw"
0e705352bcef Properly defined permute_bn. No more sorry's in Let strong induction.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1643
diff changeset
   159
| "permute_bn_raw pi (Lcons_raw a t l) = Lcons_raw (pi \<bullet> a) t (permute_bn_raw pi l)"
0e705352bcef Properly defined permute_bn. No more sorry's in Let strong induction.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1643
diff changeset
   160
0e705352bcef Properly defined permute_bn. No more sorry's in Let strong induction.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1643
diff changeset
   161
quotient_definition
0e705352bcef Properly defined permute_bn. No more sorry's in Let strong induction.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1643
diff changeset
   162
  "permute_bn :: perm \<Rightarrow> lts \<Rightarrow> lts"
0e705352bcef Properly defined permute_bn. No more sorry's in Let strong induction.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1643
diff changeset
   163
is
0e705352bcef Properly defined permute_bn. No more sorry's in Let strong induction.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1643
diff changeset
   164
  "permute_bn_raw"
1639
a98d03fb9d53 added experiemental permute_bn
Christian Urban <urbanc@in.tum.de>
parents: 1638
diff changeset
   165
1644
0e705352bcef Properly defined permute_bn. No more sorry's in Let strong induction.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1643
diff changeset
   166
lemma [quot_respect]: "((op =) ===> alpha_lts_raw ===> alpha_lts_raw) permute_bn_raw permute_bn_raw"
0e705352bcef Properly defined permute_bn. No more sorry's in Let strong induction.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1643
diff changeset
   167
  apply simp
0e705352bcef Properly defined permute_bn. No more sorry's in Let strong induction.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1643
diff changeset
   168
  apply clarify
0e705352bcef Properly defined permute_bn. No more sorry's in Let strong induction.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1643
diff changeset
   169
  apply (erule alpha_trm_raw_alpha_lts_raw_alpha_bn_raw.inducts)
2039
39df91a90f87 Move ExLet to NewParser.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1774
diff changeset
   170
  apply (rule TrueI)+
1644
0e705352bcef Properly defined permute_bn. No more sorry's in Let strong induction.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1643
diff changeset
   171
  apply simp_all
2039
39df91a90f87 Move ExLet to NewParser.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1774
diff changeset
   172
  apply (rule_tac [!] alpha_trm_raw_alpha_lts_raw_alpha_bn_raw.intros)
39df91a90f87 Move ExLet to NewParser.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1774
diff changeset
   173
  apply simp_all
1644
0e705352bcef Properly defined permute_bn. No more sorry's in Let strong induction.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1643
diff changeset
   174
  done
0e705352bcef Properly defined permute_bn. No more sorry's in Let strong induction.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1643
diff changeset
   175
0e705352bcef Properly defined permute_bn. No more sorry's in Let strong induction.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1643
diff changeset
   176
lemmas permute_bn = permute_bn_raw.simps[quot_lifted]
1639
a98d03fb9d53 added experiemental permute_bn
Christian Urban <urbanc@in.tum.de>
parents: 1638
diff changeset
   177
1642
06f44d498cef Only let substitution is left.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1641
diff changeset
   178
lemma permute_bn_zero:
06f44d498cef Only let substitution is left.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1641
diff changeset
   179
  "permute_bn 0 a = a"
06f44d498cef Only let substitution is left.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1641
diff changeset
   180
  apply(induct a rule: trm_lts.inducts(2))
2039
39df91a90f87 Move ExLet to NewParser.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1774
diff changeset
   181
  apply(rule TrueI)+
39df91a90f87 Move ExLet to NewParser.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1774
diff changeset
   182
  apply(simp_all add:permute_bn)
1642
06f44d498cef Only let substitution is left.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1641
diff changeset
   183
  done
06f44d498cef Only let substitution is left.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1641
diff changeset
   184
1640
cd5a6db05540 trying to prove the string induction for let.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1639
diff changeset
   185
lemma permute_bn_add:
cd5a6db05540 trying to prove the string induction for let.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1639
diff changeset
   186
  "permute_bn (p + q) a = permute_bn p (permute_bn q a)"
cd5a6db05540 trying to prove the string induction for let.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1639
diff changeset
   187
  oops
cd5a6db05540 trying to prove the string induction for let.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1639
diff changeset
   188
1643
953403c5faa0 Showed Let substitution.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1642
diff changeset
   189
lemma permute_bn_alpha_bn: "alpha_bn lts (permute_bn q lts)"
953403c5faa0 Showed Let substitution.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1642
diff changeset
   190
  apply(induct lts rule: trm_lts.inducts(2))
2039
39df91a90f87 Move ExLet to NewParser.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1774
diff changeset
   191
  apply(rule TrueI)+
1644
0e705352bcef Properly defined permute_bn. No more sorry's in Let strong induction.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1643
diff changeset
   192
  apply(simp_all add:permute_bn eqvts trm_lts.eq_iff)
1643
953403c5faa0 Showed Let substitution.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1642
diff changeset
   193
  done
1641
0b47b699afe0 further in the proof
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1640
diff changeset
   194
1642
06f44d498cef Only let substitution is left.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1641
diff changeset
   195
lemma perm_bn:
06f44d498cef Only let substitution is left.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1641
diff changeset
   196
  "p \<bullet> bn l = bn(permute_bn p l)"
06f44d498cef Only let substitution is left.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1641
diff changeset
   197
  apply(induct l rule: trm_lts.inducts(2))
2039
39df91a90f87 Move ExLet to NewParser.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1774
diff changeset
   198
  apply(rule TrueI)+
1644
0e705352bcef Properly defined permute_bn. No more sorry's in Let strong induction.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1643
diff changeset
   199
  apply(simp_all add:permute_bn eqvts)
1642
06f44d498cef Only let substitution is left.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1641
diff changeset
   200
  done
06f44d498cef Only let substitution is left.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1641
diff changeset
   201
1757
d803c0adfcf8 fv_perm_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1739
diff changeset
   202
lemma fv_perm_bn:
d803c0adfcf8 fv_perm_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1739
diff changeset
   203
  "fv_bn l = fv_bn (permute_bn p l)"
d803c0adfcf8 fv_perm_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1739
diff changeset
   204
  apply(induct l rule: trm_lts.inducts(2))
2039
39df91a90f87 Move ExLet to NewParser.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1774
diff changeset
   205
  apply(rule TrueI)+
1757
d803c0adfcf8 fv_perm_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1739
diff changeset
   206
  apply(simp_all add:permute_bn eqvts)
d803c0adfcf8 fv_perm_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1739
diff changeset
   207
  done
d803c0adfcf8 fv_perm_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1739
diff changeset
   208
1643
953403c5faa0 Showed Let substitution.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1642
diff changeset
   209
lemma Lt_subst:
1685
721d92623c9d Lets finally abstract lists.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1658
diff changeset
   210
  "supp (Abs_lst (bn lts) trm) \<sharp>* q \<Longrightarrow> (Lt lts trm) = Lt (permute_bn q lts) (q \<bullet> trm)"
2039
39df91a90f87 Move ExLet to NewParser.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1774
diff changeset
   211
  apply (simp add: trm_lts.eq_iff permute_bn_alpha_bn)
1643
953403c5faa0 Showed Let substitution.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1642
diff changeset
   212
  apply (rule_tac x="q" in exI)
953403c5faa0 Showed Let substitution.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1642
diff changeset
   213
  apply (simp add: alphas)
953403c5faa0 Showed Let substitution.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1642
diff changeset
   214
  apply (simp add: perm_bn[symmetric])
2082
0854af516f14 cleaned up a bit the examples; added equivariance to all examples
Christian Urban <urbanc@in.tum.de>
parents: 2039
diff changeset
   215
  apply(rule conjI)
0854af516f14 cleaned up a bit the examples; added equivariance to all examples
Christian Urban <urbanc@in.tum.de>
parents: 2039
diff changeset
   216
  apply(drule supp_perm_eq)
0854af516f14 cleaned up a bit the examples; added equivariance to all examples
Christian Urban <urbanc@in.tum.de>
parents: 2039
diff changeset
   217
  apply(simp add: abs_eq_iff)
0854af516f14 cleaned up a bit the examples; added equivariance to all examples
Christian Urban <urbanc@in.tum.de>
parents: 2039
diff changeset
   218
  apply(simp add: alphas_abs alphas)
0854af516f14 cleaned up a bit the examples; added equivariance to all examples
Christian Urban <urbanc@in.tum.de>
parents: 2039
diff changeset
   219
  apply(drule conjunct1)
1643
953403c5faa0 Showed Let substitution.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1642
diff changeset
   220
  apply (simp add: trm_lts.supp)
2082
0854af516f14 cleaned up a bit the examples; added equivariance to all examples
Christian Urban <urbanc@in.tum.de>
parents: 2039
diff changeset
   221
  apply(simp add: supp_abs)
0854af516f14 cleaned up a bit the examples; added equivariance to all examples
Christian Urban <urbanc@in.tum.de>
parents: 2039
diff changeset
   222
  apply (simp add: trm_lts.supp)
1643
953403c5faa0 Showed Let substitution.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1642
diff changeset
   223
  done
953403c5faa0 Showed Let substitution.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1642
diff changeset
   224
953403c5faa0 Showed Let substitution.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1642
diff changeset
   225
1642
06f44d498cef Only let substitution is left.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1641
diff changeset
   226
lemma fin_bn:
1685
721d92623c9d Lets finally abstract lists.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1658
diff changeset
   227
  "finite (set (bn l))"
1642
06f44d498cef Only let substitution is left.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1641
diff changeset
   228
  apply(induct l rule: trm_lts.inducts(2))
1644
0e705352bcef Properly defined permute_bn. No more sorry's in Let strong induction.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1643
diff changeset
   229
  apply(simp_all add:permute_bn eqvts)
1642
06f44d498cef Only let substitution is left.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1641
diff changeset
   230
  done
06f44d498cef Only let substitution is left.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1641
diff changeset
   231
1765
9a894c42e80e more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents: 1759
diff changeset
   232
thm trm_lts.inducts[no_vars]
9a894c42e80e more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents: 1759
diff changeset
   233
1638
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   234
lemma 
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   235
  fixes t::trm
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   236
  and   l::lts
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   237
  and   c::"'a::fs"
1640
cd5a6db05540 trying to prove the string induction for let.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1639
diff changeset
   238
  assumes a1: "\<And>name c. P1 c (Vr name)"
1638
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   239
  and     a2: "\<And>trm1 trm2 c. \<lbrakk>\<And>d. P1 d trm1; \<And>d. P1 d trm2\<rbrakk> \<Longrightarrow> P1 c (Ap trm1 trm2)"
1640
cd5a6db05540 trying to prove the string induction for let.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1639
diff changeset
   240
  and     a3: "\<And>name trm c. \<lbrakk>atom name \<sharp> c; \<And>d. P1 d trm\<rbrakk> \<Longrightarrow> P1 c (Lm name trm)"
1685
721d92623c9d Lets finally abstract lists.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1658
diff changeset
   241
  and     a4: "\<And>lts trm c. \<lbrakk>set (bn lts) \<sharp>* c; \<And>d. P2 d lts; \<And>d. P1 d trm\<rbrakk> \<Longrightarrow> P1 c (Lt lts trm)"
1638
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   242
  and     a5: "\<And>c. P2 c Lnil"
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   243
  and     a6: "\<And>name trm lts c. \<lbrakk>\<And>d. P1 d trm; \<And>d. P2 d lts\<rbrakk> \<Longrightarrow> P2 c (Lcons name trm lts)"
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   244
  shows "P1 c t" and "P2 c l"
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   245
proof -
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   246
  have "(\<And>(p::perm) (c::'a::fs). P1 c (p \<bullet> t))" and
1642
06f44d498cef Only let substitution is left.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1641
diff changeset
   247
       b': "(\<And>(p::perm) (q::perm) (c::'a::fs). P2 c (permute_bn p (q \<bullet> l)))"
1638
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   248
    apply(induct rule: trm_lts.inducts)
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   249
    apply(simp)
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   250
    apply(rule a1)
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   251
    apply(simp)
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   252
    apply(rule a2)
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   253
    apply(simp)
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   254
    apply(simp)
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   255
    apply(simp)
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   256
    apply(subgoal_tac "\<exists>q. (q \<bullet> (atom (p \<bullet> name))) \<sharp> c \<and> supp (Lm (p \<bullet> name) (p \<bullet> trm)) \<sharp>* q")
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   257
    apply(erule exE)
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   258
    apply(rule_tac t="Lm (p \<bullet> name) (p \<bullet> trm)" 
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   259
               and s="q\<bullet> Lm (p \<bullet> name) (p \<bullet> trm)" in subst)
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   260
    apply(rule supp_perm_eq)
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   261
    apply(simp)
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   262
    apply(simp)
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   263
    apply(rule a3)
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   264
    apply(simp add: atom_eqvt)
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   265
    apply(subst permute_plus[symmetric])
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   266
    apply(blast)
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   267
    apply(rule at_set_avoiding2_atom)
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   268
    apply(simp add: finite_supp)
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   269
    apply(simp add: finite_supp)
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   270
    apply(simp add: fresh_def)
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   271
    apply(simp add: trm_lts.fv[simplified trm_lts.supp])
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   272
    apply(simp)
1685
721d92623c9d Lets finally abstract lists.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1658
diff changeset
   273
    apply(subgoal_tac "\<exists>q. (q \<bullet> set (bn (p \<bullet> lts))) \<sharp>* c \<and> supp (Abs_lst (bn (p \<bullet> lts)) (p \<bullet> trm)) \<sharp>* q")
1638
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   274
    apply(erule exE)
1641
0b47b699afe0 further in the proof
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1640
diff changeset
   275
    apply(erule conjE)
1774
c34347ec7ab3 separated general nominal theory into separate folder
Christian Urban <urbanc@in.tum.de>
parents: 1773
diff changeset
   276
    thm Lt_subst
1641
0b47b699afe0 further in the proof
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1640
diff changeset
   277
    apply(subst Lt_subst)
0b47b699afe0 further in the proof
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1640
diff changeset
   278
    apply assumption
1638
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   279
    apply(rule a4)
1685
721d92623c9d Lets finally abstract lists.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1658
diff changeset
   280
    apply(simp add:perm_bn[symmetric])
721d92623c9d Lets finally abstract lists.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1658
diff changeset
   281
    apply(simp add: eqvts)
1641
0b47b699afe0 further in the proof
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1640
diff changeset
   282
    apply (simp add: fresh_star_def fresh_def)
1640
cd5a6db05540 trying to prove the string induction for let.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1639
diff changeset
   283
    apply(rotate_tac 1)
cd5a6db05540 trying to prove the string induction for let.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1639
diff changeset
   284
    apply(drule_tac x="q + p" in meta_spec)
cd5a6db05540 trying to prove the string induction for let.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1639
diff changeset
   285
    apply(simp)
1642
06f44d498cef Only let substitution is left.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1641
diff changeset
   286
    apply(rule at_set_avoiding2)
06f44d498cef Only let substitution is left.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1641
diff changeset
   287
    apply(rule fin_bn)
1641
0b47b699afe0 further in the proof
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1640
diff changeset
   288
    apply(simp add: finite_supp)
0b47b699afe0 further in the proof
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1640
diff changeset
   289
    apply(simp add: finite_supp)
1658
aacab5f67333 Fixed renamings.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1653
diff changeset
   290
    apply(simp add: fresh_star_def fresh_def supp_abs)
1644
0e705352bcef Properly defined permute_bn. No more sorry's in Let strong induction.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1643
diff changeset
   291
    apply(simp add: eqvts permute_bn)
1640
cd5a6db05540 trying to prove the string induction for let.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1639
diff changeset
   292
    apply(rule a5)
1644
0e705352bcef Properly defined permute_bn. No more sorry's in Let strong induction.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1643
diff changeset
   293
    apply(simp add: permute_bn)
1640
cd5a6db05540 trying to prove the string induction for let.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1639
diff changeset
   294
    apply(rule a6)
cd5a6db05540 trying to prove the string induction for let.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1639
diff changeset
   295
    apply simp
cd5a6db05540 trying to prove the string induction for let.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1639
diff changeset
   296
    apply simp
1642
06f44d498cef Only let substitution is left.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1641
diff changeset
   297
    done
06f44d498cef Only let substitution is left.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1641
diff changeset
   298
  then have a: "P1 c (0 \<bullet> t)" by blast
06f44d498cef Only let substitution is left.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1641
diff changeset
   299
  have "P2 c (permute_bn 0 (0 \<bullet> l))" using b' by blast
06f44d498cef Only let substitution is left.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1641
diff changeset
   300
  then show "P1 c t" and "P2 c l" using a permute_bn_zero by simp_all
06f44d498cef Only let substitution is left.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1641
diff changeset
   301
qed
06f44d498cef Only let substitution is left.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1641
diff changeset
   302
1638
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   303
36798cdbc452 first attempt of strong induction for lets with assignments
Christian Urban <urbanc@in.tum.de>
parents: 1602
diff changeset
   304
1602
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   305
lemma lets_bla:
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   306
  "x \<noteq> z \<Longrightarrow> y \<noteq> z \<Longrightarrow> x \<noteq> y \<Longrightarrow>(Lt (Lcons x (Vr y) Lnil) (Vr x)) \<noteq> (Lt (Lcons x (Vr z) Lnil) (Vr x))"
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   307
  by (simp add: trm_lts.eq_iff)
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   308
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   309
lemma lets_ok:
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   310
  "(Lt (Lcons x (Vr y) Lnil) (Vr x)) = (Lt (Lcons y (Vr y) Lnil) (Vr y))"
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   311
  apply (simp add: trm_lts.eq_iff)
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   312
  apply (rule_tac x="(x \<leftrightarrow> y)" in exI)
2039
39df91a90f87 Move ExLet to NewParser.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1774
diff changeset
   313
  apply (simp_all add: alphas eqvts supp_at_base fresh_star_def)
1602
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   314
  done
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   315
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   316
lemma lets_ok3:
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   317
  "x \<noteq> y \<Longrightarrow>
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   318
   (Lt (Lcons x (Ap (Vr y) (Vr x)) (Lcons y (Vr y) Lnil)) (Ap (Vr x) (Vr y))) \<noteq>
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   319
   (Lt (Lcons y (Ap (Vr x) (Vr y)) (Lcons x (Vr x) Lnil)) (Ap (Vr x) (Vr y)))"
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   320
  apply (simp add: alphas trm_lts.eq_iff)
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   321
  done
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   322
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   323
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   324
lemma lets_not_ok1:
1685
721d92623c9d Lets finally abstract lists.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1658
diff changeset
   325
  "x \<noteq> y \<Longrightarrow>
721d92623c9d Lets finally abstract lists.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1658
diff changeset
   326
   (Lt (Lcons x (Vr x) (Lcons y (Vr y) Lnil)) (Ap (Vr x) (Vr y))) \<noteq>
1602
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   327
   (Lt (Lcons y (Vr x) (Lcons x (Vr y) Lnil)) (Ap (Vr x) (Vr y)))"
1685
721d92623c9d Lets finally abstract lists.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1658
diff changeset
   328
  apply (simp add: alphas trm_lts.eq_iff fresh_star_def eqvts)
1602
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   329
  done
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   330
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   331
lemma lets_nok:
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   332
  "x \<noteq> y \<Longrightarrow> x \<noteq> z \<Longrightarrow> z \<noteq> y \<Longrightarrow>
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   333
   (Lt (Lcons x (Ap (Vr z) (Vr z)) (Lcons y (Vr z) Lnil)) (Ap (Vr x) (Vr y))) \<noteq>
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   334
   (Lt (Lcons y (Vr z) (Lcons x (Ap (Vr z) (Vr z)) Lnil)) (Ap (Vr x) (Vr y)))"
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   335
  apply (simp add: alphas trm_lts.eq_iff fresh_star_def)
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   336
  done
2436
3885dc2669f9 cleaned up (almost completely) the examples
Christian Urban <urbanc@in.tum.de>
parents: 2120
diff changeset
   337
*)
1602
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   338
1600
e33e37fd4c7d More reorganization.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   339
end
e33e37fd4c7d More reorganization.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   340
e33e37fd4c7d More reorganization.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   341
e33e37fd4c7d More reorganization.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   342