src/HOL/Nominal/Examples/Weakening.thy
author urbanc
Mon, 28 Nov 2005 05:03:00 +0100
changeset 18269 3f36e2165e51
parent 18105 4c9c081a416b
child 18296 3dcc34f18bfa
permissions -rw-r--r--
some small tuning
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
18269
3f36e2165e51 some small tuning
urbanc
parents: 18105
diff changeset
     1
(* $Id$ *)
18105
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
     2
18269
3f36e2165e51 some small tuning
urbanc
parents: 18105
diff changeset
     3
theory weakening 
18105
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
     4
imports "../nominal" 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
     5
begin
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
     6
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
     7
(* WEAKENING EXAMPLE*)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
     8
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
     9
section {* Simply-Typed Lambda-Calculus *}
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    10
(*======================================*)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    11
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    12
atom_decl name 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    13
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    14
nominal_datatype lam = Var "name"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    15
                     | App "lam" "lam"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    16
                     | Lam "\<guillemotleft>name\<guillemotright>lam" ("Lam [_]._" [100,100] 100)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    17
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    18
datatype ty =
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    19
    TVar "string"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    20
  | TArr "ty" "ty" (infix "\<rightarrow>" 200)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    21
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    22
primrec
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    23
 "pi\<bullet>(TVar s) = TVar s"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    24
 "pi\<bullet>(\<tau> \<rightarrow> \<sigma>) = (\<tau> \<rightarrow> \<sigma>)"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    25
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    26
lemma perm_ty[simp]:
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    27
  fixes pi ::"name prm"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    28
  and   \<tau>  ::"ty"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    29
  shows "pi\<bullet>\<tau> = \<tau>"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    30
  by (cases \<tau>, simp_all)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    31
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    32
instance ty :: pt_name
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    33
apply(intro_classes)   
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    34
apply(simp_all)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    35
done
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    36
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    37
instance ty :: fs_name
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    38
apply(intro_classes)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    39
apply(simp add: supp_def)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    40
done
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    41
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    42
(* valid contexts *)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    43
consts
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    44
  ctxts :: "((name\<times>ty) list) set" 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    45
  valid :: "(name\<times>ty) list \<Rightarrow> bool"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    46
translations
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    47
  "valid \<Gamma>" \<rightleftharpoons> "\<Gamma> \<in> ctxts"  
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    48
inductive ctxts
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    49
intros
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    50
v1[intro]: "valid []"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    51
v2[intro]: "\<lbrakk>valid \<Gamma>;a\<sharp>\<Gamma>\<rbrakk>\<Longrightarrow> valid ((a,\<sigma>)#\<Gamma>)"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    52
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    53
lemma eqvt_valid:
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    54
  fixes   pi:: "name prm"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    55
  assumes a: "valid \<Gamma>"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    56
  shows   "valid (pi\<bullet>\<Gamma>)"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    57
using a
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    58
apply(induct)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    59
apply(auto simp add: pt_fresh_bij[OF pt_name_inst, OF at_name_inst])
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    60
done
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    61
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    62
(* typing judgements *)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    63
consts
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    64
  typing :: "(((name\<times>ty) list)\<times>lam\<times>ty) set" 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    65
syntax
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    66
  "_typing_judge" :: "(name\<times>ty) list\<Rightarrow>lam\<Rightarrow>ty\<Rightarrow>bool" (" _ \<turnstile> _ : _ " [80,80,80] 80) 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    67
translations
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    68
  "\<Gamma> \<turnstile> t : \<tau>" \<rightleftharpoons> "(\<Gamma>,t,\<tau>) \<in> typing"  
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    69
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    70
inductive typing
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    71
intros
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    72
t1[intro]: "\<lbrakk>valid \<Gamma>; (a,\<tau>)\<in>set \<Gamma>\<rbrakk>\<Longrightarrow> \<Gamma> \<turnstile> Var a : \<tau>"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    73
t2[intro]: "\<lbrakk>\<Gamma> \<turnstile> t1 : \<tau>\<rightarrow>\<sigma>; \<Gamma> \<turnstile> t2 : \<tau>\<rbrakk>\<Longrightarrow> \<Gamma> \<turnstile> App t1 t2 : \<sigma>"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    74
t3[intro]: "\<lbrakk>a\<sharp>\<Gamma>;((a,\<tau>)#\<Gamma>) \<turnstile> t : \<sigma>\<rbrakk> \<Longrightarrow> \<Gamma> \<turnstile> Lam [a].t : \<tau>\<rightarrow>\<sigma>"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    75
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    76
lemma eqvt_typing: 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    77
  fixes  \<Gamma> :: "(name\<times>ty) list"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    78
  and    t :: "lam"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    79
  and    \<tau> :: "ty"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    80
  and    pi:: "name prm"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    81
  assumes a: "\<Gamma> \<turnstile> t : \<tau>"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    82
  shows "(pi\<bullet>\<Gamma>) \<turnstile> (pi\<bullet>t) : \<tau>"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    83
using a
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    84
proof (induct)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    85
  case (t1 \<Gamma> \<tau> a)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    86
  have "valid (pi\<bullet>\<Gamma>)" by (rule eqvt_valid)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    87
  moreover
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    88
  have "(pi\<bullet>(a,\<tau>))\<in>((pi::name prm)\<bullet>set \<Gamma>)" by (rule pt_set_bij2[OF pt_name_inst, OF at_name_inst])
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    89
  ultimately show "(pi\<bullet>\<Gamma>) \<turnstile> ((pi::name prm)\<bullet>Var a) : \<tau>"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    90
    using typing.intros by (force simp add: pt_list_set_pi[OF pt_name_inst, symmetric])
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    91
next 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    92
  case (t3 \<Gamma> \<sigma> \<tau> a t)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    93
  moreover have "(pi\<bullet>a)\<sharp>(pi\<bullet>\<Gamma>)" by (rule pt_fresh_bij1[OF pt_name_inst, OF at_name_inst])
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    94
  ultimately show "(pi\<bullet>\<Gamma>) \<turnstile> (pi\<bullet>Lam [a].t) :\<tau>\<rightarrow>\<sigma>" by force 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    95
qed (auto)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    96
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    97
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    98
lemma typing_induct_weak[THEN spec, case_names t1 t2 t3]:
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
    99
  fixes  P :: "(name\<times>ty) list \<Rightarrow> lam \<Rightarrow> ty \<Rightarrow>'a\<Rightarrow>bool"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   100
  and    \<Gamma> :: "(name\<times>ty) list"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   101
  and    t :: "lam"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   102
  and    \<tau> :: "ty"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   103
  assumes a: "\<Gamma> \<turnstile> t : \<tau>"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   104
  and a1:    "\<And>x \<Gamma> (a::name) \<tau>. valid \<Gamma> \<Longrightarrow> (a,\<tau>) \<in> set \<Gamma> \<Longrightarrow> P \<Gamma> (Var a) \<tau> x"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   105
  and a2:    "\<And>x \<Gamma> \<tau> \<sigma> t1 t2. 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   106
              \<Gamma> \<turnstile> t1 : \<tau>\<rightarrow>\<sigma> \<Longrightarrow> (\<forall>z. P \<Gamma> t1 (\<tau>\<rightarrow>\<sigma>) z) \<Longrightarrow> \<Gamma> \<turnstile> t2 : \<tau> \<Longrightarrow> (\<forall>z. P \<Gamma> t2 \<tau> z)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   107
              \<Longrightarrow> P \<Gamma> (App t1 t2) \<sigma> x"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   108
  and a3:    "\<And>x (a::name) \<Gamma> \<tau> \<sigma> t. 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   109
              a\<sharp>\<Gamma> \<Longrightarrow> ((a,\<tau>) # \<Gamma>) \<turnstile> t : \<sigma> \<Longrightarrow> (\<forall>z. P ((a,\<tau>)#\<Gamma>) t \<sigma> z)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   110
              \<Longrightarrow> P \<Gamma> (Lam [a].t) (\<tau>\<rightarrow>\<sigma>) x"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   111
  shows "\<forall>x. P \<Gamma> t \<tau> x"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   112
using a by (induct, simp_all add: a1 a2 a3)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   113
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   114
lemma typing_induct_aux[rule_format]:
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   115
  fixes  P :: "(name\<times>ty) list \<Rightarrow> lam \<Rightarrow> ty \<Rightarrow>'a::fs_name\<Rightarrow>bool"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   116
  and    \<Gamma> :: "(name\<times>ty) list"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   117
  and    t :: "lam"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   118
  and    \<tau> :: "ty"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   119
  assumes a: "\<Gamma> \<turnstile> t : \<tau>"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   120
  and a1:    "\<And>x \<Gamma> (a::name) \<tau>. valid \<Gamma> \<Longrightarrow> (a,\<tau>) \<in> set \<Gamma> \<Longrightarrow> P \<Gamma> (Var a) \<tau> x"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   121
  and a2:    "\<And>x \<Gamma> \<tau> \<sigma> t1 t2. 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   122
              \<Gamma> \<turnstile> t1 : \<tau>\<rightarrow>\<sigma> \<Longrightarrow> (\<And>z. P \<Gamma> t1 (\<tau>\<rightarrow>\<sigma>) z) \<Longrightarrow> \<Gamma> \<turnstile> t2 : \<tau> \<Longrightarrow> (\<And>z. P \<Gamma> t2 \<tau> z)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   123
              \<Longrightarrow> P \<Gamma> (App t1 t2) \<sigma> x"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   124
  and a3:    "\<And>x (a::name) \<Gamma> \<tau> \<sigma> t. 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   125
              a\<sharp>x \<Longrightarrow> a\<sharp>\<Gamma> \<Longrightarrow> ((a,\<tau>) # \<Gamma>) \<turnstile> t : \<sigma> \<Longrightarrow> (\<forall>z. P ((a,\<tau>)#\<Gamma>) t \<sigma> z)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   126
              \<Longrightarrow> P \<Gamma> (Lam [a].t) (\<tau>\<rightarrow>\<sigma>) x"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   127
  shows "\<forall>(pi::name prm) (x::'a::fs_name). P (pi\<bullet>\<Gamma>) (pi\<bullet>t) \<tau> x"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   128
using a
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   129
proof (induct)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   130
  case (t1 \<Gamma> \<tau> a)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   131
  have j1: "valid \<Gamma>" by fact
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   132
  have j2: "(a,\<tau>)\<in>set \<Gamma>" by fact
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   133
  show ?case
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   134
  proof (intro strip, simp)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   135
    fix pi::"name prm" and x::"'a::fs_name"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   136
    from j1 have j3: "valid (pi\<bullet>\<Gamma>)" by (rule eqvt_valid)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   137
    from j2 have "pi\<bullet>(a,\<tau>)\<in>pi\<bullet>(set \<Gamma>)" by (simp only: pt_set_bij[OF pt_name_inst, OF at_name_inst])  
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   138
    hence j4: "(pi\<bullet>a,\<tau>)\<in>set (pi\<bullet>\<Gamma>)" by (simp add: pt_list_set_pi[OF pt_name_inst])
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   139
    show "P (pi\<bullet>\<Gamma>) (Var (pi\<bullet>a)) \<tau> x" using a1 j3 j4 by force
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   140
  qed
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   141
next
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   142
  case (t2 \<Gamma> \<sigma> \<tau> t1 t2)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   143
  thus ?case using a2 by (simp, blast intro: eqvt_typing)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   144
next
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   145
  case (t3 \<Gamma> \<sigma> \<tau> a t)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   146
  have k1: "a\<sharp>\<Gamma>" by fact
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   147
  have k2: "((a,\<tau>)#\<Gamma>)\<turnstile>t:\<sigma>" by fact
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   148
  have k3: "\<forall>(pi::name prm) (x::'a::fs_name). P (pi \<bullet> ((a,\<tau>)#\<Gamma>)) (pi\<bullet>t) \<sigma> x" by fact
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   149
  show ?case
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   150
  proof (intro strip, simp)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   151
    fix pi::"name prm" and x::"'a::fs_name"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   152
    have f: "\<exists>c::name. c\<sharp>(pi\<bullet>a,pi\<bullet>t,pi\<bullet>\<Gamma>,x)"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   153
      by (rule at_exists_fresh[OF at_name_inst], simp add: fs_name1)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   154
    then obtain c::"name" 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   155
      where f1: "c\<noteq>(pi\<bullet>a)" and f2: "c\<sharp>x" and f3: "c\<sharp>(pi\<bullet>t)" and f4: "c\<sharp>(pi\<bullet>\<Gamma>)"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   156
      by (force simp add: fresh_prod at_fresh[OF at_name_inst])
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   157
    from k1 have k1a: "(pi\<bullet>a)\<sharp>(pi\<bullet>\<Gamma>)" 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   158
      by (simp add: pt_fresh_left[OF pt_name_inst, OF at_name_inst] 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   159
                    pt_rev_pi[OF pt_name_inst, OF at_name_inst])
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   160
    have l1: "(([(c,pi\<bullet>a)]@pi)\<bullet>\<Gamma>) = (pi\<bullet>\<Gamma>)" using f4 k1a 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   161
      by (simp only: pt2[OF pt_name_inst], rule pt_fresh_fresh[OF pt_name_inst, OF at_name_inst])
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   162
    have "\<forall>x. P (([(c,pi\<bullet>a)]@pi)\<bullet>((a,\<tau>)#\<Gamma>)) (([(c,pi\<bullet>a)]@pi)\<bullet>t) \<sigma> x" using k3 by force
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   163
    hence l2: "\<forall>x. P ((c, \<tau>)#(pi\<bullet>\<Gamma>)) (([(c,pi\<bullet>a)]@pi)\<bullet>t) \<sigma> x" using f1 l1
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   164
      by (force simp add: pt2[OF pt_name_inst]  at_calc[OF at_name_inst] split: if_splits)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   165
    have "(([(c,pi\<bullet>a)]@pi)\<bullet>((a,\<tau>)#\<Gamma>)) \<turnstile> (([(c,pi\<bullet>a)]@pi)\<bullet>t) : \<sigma>" using k2 by (rule eqvt_typing)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   166
    hence l3: "((c, \<tau>)#(pi\<bullet>\<Gamma>)) \<turnstile> (([(c,pi\<bullet>a)]@pi)\<bullet>t) : \<sigma>" using l1 f1 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   167
      by (force simp add: pt2[OF pt_name_inst]  at_calc[OF at_name_inst] split: if_splits)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   168
    have l4: "P (pi\<bullet>\<Gamma>) (Lam [c].(([(c,pi\<bullet>a)]@pi)\<bullet>t)) (\<tau> \<rightarrow> \<sigma>) x" using f2 f4 l2 l3 a3 by auto
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   169
    have alpha: "(Lam [c].([(c,pi\<bullet>a)]\<bullet>(pi\<bullet>t))) = (Lam [(pi\<bullet>a)].(pi\<bullet>t))" using f1 f3
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   170
      by (simp add: lam.inject alpha)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   171
    show "P (pi\<bullet>\<Gamma>) (Lam [(pi\<bullet>a)].(pi\<bullet>t)) (\<tau> \<rightarrow> \<sigma>) x" using l4 alpha 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   172
      by (simp only: pt2[OF pt_name_inst])
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   173
  qed
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   174
qed
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   175
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   176
lemma typing_induct[case_names t1 t2 t3]:
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   177
  fixes  P :: "(name\<times>ty) list \<Rightarrow> lam \<Rightarrow> ty \<Rightarrow>'a::fs_name\<Rightarrow>bool"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   178
  and    \<Gamma> :: "(name\<times>ty) list"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   179
  and    t :: "lam"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   180
  and    \<tau> :: "ty"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   181
  and    x :: "'a::fs_name"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   182
  assumes a: "\<Gamma> \<turnstile> t : \<tau>"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   183
  and a1:    "\<And>x \<Gamma> (a::name) \<tau>. valid \<Gamma> \<Longrightarrow> (a,\<tau>) \<in> set \<Gamma> \<Longrightarrow> P \<Gamma> (Var a) \<tau> x"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   184
  and a2:    "\<And>x \<Gamma> \<tau> \<sigma> t1 t2. 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   185
              \<Gamma> \<turnstile> t1 : \<tau>\<rightarrow>\<sigma> \<Longrightarrow> (\<forall>z. P \<Gamma> t1 (\<tau>\<rightarrow>\<sigma>) z) \<Longrightarrow> \<Gamma> \<turnstile> t2 : \<tau> \<Longrightarrow> (\<forall>z. P \<Gamma> t2 \<tau> z)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   186
              \<Longrightarrow> P \<Gamma> (App t1 t2) \<sigma> x"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   187
  and a3:    "\<And>x (a::name) \<Gamma> \<tau> \<sigma> t. 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   188
              a\<sharp>x \<Longrightarrow> a\<sharp>\<Gamma> \<Longrightarrow> ((a,\<tau>) # \<Gamma>) \<turnstile> t : \<sigma> \<Longrightarrow> (\<forall>z. P ((a,\<tau>)#\<Gamma>) t \<sigma> z)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   189
              \<Longrightarrow> P \<Gamma> (Lam [a].t) (\<tau>\<rightarrow>\<sigma>) x"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   190
  shows "P \<Gamma> t \<tau> x"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   191
using a a1 a2 a3 typing_induct_aux[of "\<Gamma>" "t" "\<tau>" "P" "[]" "x", simplified] by force
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   192
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   193
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   194
(* Now it comes: The Weakening Lemma *)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   195
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   196
constdefs
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   197
  "sub" :: "(name\<times>ty) list \<Rightarrow> (name\<times>ty) list \<Rightarrow> bool" (" _ \<lless> _ " [80,80] 80)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   198
  "\<Gamma>1 \<lless> \<Gamma>2 \<equiv> \<forall>a \<sigma>. (a,\<sigma>)\<in>set \<Gamma>1 \<longrightarrow>  (a,\<sigma>)\<in>set \<Gamma>2"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   199
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   200
lemma weakening_version1[rule_format]: 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   201
  assumes a: "\<Gamma>1 \<turnstile> t : \<sigma>"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   202
  shows "valid \<Gamma>2 \<longrightarrow> \<Gamma>1 \<lless> \<Gamma>2 \<longrightarrow> \<Gamma>2 \<turnstile> t:\<sigma>"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   203
using a
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   204
apply(nominal_induct \<Gamma>1 t \<sigma> rule: typing_induct)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   205
apply(auto simp add: sub_def)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   206
done
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   207
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   208
lemma weakening_version2[rule_format]: 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   209
  fixes \<Gamma>1::"(name\<times>ty) list"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   210
  and   t ::"lam"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   211
  and   \<tau> ::"ty"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   212
  assumes a: "\<Gamma>1 \<turnstile> t:\<sigma>"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   213
  shows "valid \<Gamma>2 \<longrightarrow> \<Gamma>1 \<lless> \<Gamma>2 \<longrightarrow> \<Gamma>2 \<turnstile> t:\<sigma>"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   214
using a
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   215
proof (nominal_induct \<Gamma>1 t \<sigma> rule: typing_induct, auto)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   216
  case (t1 \<Gamma>2 \<Gamma>1 a \<tau>)  (* variable case *)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   217
  assume "\<Gamma>1 \<lless> \<Gamma>2" 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   218
  and    "valid \<Gamma>2" 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   219
  and    "(a,\<tau>)\<in> set \<Gamma>1" 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   220
  thus  "\<Gamma>2 \<turnstile> Var a : \<tau>" by (force simp add: sub_def)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   221
next
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   222
  case (t3 \<Gamma>2 a \<Gamma>1 \<tau> \<sigma> t) (* lambda case *)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   223
  assume a1: "\<Gamma>1 \<lless> \<Gamma>2"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   224
  and    a2: "valid \<Gamma>2"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   225
  and    a3: "a\<sharp>\<Gamma>2"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   226
  have i: "\<forall>\<Gamma>3. valid \<Gamma>3 \<longrightarrow> ((a,\<tau>)#\<Gamma>1) \<lless> \<Gamma>3 \<longrightarrow>  \<Gamma>3 \<turnstile> t:\<sigma>" by fact
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   227
  have "((a,\<tau>)#\<Gamma>1) \<lless> ((a,\<tau>)#\<Gamma>2)" using a1 by (simp add: sub_def)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   228
  moreover
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   229
  have "valid ((a,\<tau>)#\<Gamma>2)" using a2 a3 v2 by force
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   230
  ultimately have "((a,\<tau>)#\<Gamma>2) \<turnstile> t:\<sigma>" using i by force
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   231
  with a3 show "\<Gamma>2 \<turnstile> (Lam [a].t) : \<tau> \<rightarrow> \<sigma>" by force
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   232
qed
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   233
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   234
lemma weakening_version3[rule_format]: 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   235
  fixes \<Gamma>1::"(name\<times>ty) list"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   236
  and   t ::"lam"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   237
  and   \<tau> ::"ty"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   238
  assumes a: "\<Gamma>1 \<turnstile> t:\<sigma>"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   239
  shows "valid \<Gamma>2 \<longrightarrow> \<Gamma>1 \<lless> \<Gamma>2 \<longrightarrow> \<Gamma>2 \<turnstile> t:\<sigma>"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   240
using a
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   241
proof (nominal_induct \<Gamma>1 t \<sigma> rule: typing_induct)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   242
  case (t1 \<Gamma>2 \<Gamma>1 a \<tau>)  (* variable case *)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   243
  thus "valid \<Gamma>2 \<longrightarrow> \<Gamma>1 \<lless> \<Gamma>2 \<longrightarrow> \<Gamma>2 \<turnstile> Var a : \<tau>" by (force simp add: sub_def)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   244
next 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   245
  case (t2 \<Gamma>2 \<Gamma>1 \<tau> \<sigma> t1 t2)  (* variable case *)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   246
  thus "valid \<Gamma>2 \<longrightarrow> \<Gamma>1 \<lless> \<Gamma>2 \<longrightarrow> \<Gamma>2 \<turnstile> App t1 t2 : \<sigma>" by force
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   247
next
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   248
  case (t3 \<Gamma>2 a \<Gamma>1 \<tau> \<sigma> t) (* lambda case *)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   249
  have a3: "a\<sharp>\<Gamma>2" 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   250
  and  i: "\<forall>\<Gamma>3. valid \<Gamma>3 \<longrightarrow> ((a,\<tau>)#\<Gamma>1) \<lless> \<Gamma>3 \<longrightarrow>  \<Gamma>3 \<turnstile> t:\<sigma>" by fact
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   251
  show "valid \<Gamma>2 \<longrightarrow> \<Gamma>1 \<lless> \<Gamma>2 \<longrightarrow> \<Gamma>2 \<turnstile> (Lam [a].t) : \<tau> \<rightarrow> \<sigma>"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   252
    proof (intro strip)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   253
      assume a1: "\<Gamma>1 \<lless> \<Gamma>2"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   254
      and    a2: "valid \<Gamma>2"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   255
      have "((a,\<tau>)#\<Gamma>1) \<lless> ((a,\<tau>)#\<Gamma>2)" using a1 by (simp add: sub_def)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   256
      moreover
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   257
      have "valid ((a,\<tau>)#\<Gamma>2)" using a2 a3 v2 by force
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   258
      ultimately have "((a,\<tau>)#\<Gamma>2) \<turnstile> t:\<sigma>" using i by force
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   259
      with a3 show "\<Gamma>2 \<turnstile> (Lam [a].t) : \<tau> \<rightarrow> \<sigma>" by force
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   260
    qed
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   261
qed
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   262
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   263
lemma weakening_version4[rule_format]: 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   264
  assumes a: "\<Gamma>1 \<turnstile> t:\<sigma>"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   265
  shows "valid \<Gamma>2 \<longrightarrow> \<Gamma>1 \<lless> \<Gamma>2 \<longrightarrow> \<Gamma>2 \<turnstile> t:\<sigma>"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   266
using a
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   267
proof (nominal_induct \<Gamma>1 t \<sigma> rule: typing_induct)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   268
  case (t3 \<Gamma>2 a \<Gamma>1 \<tau> \<sigma> t) (* lambda case *)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   269
  have fc: "a\<sharp>\<Gamma>2" 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   270
  and ih: "\<forall>\<Gamma>3. valid \<Gamma>3 \<longrightarrow> ((a,\<tau>)#\<Gamma>1) \<lless> \<Gamma>3  \<longrightarrow>  \<Gamma>3 \<turnstile> t:\<sigma>" by fact 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   271
  show "valid \<Gamma>2 \<longrightarrow> \<Gamma>1 \<lless> \<Gamma>2 \<longrightarrow> \<Gamma>2 \<turnstile> (Lam [a].t) : \<tau> \<rightarrow> \<sigma>"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   272
  proof (intro strip)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   273
    assume a1: "\<Gamma>1 \<lless> \<Gamma>2"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   274
    and    a2: "valid \<Gamma>2"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   275
    have "((a,\<tau>)#\<Gamma>1) \<lless> ((a,\<tau>)#\<Gamma>2)" using a1 sub_def by simp 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   276
    moreover
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   277
    have "valid ((a,\<tau>)#\<Gamma>2)" using a2 fc by force
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   278
    ultimately have "((a,\<tau>)#\<Gamma>2) \<turnstile> t:\<sigma>" using ih by force
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   279
    with fc show "\<Gamma>2 \<turnstile> (Lam [a].t) : \<tau> \<rightarrow> \<sigma>" by force
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   280
  qed
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   281
qed (auto simp add: sub_def) (* lam and var case *)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   282
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   283
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   284
(* original induction principle is not strong *)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   285
(* enough - so the simple proof fails         *)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   286
lemma weakening_too_weak[rule_format]: 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   287
  assumes a: "\<Gamma>1 \<turnstile> t:\<sigma>"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   288
  shows "valid \<Gamma>2 \<longrightarrow> \<Gamma>1 \<lless> \<Gamma>2 \<longrightarrow> \<Gamma>2 \<turnstile> t:\<sigma>"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   289
using a
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   290
proof (nominal_induct \<Gamma>1 t \<sigma> rule: typing_induct_weak, auto)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   291
  case (t1 \<Gamma>2 \<Gamma>1 a \<tau>)  (* variable case *)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   292
  assume "\<Gamma>1 \<lless> \<Gamma>2"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   293
  and    "valid \<Gamma>2"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   294
  and    "(a,\<tau>)\<in> set \<Gamma>1" 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   295
  thus "\<Gamma>2 \<turnstile> Var a : \<tau>" by (force simp add: sub_def)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   296
next
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   297
  case (t3 \<Gamma>2 a \<Gamma>1 \<tau> \<sigma> t) (* lambda case *)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   298
  assume a1: "\<Gamma>1 \<lless> \<Gamma>2"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   299
  and    a2: "valid \<Gamma>2"
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   300
  and    i: "\<forall>\<Gamma>3. valid \<Gamma>3 \<longrightarrow> ((a,\<tau>)#\<Gamma>1) \<lless> \<Gamma>3  \<longrightarrow>  \<Gamma>3 \<turnstile> t:\<sigma>" 
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   301
  have "((a,\<tau>)#\<Gamma>1) \<lless> ((a,\<tau>)#\<Gamma>2)" using a1 by (simp add: sub_def)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   302
  moreover
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   303
  have "valid ((a,\<tau>)#\<Gamma>2)" using v2 (* fails *)
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   304
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   305
4c9c081a416b Initial commit of the theory "Weakening".
urbanc
parents:
diff changeset
   306