src/HOL/Lambda/Eta.thy
author berghofe
Wed, 07 Feb 2007 17:45:03 +0100
changeset 22272 aac2ac7c32fd
parent 21404 eb85850d3eb7
child 22422 ee19cdb07528
permissions -rw-r--r--
- Adapted to new inductive definition package - More elegant proof of eta postponement theorem inspired by Andreas Abel
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1269
ee011b365770 New version with eta reduction.
nipkow
parents:
diff changeset
     1
(*  Title:      HOL/Lambda/Eta.thy
ee011b365770 New version with eta reduction.
nipkow
parents:
diff changeset
     2
    ID:         $Id$
15522
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
     3
    Author:     Tobias Nipkow and Stefan Berghofer
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
     4
    Copyright   1995, 2005 TU Muenchen
1269
ee011b365770 New version with eta reduction.
nipkow
parents:
diff changeset
     5
*)
ee011b365770 New version with eta reduction.
nipkow
parents:
diff changeset
     6
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
     7
header {* Eta-reduction *}
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
     8
16417
9bc16273c2d4 migrated theory headers to new format
haftmann
parents: 15522
diff changeset
     9
theory Eta imports ParRed begin
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    10
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    11
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    12
subsection {* Definition of eta-reduction and relatives *}
1269
ee011b365770 New version with eta reduction.
nipkow
parents:
diff changeset
    13
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    14
consts
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    15
  free :: "dB => nat => bool"
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    16
primrec
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    17
  "free (Var j) i = (j = i)"
12011
1a3a7b3cd9bb tuned notation (degree instead of dollar);
wenzelm
parents: 11638
diff changeset
    18
  "free (s \<degree> t) i = (free s i \<or> free t i)"
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    19
  "free (Abs s) i = free s (i + 1)"
1269
ee011b365770 New version with eta reduction.
nipkow
parents:
diff changeset
    20
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
    21
inductive2 eta :: "[dB, dB] => bool"  (infixl "\<rightarrow>\<^sub>\<eta>" 50)
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
    22
  where
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
    23
    eta [simp, intro]: "\<not> free s 0 ==> Abs (s \<degree> Var 0) \<rightarrow>\<^sub>\<eta> s[dummy/0]"
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
    24
  | appL [simp, intro]: "s \<rightarrow>\<^sub>\<eta> t ==> s \<degree> u \<rightarrow>\<^sub>\<eta> t \<degree> u"
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
    25
  | appR [simp, intro]: "s \<rightarrow>\<^sub>\<eta> t ==> u \<degree> s \<rightarrow>\<^sub>\<eta> u \<degree> t"
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
    26
  | abs [simp, intro]: "s \<rightarrow>\<^sub>\<eta> t ==> Abs s \<rightarrow>\<^sub>\<eta> Abs t"
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
    27
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
    28
abbreviation
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
    29
  eta_reds :: "[dB, dB] => bool"   (infixl "-e>>" 50) where
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
    30
  "s -e>> t == eta^** s t"
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
    31
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
    32
abbreviation
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
    33
  eta_red0 :: "[dB, dB] => bool"   (infixl "-e>=" 50) where
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
    34
  "s -e>= t == eta^== s t"
1269
ee011b365770 New version with eta reduction.
nipkow
parents:
diff changeset
    35
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
    36
notation (xsymbols)
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
    37
  eta_reds  (infixl "\<rightarrow>\<^sub>\<eta>\<^sup>*" 50) and
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
    38
  eta_red0  (infixl "\<rightarrow>\<^sub>\<eta>\<^sup>=" 50)
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    39
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
    40
inductive_cases2 eta_cases [elim!]:
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
    41
  "Abs s \<rightarrow>\<^sub>\<eta> z"
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
    42
  "s \<degree> t \<rightarrow>\<^sub>\<eta> u"
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
    43
  "Var i \<rightarrow>\<^sub>\<eta> t"
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    44
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    45
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    46
subsection "Properties of eta, subst and free"
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    47
18241
afdba6b3e383 tuned induction proofs;
wenzelm
parents: 17589
diff changeset
    48
lemma subst_not_free [simp]: "\<not> free s i \<Longrightarrow> s[t/i] = s[u/i]"
20503
503ac4c5ef91 induct method: renamed 'fixing' to 'arbitrary';
wenzelm
parents: 20217
diff changeset
    49
  by (induct s arbitrary: i t u) (simp_all add: subst_Var)
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    50
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    51
lemma free_lift [simp]:
18241
afdba6b3e383 tuned induction proofs;
wenzelm
parents: 17589
diff changeset
    52
    "free (lift t k) i = (i < k \<and> free t i \<or> k < i \<and> free t (i - 1))"
20503
503ac4c5ef91 induct method: renamed 'fixing' to 'arbitrary';
wenzelm
parents: 20217
diff changeset
    53
  apply (induct t arbitrary: i k)
20217
25b068a99d2b linear arithmetic splits certain operators (e.g. min, max, abs)
webertj
parents: 19656
diff changeset
    54
  apply (auto cong: conj_cong)
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    55
  done
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    56
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    57
lemma free_subst [simp]:
18241
afdba6b3e383 tuned induction proofs;
wenzelm
parents: 17589
diff changeset
    58
    "free (s[t/k]) i =
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    59
      (free s k \<and> free t i \<or> free s (if i < k then i else i + 1))"
20503
503ac4c5ef91 induct method: renamed 'fixing' to 'arbitrary';
wenzelm
parents: 20217
diff changeset
    60
  apply (induct s arbitrary: i k t)
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    61
    prefer 2
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    62
    apply simp
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    63
    apply blast
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    64
   prefer 2
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    65
   apply simp
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    66
  apply (simp add: diff_Suc subst_Var split: nat.split)
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    67
  done
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    68
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
    69
lemma free_eta: "s \<rightarrow>\<^sub>\<eta> t ==> free t i = free s i"
20503
503ac4c5ef91 induct method: renamed 'fixing' to 'arbitrary';
wenzelm
parents: 20217
diff changeset
    70
  by (induct arbitrary: i set: eta) (simp_all cong: conj_cong)
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    71
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    72
lemma not_free_eta:
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
    73
    "[| s \<rightarrow>\<^sub>\<eta> t; \<not> free s i |] ==> \<not> free t i"
18241
afdba6b3e383 tuned induction proofs;
wenzelm
parents: 17589
diff changeset
    74
  by (simp add: free_eta)
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    75
18241
afdba6b3e383 tuned induction proofs;
wenzelm
parents: 17589
diff changeset
    76
lemma eta_subst [simp]:
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
    77
    "s \<rightarrow>\<^sub>\<eta> t ==> s[u/i] \<rightarrow>\<^sub>\<eta> t[u/i]"
20503
503ac4c5ef91 induct method: renamed 'fixing' to 'arbitrary';
wenzelm
parents: 20217
diff changeset
    78
  by (induct arbitrary: u i set: eta) (simp_all add: subst_subst [symmetric])
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    79
18241
afdba6b3e383 tuned induction proofs;
wenzelm
parents: 17589
diff changeset
    80
theorem lift_subst_dummy: "\<not> free s i \<Longrightarrow> lift (s[dummy/i]) i = s"
20503
503ac4c5ef91 induct method: renamed 'fixing' to 'arbitrary';
wenzelm
parents: 20217
diff changeset
    81
  by (induct s arbitrary: i dummy) simp_all
15522
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
    82
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    83
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    84
subsection "Confluence of eta"
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    85
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
    86
lemma square_eta: "square eta eta (eta^==) (eta^==)"
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    87
  apply (unfold square_def id_def)
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    88
  apply (rule impI [THEN allI [THEN allI]])
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    89
  apply simp
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    90
  apply (erule eta.induct)
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    91
     apply (slowsimp intro: subst_not_free eta_subst free_eta [THEN iffD1])
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    92
    apply safe
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    93
       prefer 5
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    94
       apply (blast intro!: eta_subst intro: free_eta [THEN iffD1])
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    95
      apply blast+
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    96
  done
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    97
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    98
theorem eta_confluent: "confluent eta"
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
    99
  apply (rule square_eta [THEN square_reflcl_confluent])
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   100
  done
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   101
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   102
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   103
subsection "Congruence rules for eta*"
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   104
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   105
lemma rtrancl_eta_Abs: "s \<rightarrow>\<^sub>\<eta>\<^sup>* s' ==> Abs s \<rightarrow>\<^sub>\<eta>\<^sup>* Abs s'"
18241
afdba6b3e383 tuned induction proofs;
wenzelm
parents: 17589
diff changeset
   106
  by (induct set: rtrancl)
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   107
    (blast intro: rtrancl.rtrancl_into_rtrancl)+
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   108
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   109
lemma rtrancl_eta_AppL: "s \<rightarrow>\<^sub>\<eta>\<^sup>* s' ==> s \<degree> t \<rightarrow>\<^sub>\<eta>\<^sup>* s' \<degree> t"
18241
afdba6b3e383 tuned induction proofs;
wenzelm
parents: 17589
diff changeset
   110
  by (induct set: rtrancl)
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   111
    (blast intro: rtrancl.rtrancl_into_rtrancl)+
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   112
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   113
lemma rtrancl_eta_AppR: "t \<rightarrow>\<^sub>\<eta>\<^sup>* t' ==> s \<degree> t \<rightarrow>\<^sub>\<eta>\<^sup>* s \<degree> t'"
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   114
  by (induct set: rtrancl) (blast intro: rtrancl.rtrancl_into_rtrancl)+
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   115
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   116
lemma rtrancl_eta_App:
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   117
    "[| s \<rightarrow>\<^sub>\<eta>\<^sup>* s'; t \<rightarrow>\<^sub>\<eta>\<^sup>* t' |] ==> s \<degree> t \<rightarrow>\<^sub>\<eta>\<^sup>* s' \<degree> t'"
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   118
  by (blast intro!: rtrancl_eta_AppL rtrancl_eta_AppR intro: rtrancl_trans')
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   119
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   120
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   121
subsection "Commutation of beta and eta"
1900
c7a869229091 Simplified primrec definitions.
berghofe
parents: 1789
diff changeset
   122
18241
afdba6b3e383 tuned induction proofs;
wenzelm
parents: 17589
diff changeset
   123
lemma free_beta:
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   124
    "s \<rightarrow>\<^sub>\<beta> t ==> free t i \<Longrightarrow> free s i"
20503
503ac4c5ef91 induct method: renamed 'fixing' to 'arbitrary';
wenzelm
parents: 20217
diff changeset
   125
  by (induct arbitrary: i set: beta) auto
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   126
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   127
lemma beta_subst [intro]: "s \<rightarrow>\<^sub>\<beta> t ==> s[u/i] \<rightarrow>\<^sub>\<beta> t[u/i]"
20503
503ac4c5ef91 induct method: renamed 'fixing' to 'arbitrary';
wenzelm
parents: 20217
diff changeset
   128
  by (induct arbitrary: u i set: beta) (simp_all add: subst_subst [symmetric])
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   129
18241
afdba6b3e383 tuned induction proofs;
wenzelm
parents: 17589
diff changeset
   130
lemma subst_Var_Suc [simp]: "t[Var i/i] = t[Var(i)/i + 1]"
20503
503ac4c5ef91 induct method: renamed 'fixing' to 'arbitrary';
wenzelm
parents: 20217
diff changeset
   131
  by (induct t arbitrary: i) (auto elim!: linorder_neqE simp: subst_Var)
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   132
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   133
lemma eta_lift [simp]: "s \<rightarrow>\<^sub>\<eta> t ==> lift s i \<rightarrow>\<^sub>\<eta> lift t i"
20503
503ac4c5ef91 induct method: renamed 'fixing' to 'arbitrary';
wenzelm
parents: 20217
diff changeset
   134
  by (induct arbitrary: i set: eta) simp_all
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   135
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   136
lemma rtrancl_eta_subst: "s \<rightarrow>\<^sub>\<eta> t \<Longrightarrow> u[s/i] \<rightarrow>\<^sub>\<eta>\<^sup>* u[t/i]"
20503
503ac4c5ef91 induct method: renamed 'fixing' to 'arbitrary';
wenzelm
parents: 20217
diff changeset
   137
  apply (induct u arbitrary: s t i)
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   138
    apply (simp_all add: subst_Var)
18241
afdba6b3e383 tuned induction proofs;
wenzelm
parents: 17589
diff changeset
   139
    apply blast
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   140
   apply (blast intro: rtrancl_eta_App)
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   141
  apply (blast intro!: rtrancl_eta_Abs eta_lift)
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   142
  done
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   143
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   144
lemma rtrancl_eta_subst':
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   145
  assumes eta: "s \<rightarrow>\<^sub>\<eta>\<^sup>* t"
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   146
  shows "s[u/i] \<rightarrow>\<^sub>\<eta>\<^sup>* t[u/i]" using eta
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   147
  by induct (iprover intro: eta_subst)+
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   148
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   149
lemma rtrancl_eta_subst'':
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   150
  assumes eta: "s \<rightarrow>\<^sub>\<eta>\<^sup>* t"
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   151
  shows "u[s/i] \<rightarrow>\<^sub>\<eta>\<^sup>* u[t/i]" using eta
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   152
  by induct (iprover intro: rtrancl_eta_subst rtrancl_trans')+
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   153
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   154
lemma square_beta_eta: "square beta eta (eta^**) (beta^==)"
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   155
  apply (unfold square_def)
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   156
  apply (rule impI [THEN allI [THEN allI]])
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   157
  apply (erule beta.induct)
11183
0476c6e07bca minor tweaks to speed the proofs
paulson
parents: 9941
diff changeset
   158
     apply (slowsimp intro: rtrancl_eta_subst eta_subst)
0476c6e07bca minor tweaks to speed the proofs
paulson
parents: 9941
diff changeset
   159
    apply (blast intro: rtrancl_eta_AppL)
0476c6e07bca minor tweaks to speed the proofs
paulson
parents: 9941
diff changeset
   160
   apply (blast intro: rtrancl_eta_AppR)
0476c6e07bca minor tweaks to speed the proofs
paulson
parents: 9941
diff changeset
   161
  apply simp;
0476c6e07bca minor tweaks to speed the proofs
paulson
parents: 9941
diff changeset
   162
  apply (slowsimp intro: rtrancl_eta_Abs free_beta
9858
c3ac6128b649 use 'iff' modifier;
wenzelm
parents: 9827
diff changeset
   163
    iff del: dB.distinct simp: dB.distinct)    (*23 seconds?*)
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   164
  done
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   165
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   166
lemma confluent_beta_eta: "confluent (join beta eta)"
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   167
  apply (assumption |
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   168
    rule square_rtrancl_reflcl_commute confluent_Un
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   169
      beta_confluent eta_confluent square_beta_eta)+
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   170
  done
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   171
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   172
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   173
subsection "Implicit definition of eta"
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   174
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   175
text {* @{term "Abs (lift s 0 \<degree> Var 0) \<rightarrow>\<^sub>\<eta> s"} *}
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   176
18241
afdba6b3e383 tuned induction proofs;
wenzelm
parents: 17589
diff changeset
   177
lemma not_free_iff_lifted:
afdba6b3e383 tuned induction proofs;
wenzelm
parents: 17589
diff changeset
   178
    "(\<not> free s i) = (\<exists>t. s = lift t i)"
20503
503ac4c5ef91 induct method: renamed 'fixing' to 'arbitrary';
wenzelm
parents: 20217
diff changeset
   179
  apply (induct s arbitrary: i)
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   180
    apply simp
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   181
    apply (rule iffI)
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   182
     apply (erule linorder_neqE)
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   183
      apply (rule_tac x = "Var nat" in exI)
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   184
      apply simp
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   185
     apply (rule_tac x = "Var (nat - 1)" in exI)
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   186
     apply simp
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   187
    apply clarify
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   188
    apply (rule notE)
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   189
     prefer 2
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   190
     apply assumption
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   191
    apply (erule thin_rl)
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   192
    apply (case_tac t)
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   193
      apply simp
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   194
     apply simp
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   195
    apply simp
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   196
   apply simp
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   197
   apply (erule thin_rl)
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   198
   apply (erule thin_rl)
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   199
   apply (rule iffI)
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   200
    apply (elim conjE exE)
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   201
    apply (rename_tac u1 u2)
12011
1a3a7b3cd9bb tuned notation (degree instead of dollar);
wenzelm
parents: 11638
diff changeset
   202
    apply (rule_tac x = "u1 \<degree> u2" in exI)
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   203
    apply simp
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   204
   apply (erule exE)
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   205
   apply (erule rev_mp)
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   206
   apply (case_tac t)
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   207
     apply simp
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   208
    apply simp
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   209
    apply blast
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   210
   apply simp
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   211
  apply simp
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   212
  apply (erule thin_rl)
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   213
  apply (rule iffI)
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   214
   apply (erule exE)
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   215
   apply (rule_tac x = "Abs t" in exI)
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   216
   apply simp
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   217
  apply (erule exE)
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   218
  apply (erule rev_mp)
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   219
  apply (case_tac t)
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   220
    apply simp
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   221
   apply simp
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   222
  apply simp
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   223
  apply blast
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   224
  done
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   225
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   226
theorem explicit_is_implicit:
12011
1a3a7b3cd9bb tuned notation (degree instead of dollar);
wenzelm
parents: 11638
diff changeset
   227
  "(\<forall>s u. (\<not> free s 0) --> R (Abs (s \<degree> Var 0)) (s[u/0])) =
1a3a7b3cd9bb tuned notation (degree instead of dollar);
wenzelm
parents: 11638
diff changeset
   228
    (\<forall>s. R (Abs (lift s 0 \<degree> Var 0)) s)"
18241
afdba6b3e383 tuned induction proofs;
wenzelm
parents: 17589
diff changeset
   229
  by (auto simp add: not_free_iff_lifted)
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9102
diff changeset
   230
15522
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   231
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   232
subsection {* Eta-postponement theorem *}
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   233
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   234
text {*
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   235
  Based on a paper proof due to Andreas Abel.
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   236
  Unlike the proof by Masako Takahashi \cite{Takahashi-IandC}, it does not
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   237
  use parallel eta reduction, which only seems to complicate matters unnecessarily.
15522
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   238
*}
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   239
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   240
theorem eta_case:
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   241
  assumes free: "\<not> free s 0"
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   242
  and s: "s[dummy/0] => u"
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   243
  shows "\<exists>t'. Abs (s \<degree> Var 0) => t' \<and> t' \<rightarrow>\<^sub>\<eta>\<^sup>* u"
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   244
proof -
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   245
  from s have "lift (s[dummy/0]) 0 => lift u 0" by (simp del: lift_subst)
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   246
  with free have "s => lift u 0" by (simp add: lift_subst_dummy del: lift_subst)
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   247
  hence "Abs (s \<degree> Var 0) => Abs (lift u 0 \<degree> Var 0)" by simp
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   248
  moreover have "\<not> free (lift u 0) 0" by simp
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   249
  hence "Abs (lift u 0 \<degree> Var 0) \<rightarrow>\<^sub>\<eta> lift u 0[dummy/0]"
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   250
    by (rule eta.eta)
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   251
  hence "Abs (lift u 0 \<degree> Var 0) \<rightarrow>\<^sub>\<eta>\<^sup>* u" by simp
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   252
  ultimately show ?thesis by iprover
15522
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   253
qed
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   254
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   255
theorem eta_par_beta:
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   256
  assumes st: "s \<rightarrow>\<^sub>\<eta> t"
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   257
  and tu: "t => u"
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   258
  shows "\<exists>t'. s => t' \<and> t' \<rightarrow>\<^sub>\<eta>\<^sup>* u" using tu st
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   259
proof (induct arbitrary: s)
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   260
  case (var n)
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   261
  thus ?case by (iprover intro: par_beta_refl)
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   262
next
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   263
  case (abs s' t)
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   264
  note abs' = this
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   265
  from `s \<rightarrow>\<^sub>\<eta> Abs s'` show ?case
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   266
  proof cases
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   267
    case (eta s'' dummy)
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   268
    from abs have "Abs s' => Abs t" by simp
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   269
    with eta have "s''[dummy/0] => Abs t" by simp
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   270
    with `\<not> free s'' 0` have "\<exists>t'. Abs (s'' \<degree> Var 0) => t' \<and> t' \<rightarrow>\<^sub>\<eta>\<^sup>* Abs t"
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   271
      by (rule eta_case)
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   272
    with eta show ?thesis by simp
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   273
  next
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   274
    case (abs r u)
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   275
    hence "r \<rightarrow>\<^sub>\<eta> s'" by simp
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   276
    then obtain t' where r: "r => t'" and t': "t' \<rightarrow>\<^sub>\<eta>\<^sup>* t" by (iprover dest: abs')
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   277
    from r have "Abs r => Abs t'" ..
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   278
    moreover from t' have "Abs t' \<rightarrow>\<^sub>\<eta>\<^sup>* Abs t" by (rule rtrancl_eta_Abs)
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   279
    ultimately show ?thesis using abs by simp iprover
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   280
  qed simp_all
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   281
next
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   282
  case (app u u' t t')
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   283
  from `s \<rightarrow>\<^sub>\<eta> u \<degree> t` show ?case
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   284
  proof cases
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   285
    case (eta s' dummy)
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   286
    from app have "u \<degree> t => u' \<degree> t'" by simp
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   287
    with eta have "s'[dummy/0] => u' \<degree> t'" by simp
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   288
    with `\<not> free s' 0` have "\<exists>r. Abs (s' \<degree> Var 0) => r \<and> r \<rightarrow>\<^sub>\<eta>\<^sup>* u' \<degree> t'"
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   289
      by (rule eta_case)
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   290
    with eta show ?thesis by simp
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   291
  next
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   292
    case (appL s' t'' u'')
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   293
    hence "s' \<rightarrow>\<^sub>\<eta> u" by simp
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   294
    then obtain r where s': "s' => r" and r: "r \<rightarrow>\<^sub>\<eta>\<^sup>* u'" by (iprover dest: app)
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   295
    from s' and app have "s' \<degree> t => r \<degree> t'" by simp
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   296
    moreover from r have "r \<degree> t' \<rightarrow>\<^sub>\<eta>\<^sup>* u' \<degree> t'" by (simp add: rtrancl_eta_AppL)
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   297
    ultimately show ?thesis using appL by simp iprover
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   298
  next
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   299
    case (appR s' t'' u'')
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   300
    hence "s' \<rightarrow>\<^sub>\<eta> t" by simp
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   301
    then obtain r where s': "s' => r" and r: "r \<rightarrow>\<^sub>\<eta>\<^sup>* t'" by (iprover dest: app)
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   302
    from s' and app have "u \<degree> s' => u' \<degree> r" by simp
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   303
    moreover from r have "u' \<degree> r \<rightarrow>\<^sub>\<eta>\<^sup>* u' \<degree> t'" by (simp add: rtrancl_eta_AppR)
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   304
    ultimately show ?thesis using appR by simp iprover
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   305
  qed simp
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   306
next
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   307
  case (beta u u' t t')
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   308
  from `s \<rightarrow>\<^sub>\<eta> Abs u \<degree> t` show ?case
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   309
  proof cases
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   310
    case (eta s' dummy)
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   311
    from beta have "Abs u \<degree> t => u'[t'/0]" by simp
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   312
    with eta have "s'[dummy/0] => u'[t'/0]" by simp
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   313
    with `\<not> free s' 0` have "\<exists>r. Abs (s' \<degree> Var 0) => r \<and> r \<rightarrow>\<^sub>\<eta>\<^sup>* u'[t'/0]"
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   314
      by (rule eta_case)
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   315
    with eta show ?thesis by simp
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   316
  next
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   317
    case (appL s' t'' u'')
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   318
    hence "s' \<rightarrow>\<^sub>\<eta> Abs u" by simp
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   319
    thus ?thesis
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   320
    proof cases
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   321
      case (eta s'' dummy)
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   322
      have "Abs (lift u 1) = lift (Abs u) 0" by simp
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   323
      also from eta have "\<dots> = s''" by (simp add: lift_subst_dummy del: lift_subst)
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   324
      finally have s: "s = Abs (Abs (lift u 1) \<degree> Var 0) \<degree> t" using appL and eta by simp
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   325
      from beta have "lift u 1 => lift u' 1" by simp
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   326
      hence "Abs (lift u 1) \<degree> Var 0 => lift u' 1[Var 0/0]"
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   327
	using par_beta.var ..
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   328
      hence "Abs (Abs (lift u 1) \<degree> Var 0) \<degree> t => lift u' 1[Var 0/0][t'/0]"
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   329
	using `t => t'` ..
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   330
      with s have "s => u'[t'/0]" by simp
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   331
      thus ?thesis by iprover
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   332
    next
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   333
      case (abs r r')
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   334
      hence "r \<rightarrow>\<^sub>\<eta> u" by simp
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   335
      then obtain r'' where r: "r => r''" and r'': "r'' \<rightarrow>\<^sub>\<eta>\<^sup>* u'" by (iprover dest: beta)
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   336
      from r and beta have "Abs r \<degree> t => r''[t'/0]" by simp
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   337
      moreover from r'' have "r''[t'/0] \<rightarrow>\<^sub>\<eta>\<^sup>* u'[t'/0]"
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   338
	by (rule rtrancl_eta_subst')
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   339
      ultimately show ?thesis using abs and appL by simp iprover
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   340
    qed simp_all
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   341
  next
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   342
    case (appR s' t'' u'')
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   343
    hence "s' \<rightarrow>\<^sub>\<eta> t" by simp
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   344
    then obtain r where s': "s' => r" and r: "r \<rightarrow>\<^sub>\<eta>\<^sup>* t'" by (iprover dest: beta)
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   345
    from s' and beta have "Abs u \<degree> s' => u'[r/0]" by simp
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   346
    moreover from r have "u'[r/0] \<rightarrow>\<^sub>\<eta>\<^sup>* u'[t'/0]"
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   347
      by (rule rtrancl_eta_subst'')
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   348
    ultimately show ?thesis using appR by simp iprover
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   349
  qed simp
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   350
qed
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   351
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   352
theorem eta_postponement':
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   353
  assumes eta: "s \<rightarrow>\<^sub>\<eta>\<^sup>* t" and beta: "t => u"
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   354
  shows "\<exists>t'. s => t' \<and> t' \<rightarrow>\<^sub>\<eta>\<^sup>* u" using eta beta
20503
503ac4c5ef91 induct method: renamed 'fixing' to 'arbitrary';
wenzelm
parents: 20217
diff changeset
   355
proof (induct arbitrary: u)
15522
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   356
  case 1
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   357
  thus ?case by blast
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   358
next
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   359
  case (2 s' s'' s''')
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   360
  from 2 obtain t' where s': "s' => t'" and t': "t' \<rightarrow>\<^sub>\<eta>\<^sup>* s'''"
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   361
    by (auto dest: eta_par_beta)
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   362
  from s' obtain t'' where s: "s => t''" and t'': "t'' \<rightarrow>\<^sub>\<eta>\<^sup>* t'" using 2
18557
60a0f9caa0a2 Provers/classical: stricter checks to ensure that supplied intro, dest and
paulson
parents: 18460
diff changeset
   363
    by blast
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   364
  from t'' and t' have "t'' \<rightarrow>\<^sub>\<eta>\<^sup>* s'''" by (rule rtrancl_trans')
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 16417
diff changeset
   365
  with s show ?case by iprover
15522
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   366
qed
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   367
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   368
theorem eta_postponement:
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   369
  assumes st: "(join beta eta)\<^sup>*\<^sup>* s t"
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   370
  shows "(eta\<^sup>*\<^sup>* OO beta\<^sup>*\<^sup>*) s t" using st
15522
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   371
proof induct
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   372
  case 1
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   373
  show ?case by blast
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   374
next
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   375
  case (2 s' s'')
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   376
  from 2(3) obtain t' where s: "s \<rightarrow>\<^sub>\<beta>\<^sup>* t'" and t': "t' \<rightarrow>\<^sub>\<eta>\<^sup>* s'" by blast
15522
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   377
  from 2(2) show ?case
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   378
  proof
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   379
    assume "s' \<rightarrow>\<^sub>\<beta> s''"
15522
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   380
    with beta_subset_par_beta have "s' => s''" ..
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   381
    with t' obtain t'' where st: "t' => t''" and tu: "t'' \<rightarrow>\<^sub>\<eta>\<^sup>* s''"
15522
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   382
      by (auto dest: eta_postponement')
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   383
    from par_beta_subset_beta st have "t' \<rightarrow>\<^sub>\<beta>\<^sup>* t''" ..
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   384
    with s have "s \<rightarrow>\<^sub>\<beta>\<^sup>* t''" by (rule rtrancl_trans')
15522
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   385
    thus ?thesis using tu ..
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   386
  next
22272
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   387
    assume "s' \<rightarrow>\<^sub>\<eta> s''"
aac2ac7c32fd - Adapted to new inductive definition package
berghofe
parents: 21404
diff changeset
   388
    with t' have "t' \<rightarrow>\<^sub>\<eta>\<^sup>* s''" ..
15522
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   389
    with s show ?thesis ..
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   390
  qed
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   391
qed
ec0fd05b2f2c Added proof of eta-postponement theorem (using parallel eta-reduction).
berghofe
parents: 13187
diff changeset
   392
11638
2c3dee321b4b inductive: no collective atts;
wenzelm
parents: 11183
diff changeset
   393
end