src/HOL/Lambda/Type.thy
author wenzelm
Fri, 26 Oct 2001 16:18:14 +0200
changeset 11946 adef41692ab0
parent 11945 1b540afebf4d
child 11947 013d52bb0000
permissions -rw-r--r--
tuned;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9114
de99e37effda Subject reduction and strong normalization of simply-typed lambda terms.
berghofe
parents:
diff changeset
     1
(*  Title:      HOL/Lambda/Type.thy
de99e37effda Subject reduction and strong normalization of simply-typed lambda terms.
berghofe
parents:
diff changeset
     2
    ID:         $Id$
de99e37effda Subject reduction and strong normalization of simply-typed lambda terms.
berghofe
parents:
diff changeset
     3
    Author:     Stefan Berghofer
de99e37effda Subject reduction and strong normalization of simply-typed lambda terms.
berghofe
parents:
diff changeset
     4
    Copyright   2000 TU Muenchen
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9771
diff changeset
     5
*)
9114
de99e37effda Subject reduction and strong normalization of simply-typed lambda terms.
berghofe
parents:
diff changeset
     6
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9771
diff changeset
     7
header {* Simply-typed lambda terms: subject reduction and strong
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9771
diff changeset
     8
  normalization *}
9114
de99e37effda Subject reduction and strong normalization of simply-typed lambda terms.
berghofe
parents:
diff changeset
     9
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
    10
theory Type = InductTermi:
9114
de99e37effda Subject reduction and strong normalization of simply-typed lambda terms.
berghofe
parents:
diff changeset
    11
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9771
diff changeset
    12
text_raw {*
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9771
diff changeset
    13
  \footnote{Formalization by Stefan Berghofer.  Partly based on a
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9771
diff changeset
    14
  paper proof by Ralph Matthes.}
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9771
diff changeset
    15
*}
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9771
diff changeset
    16
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9771
diff changeset
    17
11946
wenzelm
parents: 11945
diff changeset
    18
subsection {* Environments *}
wenzelm
parents: 11945
diff changeset
    19
wenzelm
parents: 11945
diff changeset
    20
constdefs
wenzelm
parents: 11945
diff changeset
    21
  shift :: "(nat \<Rightarrow> 'a) \<Rightarrow> nat \<Rightarrow> 'a \<Rightarrow> nat \<Rightarrow> 'a"    ("_\<langle>_:_\<rangle>" [90, 0, 0] 91)
wenzelm
parents: 11945
diff changeset
    22
  "e\<langle>i:a\<rangle> \<equiv> \<lambda>j. if j < i then e j else if j = i then a else e (j - 1)"
wenzelm
parents: 11945
diff changeset
    23
wenzelm
parents: 11945
diff changeset
    24
lemma shift_eq [simp]: "i = j \<Longrightarrow> (e\<langle>i:T\<rangle>) j = T"
wenzelm
parents: 11945
diff changeset
    25
  by (simp add: shift_def)
wenzelm
parents: 11945
diff changeset
    26
wenzelm
parents: 11945
diff changeset
    27
lemma shift_gt [simp]: "j < i \<Longrightarrow> (e\<langle>i:T\<rangle>) j = e j"
wenzelm
parents: 11945
diff changeset
    28
  by (simp add: shift_def)
wenzelm
parents: 11945
diff changeset
    29
wenzelm
parents: 11945
diff changeset
    30
lemma shift_lt [simp]: "i < j \<Longrightarrow> (e\<langle>i:T\<rangle>) j = e (j - 1)"
wenzelm
parents: 11945
diff changeset
    31
  by (simp add: shift_def)
wenzelm
parents: 11945
diff changeset
    32
wenzelm
parents: 11945
diff changeset
    33
lemma shift_commute [simp]: "e\<langle>i:U\<rangle>\<langle>0:T\<rangle> = e\<langle>0:T\<rangle>\<langle>Suc i:U\<rangle>"
wenzelm
parents: 11945
diff changeset
    34
  apply (rule ext)
wenzelm
parents: 11945
diff changeset
    35
  apply (case_tac x)
wenzelm
parents: 11945
diff changeset
    36
   apply simp
wenzelm
parents: 11945
diff changeset
    37
  apply (case_tac nat)
wenzelm
parents: 11945
diff changeset
    38
   apply (simp_all add: shift_def)
wenzelm
parents: 11945
diff changeset
    39
  done
wenzelm
parents: 11945
diff changeset
    40
wenzelm
parents: 11945
diff changeset
    41
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9771
diff changeset
    42
subsection {* Types and typing rules *}
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9771
diff changeset
    43
9641
wenzelm
parents: 9622
diff changeset
    44
datatype type =
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
    45
    Atom nat
11945
1b540afebf4d Rrightarrow;
wenzelm
parents: 11943
diff changeset
    46
  | Fun type type    (infixr "\<Rightarrow>" 200)
9114
de99e37effda Subject reduction and strong normalization of simply-typed lambda terms.
berghofe
parents:
diff changeset
    47
de99e37effda Subject reduction and strong normalization of simply-typed lambda terms.
berghofe
parents:
diff changeset
    48
consts
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
    49
  typing :: "((nat \<Rightarrow> type) \<times> dB \<times> type) set"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
    50
  typings :: "(nat \<Rightarrow> type) \<Rightarrow> dB list \<Rightarrow> type list \<Rightarrow> bool"
9114
de99e37effda Subject reduction and strong normalization of simply-typed lambda terms.
berghofe
parents:
diff changeset
    51
de99e37effda Subject reduction and strong normalization of simply-typed lambda terms.
berghofe
parents:
diff changeset
    52
syntax
11945
1b540afebf4d Rrightarrow;
wenzelm
parents: 11943
diff changeset
    53
  "_funs" :: "type list \<Rightarrow> type \<Rightarrow> type"    (infixr "=>>" 200)
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
    54
  "_typing" :: "(nat \<Rightarrow> type) \<Rightarrow> dB \<Rightarrow> type \<Rightarrow> bool"    ("_ |- _ : _" [50, 50, 50] 50)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
    55
  "_typings" :: "(nat \<Rightarrow> type) \<Rightarrow> dB list \<Rightarrow> type list \<Rightarrow> bool"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
    56
    ("_ ||- _ : _" [50, 50, 50] 50)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
    57
syntax (symbols)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
    58
  "_typing" :: "(nat \<Rightarrow> type) \<Rightarrow> dB \<Rightarrow> type \<Rightarrow> bool"    ("_ \<turnstile> _ : _" [50, 50, 50] 50)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
    59
syntax (latex)
11945
1b540afebf4d Rrightarrow;
wenzelm
parents: 11943
diff changeset
    60
  "_funs" :: "type list \<Rightarrow> type \<Rightarrow> type"    (infixr "\<Rrightarrow>" 200)
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
    61
  "_typings" :: "(nat \<Rightarrow> type) \<Rightarrow> dB list \<Rightarrow> type list \<Rightarrow> bool"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
    62
    ("_ \<tturnstile> _ : _" [50, 50, 50] 50)
9114
de99e37effda Subject reduction and strong normalization of simply-typed lambda terms.
berghofe
parents:
diff changeset
    63
translations
11945
1b540afebf4d Rrightarrow;
wenzelm
parents: 11943
diff changeset
    64
  "Ts \<Rrightarrow> T" \<rightleftharpoons> "foldr Fun Ts T"
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
    65
  "env \<turnstile> t : T" \<rightleftharpoons> "(env, t, T) \<in> typing"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
    66
  "env \<tturnstile> ts : Ts" \<rightleftharpoons> "typings env ts Ts"
9114
de99e37effda Subject reduction and strong normalization of simply-typed lambda terms.
berghofe
parents:
diff changeset
    67
de99e37effda Subject reduction and strong normalization of simply-typed lambda terms.
berghofe
parents:
diff changeset
    68
inductive typing
11638
2c3dee321b4b inductive: no collective atts;
wenzelm
parents: 10567
diff changeset
    69
  intros
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
    70
    Var [intro!]: "env x = T \<Longrightarrow> env \<turnstile> Var x : T"
11946
wenzelm
parents: 11945
diff changeset
    71
    Abs [intro!]: "env\<langle>0:T\<rangle> \<turnstile> t : U \<Longrightarrow> env \<turnstile> Abs t : (T \<Rightarrow> U)"
11945
1b540afebf4d Rrightarrow;
wenzelm
parents: 11943
diff changeset
    72
    App [intro!]: "env \<turnstile> s : T \<Rightarrow> U \<Longrightarrow> env \<turnstile> t : T \<Longrightarrow> env \<turnstile> (s \<^sub>\<degree> t) : U"
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
    73
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
    74
inductive_cases typing_elims [elim!]:
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
    75
  "e \<turnstile> Var i : T"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
    76
  "e \<turnstile> t \<^sub>\<degree> u : T"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
    77
  "e \<turnstile> Abs t : T"
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
    78
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
    79
primrec
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
    80
  "(e \<tturnstile> [] : Ts) = (Ts = [])"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
    81
  "(e \<tturnstile> (t # ts) : Ts) =
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
    82
    (case Ts of
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
    83
      [] \<Rightarrow> False
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
    84
    | T # Ts \<Rightarrow> e \<turnstile> t : T \<and> e \<tturnstile> ts : Ts)"
9114
de99e37effda Subject reduction and strong normalization of simply-typed lambda terms.
berghofe
parents:
diff changeset
    85
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
    86
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9771
diff changeset
    87
subsection {* Some examples *}
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
    88
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
    89
lemma "e \<turnstile> Abs (Abs (Abs (Var 1 \<^sub>\<degree> (Var 2 \<^sub>\<degree> Var 1 \<^sub>\<degree> Var 0)))) : ?T"
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
    90
  by force
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
    91
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
    92
lemma "e \<turnstile> Abs (Abs (Abs (Var 2 \<^sub>\<degree> Var 0 \<^sub>\<degree> (Var 1 \<^sub>\<degree> Var 0)))) : ?T"
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
    93
  by force
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
    94
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
    95
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
    96
subsection {* @{text n}-ary function types *}
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
    97
9941
fe05af7ec816 renamed atts: rulify to rule_format, elimify to elim_format;
wenzelm
parents: 9906
diff changeset
    98
lemma list_app_typeD [rule_format]:
11945
1b540afebf4d Rrightarrow;
wenzelm
parents: 11943
diff changeset
    99
    "\<forall>t T. e \<turnstile> t \<^sub>\<degree>\<^sub>\<degree> ts : T \<longrightarrow> (\<exists>Ts. e \<turnstile> t : Ts \<Rrightarrow> T \<and> e \<tturnstile> ts : Ts)"
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   100
  apply (induct_tac ts)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   101
   apply simp
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   102
  apply (intro strip)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   103
  apply simp
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   104
  apply (erule_tac x = "t \<^sub>\<degree> a" in allE)
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   105
  apply (erule_tac x = T in allE)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   106
  apply (erule impE)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   107
   apply assumption
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   108
  apply (elim exE conjE)
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   109
  apply (ind_cases "e \<turnstile> t \<^sub>\<degree> u : T")
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   110
  apply (rule_tac x = "Ta # Ts" in exI)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   111
  apply simp
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   112
  done
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   113
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   114
lemma list_app_typeE:
11945
1b540afebf4d Rrightarrow;
wenzelm
parents: 11943
diff changeset
   115
  "e \<turnstile> t \<^sub>\<degree>\<^sub>\<degree> ts : T \<Longrightarrow> (\<And>Ts. e \<turnstile> t : Ts \<Rrightarrow> T \<Longrightarrow> e \<tturnstile> ts : Ts \<Longrightarrow> C) \<Longrightarrow> C"
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   116
  by (insert list_app_typeD) fast
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   117
9941
fe05af7ec816 renamed atts: rulify to rule_format, elimify to elim_format;
wenzelm
parents: 9906
diff changeset
   118
lemma list_app_typeI [rule_format]:
11945
1b540afebf4d Rrightarrow;
wenzelm
parents: 11943
diff changeset
   119
    "\<forall>t T Ts. e \<turnstile> t : Ts \<Rrightarrow> T \<longrightarrow> e \<tturnstile> ts : Ts \<longrightarrow> e \<turnstile> t \<^sub>\<degree>\<^sub>\<degree> ts : T"
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   120
  apply (induct_tac ts)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   121
   apply (intro strip)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   122
   apply simp
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   123
  apply (intro strip)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   124
  apply (case_tac Ts)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   125
   apply simp
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   126
  apply simp
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   127
  apply (erule_tac x = "t \<^sub>\<degree> a" in allE)
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   128
  apply (erule_tac x = T in allE)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   129
  apply (erule_tac x = lista in allE)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   130
  apply (erule impE)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   131
   apply (erule conjE)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   132
   apply (erule typing.App)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   133
   apply assumption
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   134
  apply blast
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   135
  done
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   136
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   137
lemma lists_typings [rule_format]:
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   138
    "\<forall>Ts. e \<tturnstile> ts : Ts \<longrightarrow> ts \<in> lists {t. \<exists>T. e \<turnstile> t : T}"
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   139
  apply (induct_tac ts)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   140
   apply (intro strip)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   141
   apply (case_tac Ts)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   142
     apply simp
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   143
     apply (rule lists.Nil)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   144
    apply simp
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   145
  apply (intro strip)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   146
  apply (case_tac Ts)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   147
   apply simp
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   148
  apply simp
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   149
  apply (rule lists.Cons)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   150
   apply blast
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   151
  apply blast
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   152
  done
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   153
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   154
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9771
diff changeset
   155
subsection {* Lifting preserves termination and well-typedness *}
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   156
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   157
lemma lift_map [simp]:
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   158
    "\<And>t. lift (t \<^sub>\<degree>\<^sub>\<degree> ts) i = lift t i \<^sub>\<degree>\<^sub>\<degree> map (\<lambda>t. lift t i) ts"
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   159
  by (induct ts) simp_all
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   160
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   161
lemma subst_map [simp]:
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   162
    "\<And>t. subst (t \<^sub>\<degree>\<^sub>\<degree> ts) u i = subst t u i \<^sub>\<degree>\<^sub>\<degree> map (\<lambda>t. subst t u i) ts"
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   163
  by (induct ts) simp_all
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   164
9941
fe05af7ec816 renamed atts: rulify to rule_format, elimify to elim_format;
wenzelm
parents: 9906
diff changeset
   165
lemma lift_IT [rule_format, intro!]:
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   166
    "t \<in> IT \<Longrightarrow> \<forall>i. lift t i \<in> IT"
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   167
  apply (erule IT.induct)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   168
    apply (rule allI)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   169
    apply (simp (no_asm))
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   170
    apply (rule conjI)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   171
     apply
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   172
      (rule impI,
9716
9be481b4bc85 Lambda/InductTermi made new-style theory;
wenzelm
parents: 9661
diff changeset
   173
       rule IT.Var,
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   174
       erule lists.induct,
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   175
       simp (no_asm),
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   176
       rule lists.Nil,
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   177
       simp (no_asm),
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   178
       erule IntE,
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   179
       rule lists.Cons,
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   180
       blast,
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   181
       assumption)+
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   182
     apply auto
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   183
   done
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   184
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   185
lemma lifts_IT:
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   186
    "ts \<in> lists IT \<Longrightarrow> map (\<lambda>t. lift t 0) ts \<in> lists IT"
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   187
  by (induct ts) auto
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   188
11946
wenzelm
parents: 11945
diff changeset
   189
lemma lift_type [intro!]: "e \<turnstile> t : T \<Longrightarrow> e\<langle>i:U\<rangle> \<turnstile> lift t i : T"
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   190
proof -
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   191
  assume "e \<turnstile> t : T"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   192
  thus "\<And>i U. e\<langle>i:U\<rangle> \<turnstile> lift t i : T"
11946
wenzelm
parents: 11945
diff changeset
   193
    by induct auto
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   194
qed
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   195
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   196
lemma lift_typings [rule_format]:
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   197
  "\<forall>Ts. e \<tturnstile> ts : Ts \<longrightarrow> (e\<langle>i:U\<rangle>) \<tturnstile> (map (\<lambda>t. lift t i) ts) : Ts"
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   198
  apply (induct_tac ts)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   199
   apply simp
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   200
  apply (intro strip)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   201
  apply (case_tac Ts)
11946
wenzelm
parents: 11945
diff changeset
   202
   apply auto
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   203
  done
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   204
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   205
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9771
diff changeset
   206
subsection {* Substitution lemmas *}
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   207
9941
fe05af7ec816 renamed atts: rulify to rule_format, elimify to elim_format;
wenzelm
parents: 9906
diff changeset
   208
lemma subst_lemma [rule_format]:
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   209
  "e \<turnstile> t : T \<Longrightarrow> \<forall>e' i U u. e' \<turnstile> u : U \<longrightarrow> e = e'\<langle>i:U\<rangle> \<longrightarrow> e' \<turnstile> t[u/i] : T"
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   210
  apply (erule typing.induct)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   211
    apply (intro strip)
11946
wenzelm
parents: 11945
diff changeset
   212
    apply (rule_tac x = x and y = i in linorder_cases)
wenzelm
parents: 11945
diff changeset
   213
      apply auto
wenzelm
parents: 11945
diff changeset
   214
  apply blast
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   215
  done
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   216
9941
fe05af7ec816 renamed atts: rulify to rule_format, elimify to elim_format;
wenzelm
parents: 9906
diff changeset
   217
lemma substs_lemma [rule_format]:
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   218
  "e \<turnstile> u : T \<Longrightarrow> \<forall>Ts. (e\<langle>i:T\<rangle>) \<tturnstile> ts : Ts \<longrightarrow>
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   219
     e \<tturnstile> (map (\<lambda>t. t[u/i]) ts) : Ts"
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   220
  apply (induct_tac ts)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   221
   apply (intro strip)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   222
   apply (case_tac Ts)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   223
    apply simp
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   224
   apply simp
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   225
  apply (intro strip)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   226
  apply (case_tac Ts)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   227
   apply simp
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   228
  apply simp
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   229
  apply (erule conjE)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   230
  apply (erule subst_lemma)
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   231
   apply assumption
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   232
  apply (rule refl)
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   233
  done
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   234
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   235
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9771
diff changeset
   236
subsection {* Subject reduction *}
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   237
9941
fe05af7ec816 renamed atts: rulify to rule_format, elimify to elim_format;
wenzelm
parents: 9906
diff changeset
   238
lemma subject_reduction [rule_format]:
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   239
    "e \<turnstile> t : T \<Longrightarrow> \<forall>t'. t -> t' \<longrightarrow> e \<turnstile> t' : T"
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   240
  apply (erule typing.induct)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   241
    apply blast
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   242
   apply blast
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   243
  apply (intro strip)
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   244
  apply (ind_cases "s \<^sub>\<degree> t -> t'")
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   245
    apply hypsubst
11945
1b540afebf4d Rrightarrow;
wenzelm
parents: 11943
diff changeset
   246
    apply (ind_cases "env \<turnstile> Abs t : T \<Rightarrow> U")
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   247
    apply (rule subst_lemma)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   248
      apply assumption
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   249
     apply assumption
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   250
    apply (rule ext)
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   251
    apply (case_tac x)
11946
wenzelm
parents: 11945
diff changeset
   252
     apply auto
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   253
  done
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   254
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9771
diff changeset
   255
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9771
diff changeset
   256
subsection {* Additional lemmas *}
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   257
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   258
lemma app_last: "(t \<^sub>\<degree>\<^sub>\<degree> ts) \<^sub>\<degree> u = t \<^sub>\<degree>\<^sub>\<degree> (ts @ [u])"
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   259
  by simp
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   260
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   261
lemma subst_Var_IT [rule_format]: "r \<in> IT \<Longrightarrow> \<forall>i j. r[Var i/j] \<in> IT"
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   262
  apply (erule IT.induct)
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9771
diff changeset
   263
    txt {* Case @{term Var}: *}
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   264
    apply (intro strip)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   265
    apply (simp (no_asm) add: subst_Var)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   266
    apply
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   267
    ((rule conjI impI)+,
9716
9be481b4bc85 Lambda/InductTermi made new-style theory;
wenzelm
parents: 9661
diff changeset
   268
      rule IT.Var,
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   269
      erule lists.induct,
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   270
      simp (no_asm),
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   271
      rule lists.Nil,
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   272
      simp (no_asm),
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   273
      erule IntE,
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   274
      erule CollectE,
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   275
      rule lists.Cons,
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   276
      fast,
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   277
      assumption)+
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9771
diff changeset
   278
   txt {* Case @{term Lambda}: *}
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   279
   apply (intro strip)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   280
   apply simp
9716
9be481b4bc85 Lambda/InductTermi made new-style theory;
wenzelm
parents: 9661
diff changeset
   281
   apply (rule IT.Lambda)
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   282
   apply fast
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9771
diff changeset
   283
  txt {* Case @{term Beta}: *}
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   284
  apply (intro strip)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   285
  apply (simp (no_asm_use) add: subst_subst [symmetric])
9716
9be481b4bc85 Lambda/InductTermi made new-style theory;
wenzelm
parents: 9661
diff changeset
   286
  apply (rule IT.Beta)
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   287
   apply auto
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   288
  done
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   289
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   290
lemma Var_IT: "Var n \<in> IT"
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   291
  apply (subgoal_tac "Var n \<^sub>\<degree>\<^sub>\<degree> [] \<in> IT")
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   292
   apply simp
9716
9be481b4bc85 Lambda/InductTermi made new-style theory;
wenzelm
parents: 9661
diff changeset
   293
  apply (rule IT.Var)
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   294
  apply (rule lists.Nil)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   295
  done
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   296
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   297
lemma app_Var_IT: "t \<in> IT \<Longrightarrow> t \<^sub>\<degree> Var i \<in> IT"
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   298
  apply (erule IT.induct)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   299
    apply (subst app_last)
9716
9be481b4bc85 Lambda/InductTermi made new-style theory;
wenzelm
parents: 9661
diff changeset
   300
    apply (rule IT.Var)
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   301
    apply simp
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   302
    apply (rule lists.Cons)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   303
     apply (rule Var_IT)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   304
    apply (rule lists.Nil)
9906
5c027cca6262 updated attribute names;
wenzelm
parents: 9811
diff changeset
   305
   apply (rule IT.Beta [where ?ss = "[]", unfolded foldl_Nil [THEN eq_reflection]])
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   306
    apply (erule subst_Var_IT)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   307
   apply (rule Var_IT)
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   308
  apply (subst app_last)
9716
9be481b4bc85 Lambda/InductTermi made new-style theory;
wenzelm
parents: 9661
diff changeset
   309
  apply (rule IT.Beta)
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   310
   apply (subst app_last [symmetric])
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   311
   apply assumption
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   312
  apply assumption
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   313
  done
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   314
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   315
lemma type_induct [induct type]:
11945
1b540afebf4d Rrightarrow;
wenzelm
parents: 11943
diff changeset
   316
  "(\<And>T. (\<And>T1 T2. T = T1 \<Rightarrow> T2 \<Longrightarrow> P T1) \<Longrightarrow>
1b540afebf4d Rrightarrow;
wenzelm
parents: 11943
diff changeset
   317
   (\<And>T1 T2. T = T1 \<Rightarrow> T2 \<Longrightarrow> P T2) \<Longrightarrow> P T) \<Longrightarrow> P T"
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   318
proof -
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   319
  case rule_context
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   320
  show ?thesis
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   321
  proof (induct T)
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   322
    case Atom
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   323
    show ?case by (rule rule_context) simp_all
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   324
  next
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   325
    case Fun
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   326
    show ?case  by (rule rule_context) (insert Fun, simp_all)
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   327
  qed
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   328
qed
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   329
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   330
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9771
diff changeset
   331
subsection {* Well-typed substitution preserves termination *}
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   332
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   333
lemma subst_type_IT:
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   334
  "\<And>t e T u i. t \<in> IT \<Longrightarrow> e\<langle>i:U\<rangle> \<turnstile> t : T \<Longrightarrow>
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   335
    u \<in> IT \<Longrightarrow> e \<turnstile> u : U \<Longrightarrow> t[u/i] \<in> IT"
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   336
  (is "PROP ?P U" is "\<And>t e T u i. _ \<Longrightarrow> PROP ?Q t e T u i U")
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   337
proof (induct U)
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   338
  fix T t
11945
1b540afebf4d Rrightarrow;
wenzelm
parents: 11943
diff changeset
   339
  assume MI1: "\<And>T1 T2. T = T1 \<Rightarrow> T2 \<Longrightarrow> PROP ?P T1"
1b540afebf4d Rrightarrow;
wenzelm
parents: 11943
diff changeset
   340
  assume MI2: "\<And>T1 T2. T = T1 \<Rightarrow> T2 \<Longrightarrow> PROP ?P T2"
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   341
  assume "t \<in> IT"
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   342
  thus "\<And>e T' u i. PROP ?Q t e T' u i T"
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   343
  proof induct
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   344
    fix e T' u i
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   345
    assume uIT: "u \<in> IT"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   346
    assume uT: "e \<turnstile> u : T"
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   347
    {
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   348
      case (Var n rs)
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   349
      assume nT: "e\<langle>i:T\<rangle> \<turnstile> Var n \<^sub>\<degree>\<^sub>\<degree> rs : T'"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   350
      let ?ty = "{t. \<exists>T'. e\<langle>i:T\<rangle> \<turnstile> t : T'}"
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   351
      let ?R = "\<lambda>t. \<forall>e T' u i.
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   352
        e\<langle>i:T\<rangle> \<turnstile> t : T' \<longrightarrow> u \<in> IT \<longrightarrow> e \<turnstile> u : T \<longrightarrow> t[u/i] \<in> IT"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   353
      show "(Var n \<^sub>\<degree>\<^sub>\<degree> rs)[u/i] \<in> IT"
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   354
      proof (cases "n = i")
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   355
        case True
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   356
        show ?thesis
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   357
        proof (cases rs)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   358
          case Nil
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   359
          with uIT True show ?thesis by simp
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   360
        next
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   361
          case (Cons a as)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   362
          with nT have "e\<langle>i:T\<rangle> \<turnstile> Var n \<^sub>\<degree> a \<^sub>\<degree>\<^sub>\<degree> as : T'" by simp
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   363
          then obtain Ts
11945
1b540afebf4d Rrightarrow;
wenzelm
parents: 11943
diff changeset
   364
              where headT: "e\<langle>i:T\<rangle> \<turnstile> Var n \<^sub>\<degree> a : Ts \<Rrightarrow> T'"
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   365
              and argsT: "(e\<langle>i:T\<rangle>) \<tturnstile> as : Ts"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   366
            by (rule list_app_typeE)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   367
          from headT obtain T''
11945
1b540afebf4d Rrightarrow;
wenzelm
parents: 11943
diff changeset
   368
              where varT: "e\<langle>i:T\<rangle> \<turnstile> Var n : T'' \<Rightarrow> Ts \<Rrightarrow> T'"
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   369
              and argT: "e\<langle>i:T\<rangle> \<turnstile> a : T''"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   370
            by cases simp_all
11945
1b540afebf4d Rrightarrow;
wenzelm
parents: 11943
diff changeset
   371
          from varT True have T: "T = T'' \<Rightarrow> Ts \<Rrightarrow> T'"
11946
wenzelm
parents: 11945
diff changeset
   372
            by cases auto
11945
1b540afebf4d Rrightarrow;
wenzelm
parents: 11943
diff changeset
   373
          with uT have uT': "e \<turnstile> u : T'' \<Rightarrow> Ts \<Rrightarrow> T'" by simp
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   374
          from Var have SI: "?R a" by cases (simp_all add: Cons)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   375
          from T have "(Var 0 \<^sub>\<degree>\<^sub>\<degree> map (\<lambda>t. lift t 0)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   376
            (map (\<lambda>t. t[u/i]) as))[(u \<^sub>\<degree> a[u/i])/0] \<in> IT"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   377
          proof (rule MI2)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   378
            from T have "(lift u 0 \<^sub>\<degree> Var 0)[a[u/i]/0] \<in> IT"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   379
            proof (rule MI1)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   380
              have "lift u 0 \<in> IT" by (rule lift_IT)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   381
              thus "lift u 0 \<^sub>\<degree> Var 0 \<in> IT" by (rule app_Var_IT)
11945
1b540afebf4d Rrightarrow;
wenzelm
parents: 11943
diff changeset
   382
              show "e\<langle>0:T''\<rangle> \<turnstile> lift u 0 \<^sub>\<degree> Var 0 : Ts \<Rrightarrow> T'"
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   383
              proof (rule typing.App)
11945
1b540afebf4d Rrightarrow;
wenzelm
parents: 11943
diff changeset
   384
                show "e\<langle>0:T''\<rangle> \<turnstile> lift u 0 : T'' \<Rightarrow> Ts \<Rrightarrow> T'"
11946
wenzelm
parents: 11945
diff changeset
   385
                  by (rule lift_type) (rule uT')
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   386
                show "e\<langle>0:T''\<rangle> \<turnstile> Var 0 : T''"
11946
wenzelm
parents: 11945
diff changeset
   387
                  by (rule typing.Var) simp
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   388
              qed
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   389
              from argT uIT uT show "a[u/i] \<in> IT"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   390
                by (rule SI[rule_format])
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   391
              from argT uT show "e \<turnstile> a[u/i] : T''"
11946
wenzelm
parents: 11945
diff changeset
   392
                by (rule subst_lemma) simp
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   393
            qed
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   394
            thus "u \<^sub>\<degree> a[u/i] \<in> IT" by simp
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   395
            from Var have "as \<in> lists {t. ?R t}"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   396
              by cases (simp_all add: Cons)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   397
            moreover from argsT have "as \<in> lists ?ty"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   398
              by (rule lists_typings)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   399
            ultimately have "as \<in> lists ({t. ?R t} \<inter> ?ty)"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   400
              by (rule lists_IntI)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   401
            hence "map (\<lambda>t. lift t 0) (map (\<lambda>t. t[u/i]) as) \<in> lists IT"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   402
              (is "(?ls as) \<in> _")
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   403
            proof induct
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   404
              case Nil
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   405
              show ?case by fastsimp
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   406
            next
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   407
              case (Cons b bs)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   408
              hence I: "?R b" by simp
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   409
              from Cons obtain U where "e\<langle>i:T\<rangle> \<turnstile> b : U" by fast
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   410
              with uT uIT I have "b[u/i] \<in> IT" by simp
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   411
              hence "lift (b[u/i]) 0 \<in> IT" by (rule lift_IT)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   412
              hence "lift (b[u/i]) 0 # ?ls bs \<in> lists IT"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   413
                by (rule lists.Cons) (rule Cons)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   414
              thus ?case by simp
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   415
            qed
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   416
            thus "Var 0 \<^sub>\<degree>\<^sub>\<degree> ?ls as \<in> IT" by (rule IT.Var)
11945
1b540afebf4d Rrightarrow;
wenzelm
parents: 11943
diff changeset
   417
            have "e\<langle>0:Ts \<Rrightarrow> T'\<rangle> \<turnstile> Var 0 : Ts \<Rrightarrow> T'"
11946
wenzelm
parents: 11945
diff changeset
   418
              by (rule typing.Var) simp
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   419
            moreover from uT argsT have "e \<tturnstile> map (\<lambda>t. t[u/i]) as : Ts"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   420
              by (rule substs_lemma)
11945
1b540afebf4d Rrightarrow;
wenzelm
parents: 11943
diff changeset
   421
            hence "(e\<langle>0:Ts \<Rrightarrow> T'\<rangle>) \<tturnstile> ?ls as : Ts"
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   422
              by (rule lift_typings)
11945
1b540afebf4d Rrightarrow;
wenzelm
parents: 11943
diff changeset
   423
            ultimately show "e\<langle>0:Ts \<Rrightarrow> T'\<rangle> \<turnstile> Var 0 \<^sub>\<degree>\<^sub>\<degree> ?ls as : T'"
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   424
              by (rule list_app_typeI)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   425
            from argT uT have "e \<turnstile> a[u/i] : T''"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   426
              by (rule subst_lemma) (rule refl)
11945
1b540afebf4d Rrightarrow;
wenzelm
parents: 11943
diff changeset
   427
            with uT' show "e \<turnstile> u \<^sub>\<degree> a[u/i] : Ts \<Rrightarrow> T'"
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   428
              by (rule typing.App)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   429
          qed
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   430
          with Cons True show ?thesis
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   431
            by (simp add: map_compose [symmetric] o_def)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   432
        qed
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   433
      next
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   434
        case False
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   435
        from Var have "rs \<in> lists {t. ?R t}" by simp
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   436
        moreover from nT obtain Ts where "(e\<langle>i:T\<rangle>) \<tturnstile> rs : Ts"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   437
          by (rule list_app_typeE)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   438
        hence "rs \<in> lists ?ty" by (rule lists_typings)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   439
        ultimately have "rs \<in> lists ({t. ?R t} \<inter> ?ty)"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   440
          by (rule lists_IntI)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   441
        hence "map (\<lambda>x. x[u/i]) rs \<in> lists IT"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   442
        proof induct
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   443
          case Nil
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   444
          show ?case by fastsimp
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   445
        next
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   446
          case (Cons a as)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   447
          hence I: "?R a" by simp
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   448
          from Cons obtain U where "e\<langle>i:T\<rangle> \<turnstile> a : U" by fast
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   449
          with uT uIT I have "a[u/i] \<in> IT" by simp
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   450
          hence "(a[u/i] # map (\<lambda>t. t[u/i]) as) \<in> lists IT"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   451
            by (rule lists.Cons) (rule Cons)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   452
          thus ?case by simp
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   453
        qed
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   454
        with False show ?thesis by (auto simp add: subst_Var)
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   455
      qed
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   456
    next
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   457
      case (Lambda r)
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   458
      assume "e\<langle>i:T\<rangle> \<turnstile> Abs r : T'"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   459
        and "\<And>e T' u i. PROP ?Q r e T' u i T"
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   460
      with uIT uT show "Abs r[u/i] \<in> IT"
11946
wenzelm
parents: 11945
diff changeset
   461
        by fastsimp
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   462
    next
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   463
      case (Beta r a as)
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   464
      assume T: "e\<langle>i:T\<rangle> \<turnstile> Abs r \<^sub>\<degree> a \<^sub>\<degree>\<^sub>\<degree> as : T'"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   465
      assume SI1: "\<And>e T' u i. PROP ?Q (r[a/0] \<^sub>\<degree>\<^sub>\<degree> as) e T' u i T"
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   466
      assume SI2: "\<And>e T' u i. PROP ?Q a e T' u i T"
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   467
      have "Abs (r[lift u 0/Suc i]) \<^sub>\<degree> a[u/i] \<^sub>\<degree>\<^sub>\<degree> map (\<lambda>t. t[u/i]) as \<in> IT"
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   468
      proof (rule IT.Beta)
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   469
        have "Abs r \<^sub>\<degree> a \<^sub>\<degree>\<^sub>\<degree> as -> r[a/0] \<^sub>\<degree>\<^sub>\<degree> as"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   470
          by (rule apps_preserves_beta) (rule beta.beta)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   471
        with T have "e\<langle>i:T\<rangle> \<turnstile> r[a/0] \<^sub>\<degree>\<^sub>\<degree> as : T'"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   472
          by (rule subject_reduction)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   473
        hence "(r[a/0] \<^sub>\<degree>\<^sub>\<degree> as)[u/i] \<in> IT"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   474
          by (rule SI1)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   475
        thus "r[lift u 0/Suc i][a[u/i]/0] \<^sub>\<degree>\<^sub>\<degree> map (\<lambda>t. t[u/i]) as \<in> IT"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   476
          by (simp del: subst_map add: subst_subst subst_map [symmetric])
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   477
        from T obtain U where "e\<langle>i:T\<rangle> \<turnstile> Abs r \<^sub>\<degree> a : U"
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   478
          by (rule list_app_typeE) fast
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   479
        then obtain T'' where "e\<langle>i:T\<rangle> \<turnstile> a : T''" by cases simp_all
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   480
        thus "a[u/i] \<in> IT" by (rule SI2)
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   481
      qed
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   482
      thus "(Abs r \<^sub>\<degree> a \<^sub>\<degree>\<^sub>\<degree> as)[u/i] \<in> IT" by simp
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   483
    }
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   484
  qed
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   485
qed
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   486
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   487
subsection {* Well-typed terms are strongly normalizing *}
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   488
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   489
lemma type_implies_IT: "e \<turnstile> t : T \<Longrightarrow> t \<in> IT"
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   490
proof -
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   491
  assume "e \<turnstile> t : T"
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   492
  thus ?thesis
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   493
  proof induct
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   494
    case Var
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   495
    show ?case by (rule Var_IT)
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   496
  next
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   497
    case Abs
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   498
    show ?case by (rule IT.Lambda)
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   499
  next
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   500
    case (App T U e s t)
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   501
    have "(Var 0 \<^sub>\<degree> lift t 0)[s/0] \<in> IT"
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   502
    proof (rule subst_type_IT)
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   503
      have "lift t 0 \<in> IT" by (rule lift_IT)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   504
      hence "[lift t 0] \<in> lists IT" by (rule lists.Cons) (rule lists.Nil)
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   505
      hence "Var 0 \<^sub>\<degree>\<^sub>\<degree> [lift t 0] \<in> IT" by (rule IT.Var)
11946
wenzelm
parents: 11945
diff changeset
   506
      also have "Var 0 \<^sub>\<degree>\<^sub>\<degree> [lift t 0] = Var 0 \<^sub>\<degree> lift t 0" by simp
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   507
      finally show "\<dots> \<in> IT" .
11945
1b540afebf4d Rrightarrow;
wenzelm
parents: 11943
diff changeset
   508
      have "e\<langle>0:T \<Rightarrow> U\<rangle> \<turnstile> Var 0 : T \<Rightarrow> U"
11946
wenzelm
parents: 11945
diff changeset
   509
        by (rule typing.Var) simp
11945
1b540afebf4d Rrightarrow;
wenzelm
parents: 11943
diff changeset
   510
      moreover have "e\<langle>0:T \<Rightarrow> U\<rangle> \<turnstile> lift t 0 : T"
11946
wenzelm
parents: 11945
diff changeset
   511
        by (rule lift_type)
11945
1b540afebf4d Rrightarrow;
wenzelm
parents: 11943
diff changeset
   512
      ultimately show "e\<langle>0:T \<Rightarrow> U\<rangle> \<turnstile> Var 0 \<^sub>\<degree> lift t 0 : U"
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   513
        by (rule typing.App)
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   514
    qed
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   515
    thus ?case by simp
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   516
  qed
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   517
qed
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   518
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   519
theorem type_implies_termi: "e \<turnstile> t : T \<Longrightarrow> t \<in> termi beta"
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   520
proof -
11943
a9672446b45f tuned notation;
wenzelm
parents: 11935
diff changeset
   521
  assume "e \<turnstile> t : T"
11935
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   522
  hence "t \<in> IT" by (rule type_implies_IT)
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   523
  thus ?thesis by (rule IT_implies_termi)
cbcba2092d6b Replaced main proof by proper Isar script.
berghofe
parents: 11704
diff changeset
   524
qed
9622
d9aa8ca06bc2 converted to new-style theory;
wenzelm
parents: 9114
diff changeset
   525
11638
2c3dee321b4b inductive: no collective atts;
wenzelm
parents: 10567
diff changeset
   526
end