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