Quot/Examples/LamEx.thy
author Christian Urban <urbanc@in.tum.de>
Fri, 15 Jan 2010 10:48:49 +0100
changeset 888 31c02dac5dd4
parent 887 d2660637e764
child 889 cff21786d952
permissions -rw-r--r--
recursion-hom for lambda
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
201
1ac36993cc71 added an example about lambda-terms
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     1
theory LamEx
758
3104d62e7a16 moved the QuotMain code into two ML-files
Christian Urban <urbanc@in.tum.de>
parents: 705
diff changeset
     2
imports Nominal "../QuotMain" "../QuotList"
201
1ac36993cc71 added an example about lambda-terms
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     3
begin
1ac36993cc71 added an example about lambda-terms
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     4
1ac36993cc71 added an example about lambda-terms
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     5
atom_decl name
1ac36993cc71 added an example about lambda-terms
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     6
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
     7
datatype rlam =
201
1ac36993cc71 added an example about lambda-terms
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     8
  rVar "name"
1ac36993cc71 added an example about lambda-terms
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     9
| rApp "rlam" "rlam"
1ac36993cc71 added an example about lambda-terms
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    10
| rLam "name" "rlam"
1ac36993cc71 added an example about lambda-terms
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    11
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
    12
fun
243
22715cab3995 added fv-function
Christian Urban <urbanc@in.tum.de>
parents: 240
diff changeset
    13
  rfv :: "rlam \<Rightarrow> name set"
22715cab3995 added fv-function
Christian Urban <urbanc@in.tum.de>
parents: 240
diff changeset
    14
where
22715cab3995 added fv-function
Christian Urban <urbanc@in.tum.de>
parents: 240
diff changeset
    15
  rfv_var: "rfv (rVar a) = {a}"
22715cab3995 added fv-function
Christian Urban <urbanc@in.tum.de>
parents: 240
diff changeset
    16
| rfv_app: "rfv (rApp t1 t2) = (rfv t1) \<union> (rfv t2)"
22715cab3995 added fv-function
Christian Urban <urbanc@in.tum.de>
parents: 240
diff changeset
    17
| rfv_lam: "rfv (rLam a t) = (rfv t) - {a}"
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
    18
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
    19
overloading
876
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 804
diff changeset
    20
  perm_rlam \<equiv> "perm :: 'x prm \<Rightarrow> rlam \<Rightarrow> rlam"   (unchecked)
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
    21
begin
243
22715cab3995 added fv-function
Christian Urban <urbanc@in.tum.de>
parents: 240
diff changeset
    22
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
    23
fun
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
    24
  perm_rlam
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
    25
where
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
    26
  "perm_rlam pi (rVar a) = rVar (pi \<bullet> a)"
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
    27
| "perm_rlam pi (rApp t1 t2) = rApp (perm_rlam pi t1) (perm_rlam pi t2)"
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
    28
| "perm_rlam pi (rLam a t) = rLam (pi \<bullet> a) (perm_rlam pi t)"
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
    29
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
    30
end
243
22715cab3995 added fv-function
Christian Urban <urbanc@in.tum.de>
parents: 240
diff changeset
    31
271
1b57f99737fe Alpha.induct now lifts automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 270
diff changeset
    32
inductive
246
6da7d538e5e0 changed the order of rfv and reformulated a3 with rfv
Christian Urban <urbanc@in.tum.de>
parents: 245
diff changeset
    33
  alpha :: "rlam \<Rightarrow> rlam \<Rightarrow> bool" ("_ \<approx> _" [100, 100] 100)
6da7d538e5e0 changed the order of rfv and reformulated a3 with rfv
Christian Urban <urbanc@in.tum.de>
parents: 245
diff changeset
    34
where
6da7d538e5e0 changed the order of rfv and reformulated a3 with rfv
Christian Urban <urbanc@in.tum.de>
parents: 245
diff changeset
    35
  a1: "a = b \<Longrightarrow> (rVar a) \<approx> (rVar b)"
6da7d538e5e0 changed the order of rfv and reformulated a3 with rfv
Christian Urban <urbanc@in.tum.de>
parents: 245
diff changeset
    36
| a2: "\<lbrakk>t1 \<approx> t2; s1 \<approx> s2\<rbrakk> \<Longrightarrow> rApp t1 s1 \<approx> rApp t2 s2"
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
    37
| a3: "\<lbrakk>t \<approx> ([(a,b)] \<bullet> s); a \<notin> rfv (rLam b t)\<rbrakk> \<Longrightarrow> rLam a t \<approx> rLam b s"
246
6da7d538e5e0 changed the order of rfv and reformulated a3 with rfv
Christian Urban <urbanc@in.tum.de>
parents: 245
diff changeset
    38
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
    39
lemma helper:
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
    40
  fixes t::"rlam"
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
    41
  and   a::"name"
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
    42
  shows "[(a, a)] \<bullet> t = t"
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
    43
by (induct t)
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
    44
   (auto simp add: calc_atm)
259
22c199522bef Optimization
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 258
diff changeset
    45
271
1b57f99737fe Alpha.induct now lifts automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 270
diff changeset
    46
lemma alpha_refl:
286
Christian Urban <urbanc@in.tum.de>
parents: 285
diff changeset
    47
  fixes t::"rlam"
Christian Urban <urbanc@in.tum.de>
parents: 285
diff changeset
    48
  shows "t \<approx> t"
Christian Urban <urbanc@in.tum.de>
parents: 285
diff changeset
    49
  apply(induct t rule: rlam.induct)
Christian Urban <urbanc@in.tum.de>
parents: 285
diff changeset
    50
  apply(simp add: a1)
Christian Urban <urbanc@in.tum.de>
parents: 285
diff changeset
    51
  apply(simp add: a2)
Christian Urban <urbanc@in.tum.de>
parents: 285
diff changeset
    52
  apply(rule a3)
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
    53
  apply(simp add: helper)
286
Christian Urban <urbanc@in.tum.de>
parents: 285
diff changeset
    54
  apply(simp)
Christian Urban <urbanc@in.tum.de>
parents: 285
diff changeset
    55
  done
Christian Urban <urbanc@in.tum.de>
parents: 285
diff changeset
    56
534
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 515
diff changeset
    57
lemma alpha_equivp:
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 515
diff changeset
    58
  shows "equivp alpha"
271
1b57f99737fe Alpha.induct now lifts automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 270
diff changeset
    59
sorry
1b57f99737fe Alpha.induct now lifts automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 270
diff changeset
    60
766
df053507edba renamed "quotient" command to "quotient_type"; needs new keyword file to be installed
Christian Urban <urbanc@in.tum.de>
parents: 758
diff changeset
    61
quotient_type lam = rlam / alpha
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
    62
  by (rule alpha_equivp)
201
1ac36993cc71 added an example about lambda-terms
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    63
203
7384115df9fd added equiv-thm to the quot_info
Christian Urban <urbanc@in.tum.de>
parents: 201
diff changeset
    64
767
37285ec4387d on suggestion of Tobias renamed "quotient_def" to "quotient_definition"; needs new keyword file
Christian Urban <urbanc@in.tum.de>
parents: 766
diff changeset
    65
quotient_definition
876
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 804
diff changeset
    66
  "Var :: name \<Rightarrow> lam"
705
f51c6069cd17 New syntax for definitions.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 663
diff changeset
    67
as
663
0dd10a900cae Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 636
diff changeset
    68
  "rVar"
229
13f985a93dbc fixed the definition of alpha; this *breaks* some of the experiments
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
    69
767
37285ec4387d on suggestion of Tobias renamed "quotient_def" to "quotient_definition"; needs new keyword file
Christian Urban <urbanc@in.tum.de>
parents: 766
diff changeset
    70
quotient_definition
705
f51c6069cd17 New syntax for definitions.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 663
diff changeset
    71
   "App :: lam \<Rightarrow> lam \<Rightarrow> lam"
f51c6069cd17 New syntax for definitions.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 663
diff changeset
    72
as
663
0dd10a900cae Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 636
diff changeset
    73
  "rApp"
229
13f985a93dbc fixed the definition of alpha; this *breaks* some of the experiments
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
    74
767
37285ec4387d on suggestion of Tobias renamed "quotient_def" to "quotient_definition"; needs new keyword file
Christian Urban <urbanc@in.tum.de>
parents: 766
diff changeset
    75
quotient_definition
876
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 804
diff changeset
    76
  "Lam :: name \<Rightarrow> lam \<Rightarrow> lam"
705
f51c6069cd17 New syntax for definitions.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 663
diff changeset
    77
as
663
0dd10a900cae Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 636
diff changeset
    78
  "rLam"
201
1ac36993cc71 added an example about lambda-terms
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    79
767
37285ec4387d on suggestion of Tobias renamed "quotient_def" to "quotient_definition"; needs new keyword file
Christian Urban <urbanc@in.tum.de>
parents: 766
diff changeset
    80
quotient_definition
876
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 804
diff changeset
    81
  "fv :: lam \<Rightarrow> name set"
705
f51c6069cd17 New syntax for definitions.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 663
diff changeset
    82
as
663
0dd10a900cae Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 636
diff changeset
    83
  "rfv"
243
22715cab3995 added fv-function
Christian Urban <urbanc@in.tum.de>
parents: 240
diff changeset
    84
229
13f985a93dbc fixed the definition of alpha; this *breaks* some of the experiments
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
    85
(* definition of overloaded permutation function *)
13f985a93dbc fixed the definition of alpha; this *breaks* some of the experiments
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
    86
(* for the lifted type lam                       *)
13f985a93dbc fixed the definition of alpha; this *breaks* some of the experiments
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
    87
overloading
268
4d58c02289ca simplified the quotient_def code; type of the defined constant must now be given; for-part eliminated
Christian Urban <urbanc@in.tum.de>
parents: 267
diff changeset
    88
  perm_lam \<equiv> "perm :: 'x prm \<Rightarrow> lam \<Rightarrow> lam"   (unchecked)
229
13f985a93dbc fixed the definition of alpha; this *breaks* some of the experiments
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
    89
begin
13f985a93dbc fixed the definition of alpha; this *breaks* some of the experiments
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
    90
767
37285ec4387d on suggestion of Tobias renamed "quotient_def" to "quotient_definition"; needs new keyword file
Christian Urban <urbanc@in.tum.de>
parents: 766
diff changeset
    91
quotient_definition
705
f51c6069cd17 New syntax for definitions.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 663
diff changeset
    92
   "perm_lam :: 'x prm \<Rightarrow> lam \<Rightarrow> lam"
f51c6069cd17 New syntax for definitions.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 663
diff changeset
    93
as
663
0dd10a900cae Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 636
diff changeset
    94
  "perm::'x prm \<Rightarrow> rlam \<Rightarrow> rlam"
229
13f985a93dbc fixed the definition of alpha; this *breaks* some of the experiments
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
    95
13f985a93dbc fixed the definition of alpha; this *breaks* some of the experiments
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
    96
end
13f985a93dbc fixed the definition of alpha; this *breaks* some of the experiments
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
    97
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
    98
(* lemmas that need to be lifted *)
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
    99
lemma pi_var_eqvt1:
229
13f985a93dbc fixed the definition of alpha; this *breaks* some of the experiments
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
   100
  fixes pi::"'x prm"
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   101
  shows "(pi \<bullet> rVar a) \<approx> rVar (pi \<bullet> a)"
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   102
  by (simp add: alpha_refl)
229
13f985a93dbc fixed the definition of alpha; this *breaks* some of the experiments
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
   103
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   104
lemma pi_var_eqvt2:
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   105
  fixes pi::"'x prm"
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   106
  shows "(pi \<bullet> rVar a) = rVar (pi \<bullet> a)"
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   107
  by (simp)
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   108
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   109
lemma pi_app_eqvt1:
229
13f985a93dbc fixed the definition of alpha; this *breaks* some of the experiments
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
   110
  fixes pi::"'x prm"
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   111
  shows "(pi \<bullet> rApp t1 t2) \<approx> rApp (pi \<bullet> t1) (pi \<bullet> t2)"
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   112
  by (simp add: alpha_refl)
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   113
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   114
lemma pi_app_eqvt2:
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   115
  fixes pi::"'x prm"
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   116
  shows "(pi \<bullet> rApp t1 t2) = rApp (pi \<bullet> t1) (pi \<bullet> t2)"
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   117
  by (simp)
229
13f985a93dbc fixed the definition of alpha; this *breaks* some of the experiments
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
   118
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   119
lemma pi_lam_eqvt1:
229
13f985a93dbc fixed the definition of alpha; this *breaks* some of the experiments
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
   120
  fixes pi::"'x prm"
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   121
  shows "(pi \<bullet> rLam a t) \<approx> rLam (pi \<bullet> a) (pi \<bullet> t)"
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   122
  by (simp add: alpha_refl)
229
13f985a93dbc fixed the definition of alpha; this *breaks* some of the experiments
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
   123
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   124
lemma pi_lam_eqvt2:
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   125
  fixes pi::"'x prm"
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   126
  shows "(pi \<bullet> rLam a t) = rLam (pi \<bullet> a) (pi \<bullet> t)"
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   127
  by (simp add: alpha)
451
586e3dc4afdb Added 'TRY' to refl in clean_tac to get as far as possible. Removed unnecessary [quot_rsp] in FSet. Added necessary [quot_rsp] and one lifted thm in LamEx.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 445
diff changeset
   128
586e3dc4afdb Added 'TRY' to refl in clean_tac to get as far as possible. Removed unnecessary [quot_rsp] in FSet. Added necessary [quot_rsp] and one lifted thm in LamEx.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 445
diff changeset
   129
201
1ac36993cc71 added an example about lambda-terms
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   130
lemma real_alpha:
451
586e3dc4afdb Added 'TRY' to refl in clean_tac to get as far as possible. Removed unnecessary [quot_rsp] in FSet. Added necessary [quot_rsp] and one lifted thm in LamEx.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 445
diff changeset
   131
  assumes a: "t = [(a,b)]\<bullet>s" "a\<sharp>[b].s"
201
1ac36993cc71 added an example about lambda-terms
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   132
  shows "Lam a t = Lam b s"
451
586e3dc4afdb Added 'TRY' to refl in clean_tac to get as far as possible. Removed unnecessary [quot_rsp] in FSet. Added necessary [quot_rsp] and one lifted thm in LamEx.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 445
diff changeset
   133
using a
586e3dc4afdb Added 'TRY' to refl in clean_tac to get as far as possible. Removed unnecessary [quot_rsp] in FSet. Added necessary [quot_rsp] and one lifted thm in LamEx.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 445
diff changeset
   134
unfolding fresh_def supp_def
217
9cc87d02190a First experiments with Lambda
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 203
diff changeset
   135
sorry
9cc87d02190a First experiments with Lambda
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 203
diff changeset
   136
636
520a4084d064 changed names of attributes
Christian Urban <urbanc@in.tum.de>
parents: 610
diff changeset
   137
lemma perm_rsp[quot_respect]:
286
Christian Urban <urbanc@in.tum.de>
parents: 285
diff changeset
   138
  "(op = ===> alpha ===> alpha) op \<bullet> op \<bullet>"
229
13f985a93dbc fixed the definition of alpha; this *breaks* some of the experiments
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
   139
  apply(auto)
13f985a93dbc fixed the definition of alpha; this *breaks* some of the experiments
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
   140
  (* this is propably true if some type conditions are imposed ;o) *)
13f985a93dbc fixed the definition of alpha; this *breaks* some of the experiments
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
   141
  sorry
13f985a93dbc fixed the definition of alpha; this *breaks* some of the experiments
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
   142
451
586e3dc4afdb Added 'TRY' to refl in clean_tac to get as far as possible. Removed unnecessary [quot_rsp] in FSet. Added necessary [quot_rsp] and one lifted thm in LamEx.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 445
diff changeset
   143
lemma fresh_rsp:
586e3dc4afdb Added 'TRY' to refl in clean_tac to get as far as possible. Removed unnecessary [quot_rsp] in FSet. Added necessary [quot_rsp] and one lifted thm in LamEx.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 445
diff changeset
   144
  "(op = ===> alpha ===> op =) fresh fresh"
229
13f985a93dbc fixed the definition of alpha; this *breaks* some of the experiments
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
   145
  apply(auto)
13f985a93dbc fixed the definition of alpha; this *breaks* some of the experiments
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
   146
  (* this is probably only true if some type conditions are imposed *)
13f985a93dbc fixed the definition of alpha; this *breaks* some of the experiments
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
   147
  sorry
13f985a93dbc fixed the definition of alpha; this *breaks* some of the experiments
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
   148
636
520a4084d064 changed names of attributes
Christian Urban <urbanc@in.tum.de>
parents: 610
diff changeset
   149
lemma rVar_rsp[quot_respect]:
451
586e3dc4afdb Added 'TRY' to refl in clean_tac to get as far as possible. Removed unnecessary [quot_rsp] in FSet. Added necessary [quot_rsp] and one lifted thm in LamEx.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 445
diff changeset
   150
  "(op = ===> alpha) rVar rVar"
876
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 804
diff changeset
   151
  by (auto intro: a1)
234
811f17de4031 Lifting of the 3 lemmas in LamEx
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 233
diff changeset
   152
636
520a4084d064 changed names of attributes
Christian Urban <urbanc@in.tum.de>
parents: 610
diff changeset
   153
lemma rApp_rsp[quot_respect]: "(alpha ===> alpha ===> alpha) rApp rApp"
876
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 804
diff changeset
   154
  by (auto intro: a2)
234
811f17de4031 Lifting of the 3 lemmas in LamEx
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 233
diff changeset
   155
636
520a4084d064 changed names of attributes
Christian Urban <urbanc@in.tum.de>
parents: 610
diff changeset
   156
lemma rLam_rsp[quot_respect]: "(op = ===> alpha ===> alpha) rLam rLam"
229
13f985a93dbc fixed the definition of alpha; this *breaks* some of the experiments
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
   157
  apply(auto)
13f985a93dbc fixed the definition of alpha; this *breaks* some of the experiments
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
   158
  apply(rule a3)
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   159
  apply(simp add: helper)
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   160
  apply(simp)
229
13f985a93dbc fixed the definition of alpha; this *breaks* some of the experiments
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
   161
  done
217
9cc87d02190a First experiments with Lambda
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 203
diff changeset
   162
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   163
lemma rfv_rsp[quot_respect]: 
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   164
  "(alpha ===> op =) rfv rfv"
247
e83a6e452843 Lemmas about fv.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 246
diff changeset
   165
  sorry
217
9cc87d02190a First experiments with Lambda
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 203
diff changeset
   166
285
8ebdef196fd5 Infrastructure for polymorphic types
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 273
diff changeset
   167
lemma rvar_inject: "rVar a \<approx> rVar b = (a = b)"
876
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 804
diff changeset
   168
  apply (auto)
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 804
diff changeset
   169
  apply (erule alpha.cases)
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 804
diff changeset
   170
  apply (simp_all add: rlam.inject alpha_refl)
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 804
diff changeset
   171
  done
237
80f1df49b940 More tests in Lam
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 234
diff changeset
   172
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   173
lemma pi_var1:
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   174
  fixes pi::"'x prm"
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   175
  shows "pi \<bullet> Var a = Var (pi \<bullet> a)"
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   176
  by (lifting pi_var_eqvt1)
370
09e28d4c19aa Lambda & SOLVED' for new quotient_tac
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 292
diff changeset
   177
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   178
lemma pi_var2:
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   179
  fixes pi::"'x prm"
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   180
  shows "pi \<bullet> Var a = Var (pi \<bullet> a)"
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   181
  by (lifting pi_var_eqvt2)
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   182
376
e99c0334d8bf lambda_prs and cleaning the existing examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 370
diff changeset
   183
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   184
lemma pi_app: 
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   185
  fixes pi::"'x prm"
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   186
  shows "pi \<bullet> App t1 t2 = App (pi \<bullet> t1) (pi \<bullet> t2)"
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   187
  by (lifting pi_app_eqvt2)
249
7dec34d12328 added some facts about fresh and support of lam
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   188
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   189
lemma pi_lam: 
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   190
  fixes pi::"'x prm"
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   191
  shows "pi \<bullet> Lam a t = Lam (pi \<bullet> a) (pi \<bullet> t)"
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   192
  by (lifting pi_lam_eqvt2)
376
e99c0334d8bf lambda_prs and cleaning the existing examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 370
diff changeset
   193
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   194
lemma fv_var: 
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   195
  shows "fv (Var a) = {a}"
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   196
  by  (lifting rfv_var)
249
7dec34d12328 added some facts about fresh and support of lam
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   197
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   198
lemma fv_app: 
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   199
  shows "fv (App t1 t2) = fv t1 \<union> fv t2"
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   200
  by (lifting rfv_app)
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   201
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   202
lemma fv_lam: 
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   203
  shows "fv (Lam a t) = fv t - {a}"
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   204
  by (lifting rfv_lam)
376
e99c0334d8bf lambda_prs and cleaning the existing examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 370
diff changeset
   205
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   206
lemma a1: 
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   207
  "a = b \<Longrightarrow> Var a = Var b"
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   208
  by  (lifting a1)
376
e99c0334d8bf lambda_prs and cleaning the existing examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 370
diff changeset
   209
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   210
lemma a2: 
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   211
  "\<lbrakk>x = xa; xb = xc\<rbrakk> \<Longrightarrow> App x xb = App xa xc"
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   212
  by  (lifting a2)
376
e99c0334d8bf lambda_prs and cleaning the existing examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 370
diff changeset
   213
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   214
lemma a3: 
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   215
  "\<lbrakk>x = [(a, b)] \<bullet> xa; a \<notin> fv (Lam b x)\<rbrakk> \<Longrightarrow> Lam a x = Lam b xa"
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   216
  by  (lifting a3)
286
Christian Urban <urbanc@in.tum.de>
parents: 285
diff changeset
   217
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   218
lemma alpha_cases: 
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   219
  "\<lbrakk>a1 = a2; \<And>a b. \<lbrakk>a1 = Var a; a2 = Var b; a = b\<rbrakk> \<Longrightarrow> P;
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   220
    \<And>x xa xb xc. \<lbrakk>a1 = App x xb; a2 = App xa xc; x = xa; xb = xc\<rbrakk> \<Longrightarrow> P;
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   221
    \<And>x a b xa. \<lbrakk>a1 = Lam a x; a2 = Lam b xa; x = [(a, b)] \<bullet> xa; a \<notin> fv (Lam b x)\<rbrakk> \<Longrightarrow> P\<rbrakk>
370
09e28d4c19aa Lambda & SOLVED' for new quotient_tac
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 292
diff changeset
   222
    \<Longrightarrow> P"
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   223
  by (lifting alpha.cases)
378
86fba2c4eeef All examples work again.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 376
diff changeset
   224
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   225
lemma alpha_induct: 
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   226
  "\<lbrakk>qx = qxa; \<And>a b. a = b \<Longrightarrow> qxb (Var a) (Var b);
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   227
    \<And>x xa xb xc. \<lbrakk>x = xa; qxb x xa; xb = xc; qxb xb xc\<rbrakk> \<Longrightarrow> qxb (App x xb) (App xa xc);
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   228
     \<And>x a b xa.
370
09e28d4c19aa Lambda & SOLVED' for new quotient_tac
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 292
diff changeset
   229
        \<lbrakk>x = [(a, b)] \<bullet> xa; qxb x ([(a, b)] \<bullet> xa); a \<notin> fv (Lam b x)\<rbrakk> \<Longrightarrow> qxb (Lam a x) (Lam b xa)\<rbrakk>
09e28d4c19aa Lambda & SOLVED' for new quotient_tac
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 292
diff changeset
   230
    \<Longrightarrow> qxb qx qxa"
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   231
  by (lifting alpha.induct)
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   232
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   233
lemma var_inject: 
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   234
  "(Var a = Var b) = (a = b)"
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   235
  by (lifting rvar_inject)
252
e30997c88050 Regularize for equalities and a better tactic. "alpha.cases" now lifts.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 251
diff changeset
   236
883
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   237
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   238
lemma app_inject: 
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   239
  "(App t1 t2 = App s1 s2) = (t1 = s1 \<and> t2 = s2)"
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   240
sorry
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   241
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   242
lemma var_supp1:
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   243
  shows "(supp (Var a)) = ((supp a)::name set)"
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   244
apply(simp add: supp_def pi_var1 var_inject)
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   245
done
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   246
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   247
lemma var_supp:
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   248
  shows "(supp (Var a)) = {a::name}"
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   249
using var_supp1
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   250
apply(simp add: supp_atm)
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   251
done
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   252
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   253
lemma app_supp:
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   254
  shows "supp (App t1 t2) = (supp t1) \<union> ((supp t2)::name set)"
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   255
apply(simp only: supp_def pi_app app_inject)
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   256
apply(simp add: Collect_imp_eq Collect_neg_eq)
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   257
done
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   258
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   259
lemma lam_supp:
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   260
  shows "supp (Lam x t) = ((supp ([x].t))::name set)"
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   261
apply(simp add: supp_def pi_lam)
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   262
sorry
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   263
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   264
lemma lam_induct:
877
09a64cb04851 exported absrep_const for nitpick.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 876
diff changeset
   265
  "\<lbrakk>\<And>name. P (Var name);
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   266
    \<And>lam1 lam2. \<lbrakk>P lam1; P lam2\<rbrakk> \<Longrightarrow> P (App lam1 lam2);
878
c3662f845129 setup for strong induction
Christian Urban <urbanc@in.tum.de>
parents: 877
diff changeset
   267
    \<And>name lam. P lam \<Longrightarrow> P (Lam name lam)\<rbrakk> 
c3662f845129 setup for strong induction
Christian Urban <urbanc@in.tum.de>
parents: 877
diff changeset
   268
    \<Longrightarrow> P lam"
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   269
  by (lifting rlam.induct)
451
586e3dc4afdb Added 'TRY' to refl in clean_tac to get as far as possible. Removed unnecessary [quot_rsp] in FSet. Added necessary [quot_rsp] and one lifted thm in LamEx.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 445
diff changeset
   270
878
c3662f845129 setup for strong induction
Christian Urban <urbanc@in.tum.de>
parents: 877
diff changeset
   271
instance lam::pt_name
c3662f845129 setup for strong induction
Christian Urban <urbanc@in.tum.de>
parents: 877
diff changeset
   272
apply(default)
883
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   273
apply(induct_tac x rule: lam_induct)
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   274
apply(simp add: pi_var1)
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   275
apply(simp add: pi_app)
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   276
apply(simp add: pi_lam)
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   277
apply(induct_tac x rule: lam_induct)
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   278
apply(simp add: pi_var1 pt_name2)
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   279
apply(simp add: pi_app)
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   280
apply(simp add: pi_lam pt_name2)
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   281
apply(induct_tac x rule: lam_induct)
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   282
apply(simp add: pi_var1 pt_name3)
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   283
apply(simp add: pi_app)
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   284
apply(simp add: pi_lam pt_name3)
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   285
done
878
c3662f845129 setup for strong induction
Christian Urban <urbanc@in.tum.de>
parents: 877
diff changeset
   286
c3662f845129 setup for strong induction
Christian Urban <urbanc@in.tum.de>
parents: 877
diff changeset
   287
instance lam::fs_name
c3662f845129 setup for strong induction
Christian Urban <urbanc@in.tum.de>
parents: 877
diff changeset
   288
apply(default)
883
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   289
apply(induct_tac x rule: lam_induct)
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   290
apply(simp add: var_supp)
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   291
apply(simp add: app_supp)
877
09a64cb04851 exported absrep_const for nitpick.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 876
diff changeset
   292
sorry
09a64cb04851 exported absrep_const for nitpick.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 876
diff changeset
   293
881
2cc520457e37 nearly all of the proof
Christian Urban <urbanc@in.tum.de>
parents: 880
diff changeset
   294
lemma fresh_lam:
2cc520457e37 nearly all of the proof
Christian Urban <urbanc@in.tum.de>
parents: 880
diff changeset
   295
  "(a \<sharp> Lam b t) \<longleftrightarrow> (a = b) \<or> (a \<noteq> b \<and> a \<sharp> t)"
883
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   296
apply(simp add: fresh_def)
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   297
apply(simp add: lam_supp abs_supp)
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   298
apply(auto)
99e811fc1366 a few more lemmas...except supp of lambda-abstractions
Christian Urban <urbanc@in.tum.de>
parents: 882
diff changeset
   299
done
881
2cc520457e37 nearly all of the proof
Christian Urban <urbanc@in.tum.de>
parents: 880
diff changeset
   300
877
09a64cb04851 exported absrep_const for nitpick.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 876
diff changeset
   301
lemma lam_induct_strong:
878
c3662f845129 setup for strong induction
Christian Urban <urbanc@in.tum.de>
parents: 877
diff changeset
   302
  fixes a::"'a::fs_name"
879
f2a1ebba9bdc First subgoal.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 878
diff changeset
   303
  assumes a1: "\<And>name b. P b (Var name)"
f2a1ebba9bdc First subgoal.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 878
diff changeset
   304
  and     a2: "\<And>lam1 lam2 b. \<lbrakk>\<And>c. P c lam1; \<And>c. P c lam2\<rbrakk> \<Longrightarrow> P b (App lam1 lam2)"
881
2cc520457e37 nearly all of the proof
Christian Urban <urbanc@in.tum.de>
parents: 880
diff changeset
   305
  and     a3: "\<And>name lam b. \<lbrakk>\<And>c. P c lam; name \<sharp> b\<rbrakk> \<Longrightarrow> P b (Lam name lam)"
879
f2a1ebba9bdc First subgoal.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 878
diff changeset
   306
  shows "P a lam"
878
c3662f845129 setup for strong induction
Christian Urban <urbanc@in.tum.de>
parents: 877
diff changeset
   307
proof -
880
cd3f1409780a right generalisation
Christian Urban <urbanc@in.tum.de>
parents: 879
diff changeset
   308
  have "\<And>(pi::name prm) a. P a (pi \<bullet> lam)" 
878
c3662f845129 setup for strong induction
Christian Urban <urbanc@in.tum.de>
parents: 877
diff changeset
   309
  proof (induct lam rule: lam_induct)
c3662f845129 setup for strong induction
Christian Urban <urbanc@in.tum.de>
parents: 877
diff changeset
   310
    case (1 name pi)
879
f2a1ebba9bdc First subgoal.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 878
diff changeset
   311
    show "P a (pi \<bullet> Var name)"
f2a1ebba9bdc First subgoal.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 878
diff changeset
   312
      apply (simp only: pi_var1)
f2a1ebba9bdc First subgoal.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 878
diff changeset
   313
      apply (rule a1)
f2a1ebba9bdc First subgoal.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 878
diff changeset
   314
      done
878
c3662f845129 setup for strong induction
Christian Urban <urbanc@in.tum.de>
parents: 877
diff changeset
   315
  next
c3662f845129 setup for strong induction
Christian Urban <urbanc@in.tum.de>
parents: 877
diff changeset
   316
    case (2 lam1 lam2 pi)
880
cd3f1409780a right generalisation
Christian Urban <urbanc@in.tum.de>
parents: 879
diff changeset
   317
    have b1: "\<And>(pi::name prm) a. P a (pi \<bullet> lam1)" by fact
cd3f1409780a right generalisation
Christian Urban <urbanc@in.tum.de>
parents: 879
diff changeset
   318
    have b2: "\<And>(pi::name prm) a. P a (pi \<bullet> lam2)" by fact
879
f2a1ebba9bdc First subgoal.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 878
diff changeset
   319
    show "P a (pi \<bullet> App lam1 lam2)"
f2a1ebba9bdc First subgoal.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 878
diff changeset
   320
      apply (simp only: pi_app)
f2a1ebba9bdc First subgoal.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 878
diff changeset
   321
      apply (rule a2)
880
cd3f1409780a right generalisation
Christian Urban <urbanc@in.tum.de>
parents: 879
diff changeset
   322
      apply (rule b1)
cd3f1409780a right generalisation
Christian Urban <urbanc@in.tum.de>
parents: 879
diff changeset
   323
      apply (rule b2)
cd3f1409780a right generalisation
Christian Urban <urbanc@in.tum.de>
parents: 879
diff changeset
   324
      done
878
c3662f845129 setup for strong induction
Christian Urban <urbanc@in.tum.de>
parents: 877
diff changeset
   325
  next
881
2cc520457e37 nearly all of the proof
Christian Urban <urbanc@in.tum.de>
parents: 880
diff changeset
   326
    case (3 name lam pi a)
2cc520457e37 nearly all of the proof
Christian Urban <urbanc@in.tum.de>
parents: 880
diff changeset
   327
    have b: "\<And>(pi::name prm) a. P a (pi \<bullet> lam)" by fact
882
6a8858ba01f6 removed one sorry
Christian Urban <urbanc@in.tum.de>
parents: 881
diff changeset
   328
    obtain c::name where fr: "c\<sharp>(a, pi\<bullet>name, pi\<bullet>lam)"
6a8858ba01f6 removed one sorry
Christian Urban <urbanc@in.tum.de>
parents: 881
diff changeset
   329
      apply(rule exists_fresh[of "(a, pi\<bullet>name, pi\<bullet>lam)"])
6a8858ba01f6 removed one sorry
Christian Urban <urbanc@in.tum.de>
parents: 881
diff changeset
   330
      apply(simp_all add: fs_name1)
6a8858ba01f6 removed one sorry
Christian Urban <urbanc@in.tum.de>
parents: 881
diff changeset
   331
      done
881
2cc520457e37 nearly all of the proof
Christian Urban <urbanc@in.tum.de>
parents: 880
diff changeset
   332
    from b fr have p: "P a (Lam c (([(c, pi\<bullet>name)]@pi)\<bullet>lam))" 
2cc520457e37 nearly all of the proof
Christian Urban <urbanc@in.tum.de>
parents: 880
diff changeset
   333
      apply -
2cc520457e37 nearly all of the proof
Christian Urban <urbanc@in.tum.de>
parents: 880
diff changeset
   334
      apply(rule a3)
2cc520457e37 nearly all of the proof
Christian Urban <urbanc@in.tum.de>
parents: 880
diff changeset
   335
      apply(blast)
2cc520457e37 nearly all of the proof
Christian Urban <urbanc@in.tum.de>
parents: 880
diff changeset
   336
      apply(simp)
2cc520457e37 nearly all of the proof
Christian Urban <urbanc@in.tum.de>
parents: 880
diff changeset
   337
      done
2cc520457e37 nearly all of the proof
Christian Urban <urbanc@in.tum.de>
parents: 880
diff changeset
   338
    have eq: "[(c, pi\<bullet>name)] \<bullet> Lam (pi \<bullet> name) (pi \<bullet> lam) = Lam (pi \<bullet> name) (pi \<bullet> lam)"
2cc520457e37 nearly all of the proof
Christian Urban <urbanc@in.tum.de>
parents: 880
diff changeset
   339
      apply(rule perm_fresh_fresh)
2cc520457e37 nearly all of the proof
Christian Urban <urbanc@in.tum.de>
parents: 880
diff changeset
   340
      using fr
2cc520457e37 nearly all of the proof
Christian Urban <urbanc@in.tum.de>
parents: 880
diff changeset
   341
      apply(simp add: fresh_lam)
2cc520457e37 nearly all of the proof
Christian Urban <urbanc@in.tum.de>
parents: 880
diff changeset
   342
      apply(simp add: fresh_lam)
2cc520457e37 nearly all of the proof
Christian Urban <urbanc@in.tum.de>
parents: 880
diff changeset
   343
      done
879
f2a1ebba9bdc First subgoal.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 878
diff changeset
   344
    show "P a (pi \<bullet> Lam name lam)" 
f2a1ebba9bdc First subgoal.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 878
diff changeset
   345
      apply (simp add: pi_lam)
881
2cc520457e37 nearly all of the proof
Christian Urban <urbanc@in.tum.de>
parents: 880
diff changeset
   346
      apply(subst eq[symmetric])
2cc520457e37 nearly all of the proof
Christian Urban <urbanc@in.tum.de>
parents: 880
diff changeset
   347
      using p
2cc520457e37 nearly all of the proof
Christian Urban <urbanc@in.tum.de>
parents: 880
diff changeset
   348
      apply(simp only: pi_lam pt_name2 swap_simps)
2cc520457e37 nearly all of the proof
Christian Urban <urbanc@in.tum.de>
parents: 880
diff changeset
   349
      done
878
c3662f845129 setup for strong induction
Christian Urban <urbanc@in.tum.de>
parents: 877
diff changeset
   350
  qed
c3662f845129 setup for strong induction
Christian Urban <urbanc@in.tum.de>
parents: 877
diff changeset
   351
  then have "P a (([]::name prm) \<bullet> lam)" by blast
c3662f845129 setup for strong induction
Christian Urban <urbanc@in.tum.de>
parents: 877
diff changeset
   352
  then show "P a lam" by simp 
c3662f845129 setup for strong induction
Christian Urban <urbanc@in.tum.de>
parents: 877
diff changeset
   353
qed
877
09a64cb04851 exported absrep_const for nitpick.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 876
diff changeset
   354
09a64cb04851 exported absrep_const for nitpick.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 876
diff changeset
   355
249
7dec34d12328 added some facts about fresh and support of lam
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   356
lemma var_fresh:
7dec34d12328 added some facts about fresh and support of lam
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   357
  fixes a::"name"
804
Christian Urban <urbanc@in.tum.de>
parents: 767
diff changeset
   358
  shows "(a \<sharp> (Var b)) = (a \<sharp> b)"
249
7dec34d12328 added some facts about fresh and support of lam
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   359
  apply(simp add: fresh_def)
884
e49c6b6f37f4 tuned quotient_def.ML and cleaned somewhat LamEx.thy
Christian Urban <urbanc@in.tum.de>
parents: 883
diff changeset
   360
  apply(simp add: var_supp1)
249
7dec34d12328 added some facts about fresh and support of lam
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   361
  done
247
e83a6e452843 Lemmas about fv.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 246
diff changeset
   362
887
d2660637e764 Incorrect version of the homomorphism lemma
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 884
diff changeset
   363
d2660637e764 Incorrect version of the homomorphism lemma
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 884
diff changeset
   364
lemma "
888
31c02dac5dd4 recursion-hom for lambda
Christian Urban <urbanc@in.tum.de>
parents: 887
diff changeset
   365
  \<exists>hom \<in> Respects(alpha ===> op =). (
31c02dac5dd4 recursion-hom for lambda
Christian Urban <urbanc@in.tum.de>
parents: 887
diff changeset
   366
    (\<forall>x. hom (rVar x) = f_var x) \<and>
31c02dac5dd4 recursion-hom for lambda
Christian Urban <urbanc@in.tum.de>
parents: 887
diff changeset
   367
    (\<forall>l r. hom (rApp l r) = f_app l r (hom l) (hom r)) \<and>
31c02dac5dd4 recursion-hom for lambda
Christian Urban <urbanc@in.tum.de>
parents: 887
diff changeset
   368
    (\<forall>x a. hom (rLam a x) = f_lam (\<lambda>b. ([(a,b)]\<bullet> x)) (\<lambda>b. hom ([(a,b)] \<bullet> x)))
887
d2660637e764 Incorrect version of the homomorphism lemma
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 884
diff changeset
   369
  )"
d2660637e764 Incorrect version of the homomorphism lemma
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 884
diff changeset
   370
663
0dd10a900cae Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 636
diff changeset
   371
end