Nominal/Ex/Let.thy
author Christian Urban <urbanc@in.tum.de>
Wed, 29 Jun 2011 16:44:54 +0100
changeset 2924 06bf338e3215
parent 2923 6d46f7ea1661
child 2925 b4404b13f775
permissions -rw-r--r--
merged
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
2924
Christian Urban <urbanc@in.tum.de>
parents: 2923
diff changeset
    21
print_theorems
Christian Urban <urbanc@in.tum.de>
parents: 2923
diff changeset
    22
Christian Urban <urbanc@in.tum.de>
parents: 2923
diff changeset
    23
thm alpha_trm_raw_alpha_assn_raw_alpha_bn_raw.intros
Christian Urban <urbanc@in.tum.de>
parents: 2923
diff changeset
    24
thm bn_raw.simps
Christian Urban <urbanc@in.tum.de>
parents: 2923
diff changeset
    25
thm permute_bn_raw.simps
Christian Urban <urbanc@in.tum.de>
parents: 2923
diff changeset
    26
thm trm_assn.perm_bn_alpha
Christian Urban <urbanc@in.tum.de>
parents: 2923
diff changeset
    27
thm trm_assn.permute_bn
Christian Urban <urbanc@in.tum.de>
parents: 2923
diff changeset
    28
2490
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    29
thm trm_assn.fv_defs
2924
Christian Urban <urbanc@in.tum.de>
parents: 2923
diff changeset
    30
thm trm_assn.eq_iff 
2490
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    31
thm trm_assn.bn_defs
2922
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
    32
thm trm_assn.bn_inducts
2490
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    33
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
    34
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
    35
thm trm_assn.inducts
2490
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    36
thm trm_assn.distinct
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    37
thm trm_assn.supp
2493
2e174807c891 added postprocessed fresh-lemmas for constructors
Christian Urban <urbanc@in.tum.de>
parents: 2492
diff changeset
    38
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
    39
thm trm_assn.exhaust
e44551d067e6 properly exported strong exhaust theorem; cleaned up some examples
Christian Urban <urbanc@in.tum.de>
parents: 2562
diff changeset
    40
thm trm_assn.strong_exhaust
2494
11133eb76f61 added Foo1 to explore a contrived example
Christian Urban <urbanc@in.tum.de>
parents: 2493
diff changeset
    41
2923
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    42
lemma alpha_bn_inducts_raw:
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    43
  "\<lbrakk>alpha_bn_raw a b; P3 ANil_raw ANil_raw;
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    44
 \<And>trm_raw trm_rawa assn_raw assn_rawa name namea.
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    45
    \<lbrakk>alpha_trm_raw trm_raw trm_rawa; alpha_bn_raw assn_raw assn_rawa;
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    46
     P3 assn_raw assn_rawa\<rbrakk>
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    47
    \<Longrightarrow> P3 (ACons_raw name trm_raw assn_raw)
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    48
        (ACons_raw namea trm_rawa assn_rawa)\<rbrakk> \<Longrightarrow> P3 a b"
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    49
  by (erule alpha_trm_raw_alpha_assn_raw_alpha_bn_raw.inducts(3)[of _ _ "\<lambda>x y. True" _ "\<lambda>x y. True", simplified]) auto
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    50
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    51
lemmas alpha_bn_inducts = alpha_bn_inducts_raw[quot_lifted]
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    52
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    53
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    54
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    55
lemma alpha_bn_refl: "alpha_bn x x"
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    56
  by (induct x rule: trm_assn.inducts(2))
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    57
     (rule TrueI, auto simp add: trm_assn.eq_iff)
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    58
lemma alpha_bn_sym: "alpha_bn x y \<Longrightarrow> alpha_bn y x"
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    59
  sorry
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    60
lemma alpha_bn_trans: "alpha_bn x y \<Longrightarrow> alpha_bn y z \<Longrightarrow> alpha_bn x z"
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    61
  sorry
2922
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
    62
2923
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    63
lemma bn_inj[rule_format]:
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    64
  assumes a: "alpha_bn x y"
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    65
  shows "bn x = bn y \<longrightarrow> x = y"
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    66
  by (rule alpha_bn_inducts[OF a]) (simp_all add: trm_assn.bn_defs)
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    67
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    68
(*lemma alpha_bn_permute:
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    69
  assumes a: "alpha_bn x y"
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    70
      and b: "q \<bullet> bn x = r \<bullet> bn y"
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    71
    shows "alpha_bn (q \<bullet> x) (r \<bullet> y)"
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    72
proof -
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    73
  have "alpha_bn x (permute_bn r y)"
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    74
    by (rule alpha_bn_trans[OF a]) (rule trm_assn.perm_bn_alpha)
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    75
  then have "alpha_bn (permute_bn r y) x"
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    76
    by (rule alpha_bn_sym)
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    77
  then have "alpha_bn (permute_bn r y) (permute_bn q x)"
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    78
    by (rule alpha_bn_trans) (rule trm_assn.perm_bn_alpha)
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    79
  then have "alpha_bn (permute_bn q x) (permute_bn r y)"
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    80
    by (rule alpha_bn_sym)
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    81
  moreover have "bn (permute_bn q x) = bn (permute_bn r y)"
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    82
    using b trm_assn.permute_bn by simp
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    83
  ultimately have "permute_bn q x = permute_bn r y"
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    84
    using bn_inj by simp
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    85
*)
2670
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
    86
1602
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
    87
lemma lets_bla:
2670
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
    88
  "x \<noteq> z \<Longrightarrow> y \<noteq> z \<Longrightarrow> x \<noteq> y \<Longrightarrow>(Let (ACons x (Var y) ANil) (Var x)) \<noteq> (Let (ACons x (Var z) ANil) (Var x))"
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
    89
  by (simp add: trm_assn.eq_iff)
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
    90
1602
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
    91
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
    92
lemma lets_ok:
2670
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
    93
  "(Let (ACons x (Var y) ANil) (Var x)) = (Let (ACons y (Var y) ANil) (Var y))"
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
    94
  apply (simp add: trm_assn.eq_iff Abs_eq_iff )
1602
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
    95
  apply (rule_tac x="(x \<leftrightarrow> y)" in exI)
2670
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
    96
  apply (simp_all add: alphas atom_eqvt supp_at_base fresh_star_def trm_assn.bn_defs trm_assn.supp)
1602
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
    97
  done
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
    98
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
    99
lemma lets_ok3:
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   100
  "x \<noteq> y \<Longrightarrow>
2670
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   101
   (Let (ACons x (App (Var y) (Var x)) (ACons y (Var y) ANil)) (App (Var x) (Var y))) \<noteq>
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   102
   (Let (ACons y (App (Var x) (Var y)) (ACons x (Var x) ANil)) (App (Var x) (Var y)))"
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   103
  apply (simp add: trm_assn.eq_iff)
1602
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   104
  done
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   105
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   106
lemma lets_not_ok1:
1685
721d92623c9d Lets finally abstract lists.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1658
diff changeset
   107
  "x \<noteq> y \<Longrightarrow>
2670
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   108
   (Let (ACons x (Var x) (ACons y (Var y) ANil)) (App (Var x) (Var y))) \<noteq>
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   109
   (Let (ACons y (Var x) (ACons x (Var y) ANil)) (App (Var x) (Var y)))"
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   110
  apply (simp add: alphas trm_assn.eq_iff trm_assn.supp fresh_star_def atom_eqvt Abs_eq_iff trm_assn.bn_defs)
1602
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   111
  done
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   112
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   113
lemma lets_nok:
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   114
  "x \<noteq> y \<Longrightarrow> x \<noteq> z \<Longrightarrow> z \<noteq> y \<Longrightarrow>
2670
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   115
   (Let (ACons x (App (Var z) (Var z)) (ACons y (Var z) ANil)) (App (Var x) (Var y))) \<noteq>
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   116
   (Let (ACons y (Var z) (ACons x (App (Var z) (Var z)) ANil)) (App (Var x) (Var y)))"
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   117
  apply (simp add: alphas trm_assn.eq_iff fresh_star_def trm_assn.bn_defs Abs_eq_iff trm_assn.supp trm_assn.distinct)
1602
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   118
  done
2670
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   119
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   120
lemma
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   121
  fixes a b c :: name
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   122
  assumes x: "a \<noteq> c" and y: "b \<noteq> c"
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   123
  shows "\<exists>p.([atom a], Var c) \<approx>lst (op =) supp p ([atom b], Var c)"
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   124
  apply (rule_tac x="(a \<leftrightarrow> b)" in exI)
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   125
  apply (simp add: alphas trm_assn.supp supp_at_base x y fresh_star_def atom_eqvt)
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   126
  by (metis Rep_name_inverse atom_name_def flip_fresh_fresh fresh_atom fresh_perm x y)
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   127
2924
Christian Urban <urbanc@in.tum.de>
parents: 2923
diff changeset
   128
2854
b577f06e0804 one TODO and one Problem?
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2842
diff changeset
   129
lemma max_eqvt[eqvt]: "p \<bullet> (max (a :: _ :: pure) b) = max (p \<bullet> a) (p \<bullet> b)"
b577f06e0804 one TODO and one Problem?
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2842
diff changeset
   130
  by (simp add: permute_pure)
b577f06e0804 one TODO and one Problem?
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2842
diff changeset
   131
2924
Christian Urban <urbanc@in.tum.de>
parents: 2923
diff changeset
   132
(* TODO: should be provided by nominal *)
Christian Urban <urbanc@in.tum.de>
parents: 2923
diff changeset
   133
lemmas [eqvt] = trm_assn.fv_bn_eqvt
Christian Urban <urbanc@in.tum.de>
parents: 2923
diff changeset
   134
thm trm_assn.fv_bn_eqvt
Christian Urban <urbanc@in.tum.de>
parents: 2923
diff changeset
   135
Christian Urban <urbanc@in.tum.de>
parents: 2923
diff changeset
   136
Christian Urban <urbanc@in.tum.de>
parents: 2923
diff changeset
   137
thm Abs_lst_fcb
Christian Urban <urbanc@in.tum.de>
parents: 2923
diff changeset
   138
2921
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   139
lemma Abs_lst_fcb2:
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   140
  fixes as bs :: "'a :: fs"
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   141
    and x y :: "'b :: fs"
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   142
    and c::"'c::fs"
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   143
  assumes eq: "[ba as]lst. x = [ba bs]lst. y"
2922
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   144
  and fcb1: "set (ba as) \<sharp>* f as x c"
2921
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   145
  and fresh1: "set (ba as) \<sharp>* c"
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   146
  and fresh2: "set (ba bs) \<sharp>* c"
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   147
  and perm1: "\<And>p. supp p \<sharp>* c \<Longrightarrow> p \<bullet> (f as x c) = f (p \<bullet> as) (p \<bullet> x) c"
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   148
  and perm2: "\<And>p. supp p \<sharp>* c \<Longrightarrow> p \<bullet> (f bs y c) = f (p \<bullet> bs) (p \<bullet> y) c"
2923
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
   149
(* What we would like in this proof, and lets this proof finish *)
2924
Christian Urban <urbanc@in.tum.de>
parents: 2923
diff changeset
   150
  and ba_inj: "\<And>q r. q \<bullet> ba as = r \<bullet> ba bs \<Longrightarrow> q \<bullet> as = r \<bullet> bs"
2923
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
   151
(* What the user can supply with the help of alpha_bn *)
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
   152
(*  and bainj: "ba as = ba bs \<Longrightarrow> as = bs"*)
2921
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   153
  shows "f as x c = f bs y c"
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   154
proof -
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   155
  have "supp (as, x, c) supports (f as x c)"
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   156
    unfolding  supports_def fresh_def[symmetric]
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   157
    by (simp add: fresh_Pair perm1 fresh_star_def supp_swap swap_fresh_fresh)
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   158
  then have fin1: "finite (supp (f as x c))"
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   159
    by (auto intro: supports_finite simp add: finite_supp)
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   160
  have "supp (bs, y, c) supports (f bs y c)"
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   161
    unfolding  supports_def fresh_def[symmetric]
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   162
    by (simp add: fresh_Pair perm2 fresh_star_def supp_swap swap_fresh_fresh)
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   163
  then have fin2: "finite (supp (f bs y c))"
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   164
    by (auto intro: supports_finite simp add: finite_supp)
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   165
  obtain q::"perm" where 
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   166
    fr1: "(q \<bullet> (set (ba as))) \<sharp>* (x, c, f as x c, f bs y c)" and 
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   167
    fr2: "supp q \<sharp>* ([ba as]lst. x)" and 
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   168
    inc: "supp q \<subseteq> (set (ba as)) \<union> q \<bullet> (set (ba as))"
2922
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   169
    using at_set_avoiding3[where xs="set (ba as)" and c="(x, c, f as x c, f bs y c)" 
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   170
      and x="[ba as]lst. x"]  fin1 fin2
2921
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   171
    by (auto simp add: supp_Pair finite_supp Abs_fresh_star dest: fresh_star_supp_conv)
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   172
  have "[q \<bullet> (ba as)]lst. (q \<bullet> x) = q \<bullet> ([ba as]lst. x)" by simp
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   173
  also have "\<dots> = [ba as]lst. x"
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   174
    by (simp only: fr2 perm_supp_eq)
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   175
  finally have "[q \<bullet> (ba as)]lst. (q \<bullet> x) = [ba bs]lst. y" using eq by simp
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   176
  then obtain r::perm where 
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   177
    qq1: "q \<bullet> x = r \<bullet> y" and 
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   178
    qq2: "q \<bullet> (ba as) = r \<bullet> (ba bs)" and 
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   179
    qq3: "supp r \<subseteq> (q \<bullet> (set (ba as))) \<union> set (ba bs)"
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   180
    apply(drule_tac sym)
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   181
    apply(simp only: Abs_eq_iff2 alphas)
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   182
    apply(erule exE)
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   183
    apply(erule conjE)+
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   184
    apply(drule_tac x="p" in meta_spec)
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   185
    apply(simp add: set_eqvt)
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   186
    apply(blast)
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   187
    done
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   188
  have "(set (ba as)) \<sharp>* f as x c" by (rule fcb1)
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   189
  then have "q \<bullet> ((set (ba as)) \<sharp>* f as x c)"
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   190
    by (simp add: permute_bool_def)
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   191
  then have "set (q \<bullet> (ba as)) \<sharp>* f (q \<bullet> as) (q \<bullet> x) c"
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   192
    apply(simp add: fresh_star_eqvt set_eqvt)
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   193
    apply(subst (asm) perm1)
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   194
    using inc fresh1 fr1
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   195
    apply(auto simp add: fresh_star_def fresh_Pair)
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   196
    done
2924
Christian Urban <urbanc@in.tum.de>
parents: 2923
diff changeset
   197
  then have "set (r \<bullet> (ba bs)) \<sharp>* f (r \<bullet> bs) (r \<bullet> y) c" using qq1 qq2 ba_inj 
2921
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   198
    by simp
2923
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
   199
  then have "r \<bullet> ((set (ba bs)) \<sharp>* f bs y c)"
2921
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   200
    apply(simp add: fresh_star_eqvt set_eqvt)
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   201
    apply(subst (asm) perm2[symmetric])
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   202
    using qq3 fresh2 fr1
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   203
    apply(auto simp add: set_eqvt fresh_star_def fresh_Pair)
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   204
    done
2923
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
   205
  then have fcb2: "(set (ba bs)) \<sharp>* f bs y c" by (simp add: permute_bool_def)
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
   206
  have "f as x c = q \<bullet> (f as x c)"
2921
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   207
    apply(rule perm_supp_eq[symmetric])
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   208
    using inc fcb1 fr1 by (auto simp add: fresh_star_def)
2923
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
   209
  also have "\<dots> = f (q \<bullet> as) (q \<bullet> x) c"
2921
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   210
    apply(rule perm1)
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   211
    using inc fresh1 fr1 by (auto simp add: fresh_star_def)
2924
Christian Urban <urbanc@in.tum.de>
parents: 2923
diff changeset
   212
  also have "\<dots> = f (r \<bullet> bs) (r \<bullet> y) c" using qq1 qq2 ba_inj by simp
2923
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
   213
  also have "\<dots> = r \<bullet> (f bs y c)"
2921
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   214
    apply(rule perm2[symmetric])
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   215
    using qq3 fresh2 fr1 by (auto simp add: fresh_star_def)
2923
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
   216
  also have "... = f bs y c"
2921
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   217
    apply(rule perm_supp_eq)
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   218
    using qq3 fr1 fcb2 by (auto simp add: fresh_star_def)
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   219
  finally show ?thesis by simp
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   220
qed
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   221
2854
b577f06e0804 one TODO and one Problem?
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2842
diff changeset
   222
nominal_primrec
b577f06e0804 one TODO and one Problem?
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2842
diff changeset
   223
    height_trm :: "trm \<Rightarrow> nat"
b577f06e0804 one TODO and one Problem?
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2842
diff changeset
   224
and height_assn :: "assn \<Rightarrow> nat"
b577f06e0804 one TODO and one Problem?
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2842
diff changeset
   225
where
b577f06e0804 one TODO and one Problem?
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2842
diff changeset
   226
  "height_trm (Var x) = 1"
b577f06e0804 one TODO and one Problem?
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2842
diff changeset
   227
| "height_trm (App l r) = max (height_trm l) (height_trm r)"
b577f06e0804 one TODO and one Problem?
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2842
diff changeset
   228
| "height_trm (Lam v b) = 1 + (height_trm b)"
b577f06e0804 one TODO and one Problem?
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2842
diff changeset
   229
| "height_trm (Let as b) = max (height_assn as) (height_trm b)"
b577f06e0804 one TODO and one Problem?
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2842
diff changeset
   230
| "height_assn ANil = 0"
b577f06e0804 one TODO and one Problem?
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2842
diff changeset
   231
| "height_assn (ACons v t as) = max (height_trm t) (height_assn as)"
b577f06e0804 one TODO and one Problem?
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2842
diff changeset
   232
  apply (simp only: eqvt_def height_trm_height_assn_graph_def)
b577f06e0804 one TODO and one Problem?
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2842
diff changeset
   233
  apply (rule, perm_simp, rule, rule TrueI)
b577f06e0804 one TODO and one Problem?
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2842
diff changeset
   234
  apply (case_tac x)
b577f06e0804 one TODO and one Problem?
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2842
diff changeset
   235
  apply (case_tac a rule: trm_assn.exhaust(1))
b577f06e0804 one TODO and one Problem?
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2842
diff changeset
   236
  apply (auto)[4]
b577f06e0804 one TODO and one Problem?
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2842
diff changeset
   237
  apply (drule_tac x="assn" in meta_spec)
b577f06e0804 one TODO and one Problem?
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2842
diff changeset
   238
  apply (drule_tac x="trm" in meta_spec)
b577f06e0804 one TODO and one Problem?
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2842
diff changeset
   239
  apply (simp add: alpha_bn_refl)
b577f06e0804 one TODO and one Problem?
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2842
diff changeset
   240
  apply (case_tac b rule: trm_assn.exhaust(2))
2922
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   241
  apply (auto)[2]
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   242
  apply(simp_all)
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   243
  apply (erule_tac c="()" in Abs_lst_fcb2)
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   244
  apply (simp_all add: pure_fresh fresh_star_def)[3]
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   245
  apply (simp add: eqvt_at_def)
2854
b577f06e0804 one TODO and one Problem?
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2842
diff changeset
   246
  apply (simp add: eqvt_at_def)
2923
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
   247
  apply assumption
2922
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   248
  apply(erule conjE)
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   249
  apply (simp add: meta_eq_to_obj_eq[OF height_trm_def, symmetric, unfolded fun_eq_iff])
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   250
  apply (simp add: meta_eq_to_obj_eq[OF height_assn_def, symmetric, unfolded fun_eq_iff])
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   251
  apply (subgoal_tac "eqvt_at height_assn as")
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   252
  apply (subgoal_tac "eqvt_at height_assn asa")
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   253
  apply (subgoal_tac "eqvt_at height_trm b")
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   254
  apply (subgoal_tac "eqvt_at height_trm ba")
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   255
  apply (thin_tac "eqvt_at height_trm_height_assn_sumC (Inr as)")
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   256
  apply (thin_tac "eqvt_at height_trm_height_assn_sumC (Inr asa)")
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   257
  apply (thin_tac "eqvt_at height_trm_height_assn_sumC (Inl b)")
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   258
  apply (thin_tac "eqvt_at height_trm_height_assn_sumC (Inl ba)")
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   259
  defer
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   260
  apply (simp add: eqvt_at_def height_trm_def)
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   261
  apply (simp add: eqvt_at_def height_trm_def)
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   262
  apply (simp add: eqvt_at_def height_assn_def)
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   263
  apply (simp add: eqvt_at_def height_assn_def)
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   264
  apply (subgoal_tac "height_assn as = height_assn asa")
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   265
  apply (subgoal_tac "height_trm b = height_trm ba")
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   266
  apply simp
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   267
  apply (erule_tac c="()" in Abs_lst_fcb2)
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   268
  apply (simp_all add: pure_fresh fresh_star_def)[3]
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   269
  apply (simp_all add: eqvt_at_def)[2]
2923
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
   270
  apply assumption
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
   271
  apply (erule_tac c="()" and ba="bn" in Abs_lst_fcb2)
2922
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   272
  apply (simp_all add: pure_fresh fresh_star_def)[3]
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
   273
  apply (simp_all add: eqvt_at_def)[2]
2923
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
   274
  apply (rule bn_inj)
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
   275
  prefer 2
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
   276
  apply (simp add: eqvts)
2854
b577f06e0804 one TODO and one Problem?
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2842
diff changeset
   277
  oops
b577f06e0804 one TODO and one Problem?
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2842
diff changeset
   278
2720
3dd6d524dfdd Experiments defining a function on Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2670
diff changeset
   279
nominal_primrec
3dd6d524dfdd Experiments defining a function on Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2670
diff changeset
   280
    subst  :: "name \<Rightarrow> trm \<Rightarrow> trm \<Rightarrow> trm"
3dd6d524dfdd Experiments defining a function on Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2670
diff changeset
   281
and substa :: "name \<Rightarrow> trm \<Rightarrow> assn \<Rightarrow> assn"
3dd6d524dfdd Experiments defining a function on Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2670
diff changeset
   282
where
3dd6d524dfdd Experiments defining a function on Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2670
diff changeset
   283
  "subst s t (Var x) = (if (s = x) then t else (Var x))"
3dd6d524dfdd Experiments defining a function on Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2670
diff changeset
   284
| "subst s t (App l r) = App (subst s t l) (subst s t r)"
3dd6d524dfdd Experiments defining a function on Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2670
diff changeset
   285
| "atom v \<sharp> (s, t) \<Longrightarrow> subst s t (Lam v b) = Lam v (subst s t b)"
3dd6d524dfdd Experiments defining a function on Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2670
diff changeset
   286
| "set (bn as) \<sharp>* (s, t) \<Longrightarrow> subst s t (Let as b) = Let (substa s t as) (subst s t b)"
3dd6d524dfdd Experiments defining a function on Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2670
diff changeset
   287
| "substa s t ANil = ANil"
3dd6d524dfdd Experiments defining a function on Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2670
diff changeset
   288
| "substa s t (ACons v t' as) = ACons v (subst v t t') as"
2842
43bb260ef290 Experiments with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2722
diff changeset
   289
(*unfolding eqvt_def subst_substa_graph_def
43bb260ef290 Experiments with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2722
diff changeset
   290
  apply (rule, perm_simp)*)
43bb260ef290 Experiments with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2722
diff changeset
   291
  defer
43bb260ef290 Experiments with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2722
diff changeset
   292
  apply (rule TrueI)
43bb260ef290 Experiments with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2722
diff changeset
   293
  apply (case_tac x)
43bb260ef290 Experiments with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2722
diff changeset
   294
  apply (case_tac a)
43bb260ef290 Experiments with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2722
diff changeset
   295
  apply (rule_tac y="c" and c="(aa,b)" in trm_assn.strong_exhaust(1))
43bb260ef290 Experiments with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2722
diff changeset
   296
  apply (auto simp add: fresh_star_def)[3]
43bb260ef290 Experiments with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2722
diff changeset
   297
  apply (drule_tac x="assn" in meta_spec)
43bb260ef290 Experiments with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2722
diff changeset
   298
  apply (simp add: Abs1_eq_iff alpha_bn_refl)
43bb260ef290 Experiments with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2722
diff changeset
   299
  apply (case_tac b)
43bb260ef290 Experiments with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2722
diff changeset
   300
  apply (case_tac c rule: trm_assn.exhaust(2))
43bb260ef290 Experiments with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2722
diff changeset
   301
  apply (auto)[2]
43bb260ef290 Experiments with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2722
diff changeset
   302
  apply blast
43bb260ef290 Experiments with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2722
diff changeset
   303
  apply blast
43bb260ef290 Experiments with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2722
diff changeset
   304
  apply auto
43bb260ef290 Experiments with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2722
diff changeset
   305
  apply (simp_all add: meta_eq_to_obj_eq[OF subst_def, symmetric, unfolded fun_eq_iff])
43bb260ef290 Experiments with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2722
diff changeset
   306
  apply (simp_all add: meta_eq_to_obj_eq[OF substa_def, symmetric, unfolded fun_eq_iff])
2921
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   307
  prefer 2
2923
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
   308
  apply (erule_tac c="(sa, ta)" in Abs_lst_fcb2)
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
   309
  apply (simp_all add: fresh_star_Pair)
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
   310
  prefer 6
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
   311
  apply (erule alpha_bn_inducts)
2921
6b496f69f76c trying new fcb in let/subst
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2875
diff changeset
   312
 oops
2720
3dd6d524dfdd Experiments defining a function on Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2670
diff changeset
   313
1600
e33e37fd4c7d More reorganization.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   314
end
e33e37fd4c7d More reorganization.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   315
e33e37fd4c7d More reorganization.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   316
e33e37fd4c7d More reorganization.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   317