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