src/CTT/CTT.thy
author wenzelm
Sat, 09 Jul 2011 21:53:27 +0200
changeset 43721 fad8634cee62
parent 41526 54b4686704af
child 48891 c0eafbd55de3
permissions -rw-r--r--
echo prover input via raw_messages, for improved protocol tracing;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
     1
(*  Title:      CTT/CTT.thy
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     2
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     3
    Copyright   1993  University of Cambridge
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     4
*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     5
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
     6
header {* Constructive Type Theory *}
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     7
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
     8
theory CTT
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
     9
imports Pure
19761
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
    10
uses "~~/src/Provers/typedsimp.ML" ("rew.ML")
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
    11
begin
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
    12
39557
fe5722fce758 renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents: 35762
diff changeset
    13
setup Pure_Thy.old_appl_syntax_setup
26956
1309a6a0a29f setup PureThy.old_appl_syntax_setup -- theory Pure provides regular application syntax by default;
wenzelm
parents: 26391
diff changeset
    14
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
    15
typedecl i
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
    16
typedecl t
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
    17
typedecl o
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    18
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    19
consts
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    20
  (*Types*)
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
    21
  F         :: "t"
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
    22
  T         :: "t"          (*F is empty, T contains one element*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    23
  contr     :: "i=>i"
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    24
  tt        :: "i"
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    25
  (*Natural numbers*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    26
  N         :: "t"
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    27
  succ      :: "i=>i"
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    28
  rec       :: "[i, i, [i,i]=>i] => i"
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    29
  (*Unions*)
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
    30
  inl       :: "i=>i"
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
    31
  inr       :: "i=>i"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    32
  when      :: "[i, i=>i, i=>i]=>i"
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    33
  (*General Sum and Binary Product*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    34
  Sum       :: "[t, i=>t]=>t"
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
    35
  fst       :: "i=>i"
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
    36
  snd       :: "i=>i"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    37
  split     :: "[i, [i,i]=>i] =>i"
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    38
  (*General Product and Function Space*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    39
  Prod      :: "[t, i=>t]=>t"
14765
bafb24c150c1 proper use of 'syntax';
wenzelm
parents: 14565
diff changeset
    40
  (*Types*)
22808
a7daa74e2980 eliminated unnamed infixes, tuned syntax;
wenzelm
parents: 21524
diff changeset
    41
  Plus      :: "[t,t]=>t"           (infixr "+" 40)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    42
  (*Equality type*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    43
  Eq        :: "[t,i,i]=>t"
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    44
  eq        :: "i"
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    45
  (*Judgements*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    46
  Type      :: "t => prop"          ("(_ type)" [10] 5)
10467
e6e7205e9e91 x-symbol support for Pi, Sigma, -->, : (membership)
paulson
parents: 3837
diff changeset
    47
  Eqtype    :: "[t,t]=>prop"        ("(_ =/ _)" [10,10] 5)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    48
  Elem      :: "[i, t]=>prop"       ("(_ /: _)" [10,10] 5)
10467
e6e7205e9e91 x-symbol support for Pi, Sigma, -->, : (membership)
paulson
parents: 3837
diff changeset
    49
  Eqelem    :: "[i,i,t]=>prop"      ("(_ =/ _ :/ _)" [10,10,10] 5)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    50
  Reduce    :: "[i,i]=>prop"        ("Reduce[_,_]")
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    51
  (*Types*)
14765
bafb24c150c1 proper use of 'syntax';
wenzelm
parents: 14565
diff changeset
    52
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    53
  (*Functions*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    54
  lambda    :: "(i => i) => i"      (binder "lam " 10)
22808
a7daa74e2980 eliminated unnamed infixes, tuned syntax;
wenzelm
parents: 21524
diff changeset
    55
  app       :: "[i,i]=>i"           (infixl "`" 60)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    56
  (*Natural numbers*)
41310
65631ca437c9 proper identifiers for consts and types;
wenzelm
parents: 39557
diff changeset
    57
  Zero      :: "i"                  ("0")
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    58
  (*Pairing*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    59
  pair      :: "[i,i]=>i"           ("(1<_,/_>)")
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    60
14765
bafb24c150c1 proper use of 'syntax';
wenzelm
parents: 14565
diff changeset
    61
syntax
19761
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
    62
  "_PROD"   :: "[idt,t,t]=>t"       ("(3PROD _:_./ _)" 10)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
    63
  "_SUM"    :: "[idt,t,t]=>t"       ("(3SUM _:_./ _)" 10)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    64
translations
35054
a5db9779b026 modernized some syntax translations;
wenzelm
parents: 27239
diff changeset
    65
  "PROD x:A. B" == "CONST Prod(A, %x. B)"
a5db9779b026 modernized some syntax translations;
wenzelm
parents: 27239
diff changeset
    66
  "SUM x:A. B"  == "CONST Sum(A, %x. B)"
19761
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
    67
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
    68
abbreviation
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
    69
  Arrow     :: "[t,t]=>t"  (infixr "-->" 30) where
19761
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
    70
  "A --> B == PROD _:A. B"
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
    71
abbreviation
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
    72
  Times     :: "[t,t]=>t"  (infixr "*" 50) where
19761
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
    73
  "A * B == SUM _:A. B"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    74
21210
c17fd2df4e9e renamed 'const_syntax' to 'notation';
wenzelm
parents: 19761
diff changeset
    75
notation (xsymbols)
21524
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21404
diff changeset
    76
  lambda  (binder "\<lambda>\<lambda>" 10) and
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
    77
  Elem  ("(_ /\<in> _)" [10,10] 5) and
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
    78
  Eqelem  ("(2_ =/ _ \<in>/ _)" [10,10,10] 5) and
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
    79
  Arrow  (infixr "\<longrightarrow>" 30) and
19761
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
    80
  Times  (infixr "\<times>" 50)
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
    81
21210
c17fd2df4e9e renamed 'const_syntax' to 'notation';
wenzelm
parents: 19761
diff changeset
    82
notation (HTML output)
21524
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21404
diff changeset
    83
  lambda  (binder "\<lambda>\<lambda>" 10) and
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
    84
  Elem  ("(_ /\<in> _)" [10,10] 5) and
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
    85
  Eqelem  ("(2_ =/ _ \<in>/ _)" [10,10,10] 5) and
19761
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
    86
  Times  (infixr "\<times>" 50)
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
    87
10467
e6e7205e9e91 x-symbol support for Pi, Sigma, -->, : (membership)
paulson
parents: 3837
diff changeset
    88
syntax (xsymbols)
21524
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21404
diff changeset
    89
  "_PROD"   :: "[idt,t,t] => t"     ("(3\<Pi> _\<in>_./ _)"    10)
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21404
diff changeset
    90
  "_SUM"    :: "[idt,t,t] => t"     ("(3\<Sigma> _\<in>_./ _)" 10)
10467
e6e7205e9e91 x-symbol support for Pi, Sigma, -->, : (membership)
paulson
parents: 3837
diff changeset
    91
14565
c6dc17aab88a use more symbols in HTML output
kleing
parents: 12110
diff changeset
    92
syntax (HTML output)
21524
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21404
diff changeset
    93
  "_PROD"   :: "[idt,t,t] => t"     ("(3\<Pi> _\<in>_./ _)"    10)
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21404
diff changeset
    94
  "_SUM"    :: "[idt,t,t] => t"     ("(3\<Sigma> _\<in>_./ _)" 10)
14565
c6dc17aab88a use more symbols in HTML output
kleing
parents: 12110
diff changeset
    95
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
    96
axioms
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    97
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    98
  (*Reduction: a weaker notion than equality;  a hack for simplification.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    99
    Reduce[a,b] means either that  a=b:A  for some A or else that "a" and "b"
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   100
    are textually identical.*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   101
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   102
  (*does not verify a:A!  Sound because only trans_red uses a Reduce premise
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   103
    No new theorems can be proved about the standard judgements.*)
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   104
  refl_red: "Reduce[a,a]"
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   105
  red_if_equal: "a = b : A ==> Reduce[a,b]"
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   106
  trans_red: "[| a = b : A;  Reduce[b,c] |] ==> a = c : A"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   107
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   108
  (*Reflexivity*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   109
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   110
  refl_type: "A type ==> A = A"
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   111
  refl_elem: "a : A ==> a = a : A"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   112
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   113
  (*Symmetry*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   114
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   115
  sym_type:  "A = B ==> B = A"
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   116
  sym_elem:  "a = b : A ==> b = a : A"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   117
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   118
  (*Transitivity*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   119
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   120
  trans_type:   "[| A = B;  B = C |] ==> A = C"
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   121
  trans_elem:   "[| a = b : A;  b = c : A |] ==> a = c : A"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   122
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   123
  equal_types:  "[| a : A;  A = B |] ==> a : B"
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   124
  equal_typesL: "[| a = b : A;  A = B |] ==> a = b : B"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   125
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   126
  (*Substitution*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   127
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   128
  subst_type:   "[| a : A;  !!z. z:A ==> B(z) type |] ==> B(a) type"
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   129
  subst_typeL:  "[| a = c : A;  !!z. z:A ==> B(z) = D(z) |] ==> B(a) = D(c)"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   130
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   131
  subst_elem:   "[| a : A;  !!z. z:A ==> b(z):B(z) |] ==> b(a):B(a)"
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   132
  subst_elemL:
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   133
    "[| a=c : A;  !!z. z:A ==> b(z)=d(z) : B(z) |] ==> b(a)=d(c) : B(a)"
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   134
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   135
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   136
  (*The type N -- natural numbers*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   137
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   138
  NF: "N type"
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   139
  NI0: "0 : N"
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   140
  NI_succ: "a : N ==> succ(a) : N"
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   141
  NI_succL:  "a = b : N ==> succ(a) = succ(b) : N"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   142
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   143
  NE:
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   144
   "[| p: N;  a: C(0);  !!u v. [| u: N; v: C(u) |] ==> b(u,v): C(succ(u)) |]
3837
d7f033c74b38 fixed dots;
wenzelm
parents: 1149
diff changeset
   145
   ==> rec(p, a, %u v. b(u,v)) : C(p)"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   146
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   147
  NEL:
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   148
   "[| p = q : N;  a = c : C(0);
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   149
      !!u v. [| u: N; v: C(u) |] ==> b(u,v) = d(u,v): C(succ(u)) |]
3837
d7f033c74b38 fixed dots;
wenzelm
parents: 1149
diff changeset
   150
   ==> rec(p, a, %u v. b(u,v)) = rec(q,c,d) : C(p)"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   151
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   152
  NC0:
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   153
   "[| a: C(0);  !!u v. [| u: N; v: C(u) |] ==> b(u,v): C(succ(u)) |]
3837
d7f033c74b38 fixed dots;
wenzelm
parents: 1149
diff changeset
   154
   ==> rec(0, a, %u v. b(u,v)) = a : C(0)"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   155
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   156
  NC_succ:
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   157
   "[| p: N;  a: C(0);
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   158
       !!u v. [| u: N; v: C(u) |] ==> b(u,v): C(succ(u)) |] ==>
3837
d7f033c74b38 fixed dots;
wenzelm
parents: 1149
diff changeset
   159
   rec(succ(p), a, %u v. b(u,v)) = b(p, rec(p, a, %u v. b(u,v))) : C(succ(p))"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   160
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   161
  (*The fourth Peano axiom.  See page 91 of Martin-Lof's book*)
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   162
  zero_ne_succ:
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   163
    "[| a: N;  0 = succ(a) : N |] ==> 0: F"
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   164
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   165
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   166
  (*The Product of a family of types*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   167
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   168
  ProdF:  "[| A type; !!x. x:A ==> B(x) type |] ==> PROD x:A. B(x) type"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   169
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   170
  ProdFL:
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   171
   "[| A = C;  !!x. x:A ==> B(x) = D(x) |] ==>
3837
d7f033c74b38 fixed dots;
wenzelm
parents: 1149
diff changeset
   172
   PROD x:A. B(x) = PROD x:C. D(x)"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   173
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   174
  ProdI:
3837
d7f033c74b38 fixed dots;
wenzelm
parents: 1149
diff changeset
   175
   "[| A type;  !!x. x:A ==> b(x):B(x)|] ==> lam x. b(x) : PROD x:A. B(x)"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   176
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   177
  ProdIL:
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   178
   "[| A type;  !!x. x:A ==> b(x) = c(x) : B(x)|] ==>
3837
d7f033c74b38 fixed dots;
wenzelm
parents: 1149
diff changeset
   179
   lam x. b(x) = lam x. c(x) : PROD x:A. B(x)"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   180
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   181
  ProdE:  "[| p : PROD x:A. B(x);  a : A |] ==> p`a : B(a)"
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   182
  ProdEL: "[| p=q: PROD x:A. B(x);  a=b : A |] ==> p`a = q`b : B(a)"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   183
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   184
  ProdC:
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   185
   "[| a : A;  !!x. x:A ==> b(x) : B(x)|] ==>
3837
d7f033c74b38 fixed dots;
wenzelm
parents: 1149
diff changeset
   186
   (lam x. b(x)) ` a = b(a) : B(a)"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   187
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   188
  ProdC2:
3837
d7f033c74b38 fixed dots;
wenzelm
parents: 1149
diff changeset
   189
   "p : PROD x:A. B(x) ==> (lam x. p`x) = p : PROD x:A. B(x)"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   190
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   191
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   192
  (*The Sum of a family of types*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   193
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   194
  SumF:  "[| A type;  !!x. x:A ==> B(x) type |] ==> SUM x:A. B(x) type"
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   195
  SumFL:
3837
d7f033c74b38 fixed dots;
wenzelm
parents: 1149
diff changeset
   196
    "[| A = C;  !!x. x:A ==> B(x) = D(x) |] ==> SUM x:A. B(x) = SUM x:C. D(x)"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   197
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   198
  SumI:  "[| a : A;  b : B(a) |] ==> <a,b> : SUM x:A. B(x)"
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   199
  SumIL: "[| a=c:A;  b=d:B(a) |] ==> <a,b> = <c,d> : SUM x:A. B(x)"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   200
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   201
  SumE:
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   202
    "[| p: SUM x:A. B(x);  !!x y. [| x:A; y:B(x) |] ==> c(x,y): C(<x,y>) |]
3837
d7f033c74b38 fixed dots;
wenzelm
parents: 1149
diff changeset
   203
    ==> split(p, %x y. c(x,y)) : C(p)"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   204
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   205
  SumEL:
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   206
    "[| p=q : SUM x:A. B(x);
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   207
       !!x y. [| x:A; y:B(x) |] ==> c(x,y)=d(x,y): C(<x,y>)|]
3837
d7f033c74b38 fixed dots;
wenzelm
parents: 1149
diff changeset
   208
    ==> split(p, %x y. c(x,y)) = split(q, % x y. d(x,y)) : C(p)"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   209
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   210
  SumC:
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   211
    "[| a: A;  b: B(a);  !!x y. [| x:A; y:B(x) |] ==> c(x,y): C(<x,y>) |]
3837
d7f033c74b38 fixed dots;
wenzelm
parents: 1149
diff changeset
   212
    ==> split(<a,b>, %x y. c(x,y)) = c(a,b) : C(<a,b>)"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   213
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   214
  fst_def:   "fst(a) == split(a, %x y. x)"
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   215
  snd_def:   "snd(a) == split(a, %x y. y)"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   216
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   217
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   218
  (*The sum of two types*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   219
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   220
  PlusF:   "[| A type;  B type |] ==> A+B type"
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   221
  PlusFL:  "[| A = C;  B = D |] ==> A+B = C+D"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   222
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   223
  PlusI_inl:   "[| a : A;  B type |] ==> inl(a) : A+B"
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   224
  PlusI_inlL: "[| a = c : A;  B type |] ==> inl(a) = inl(c) : A+B"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   225
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   226
  PlusI_inr:   "[| A type;  b : B |] ==> inr(b) : A+B"
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   227
  PlusI_inrL: "[| A type;  b = d : B |] ==> inr(b) = inr(d) : A+B"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   228
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   229
  PlusE:
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   230
    "[| p: A+B;  !!x. x:A ==> c(x): C(inl(x));
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   231
                !!y. y:B ==> d(y): C(inr(y)) |]
3837
d7f033c74b38 fixed dots;
wenzelm
parents: 1149
diff changeset
   232
    ==> when(p, %x. c(x), %y. d(y)) : C(p)"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   233
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   234
  PlusEL:
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   235
    "[| p = q : A+B;  !!x. x: A ==> c(x) = e(x) : C(inl(x));
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   236
                     !!y. y: B ==> d(y) = f(y) : C(inr(y)) |]
3837
d7f033c74b38 fixed dots;
wenzelm
parents: 1149
diff changeset
   237
    ==> when(p, %x. c(x), %y. d(y)) = when(q, %x. e(x), %y. f(y)) : C(p)"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   238
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   239
  PlusC_inl:
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   240
    "[| a: A;  !!x. x:A ==> c(x): C(inl(x));
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   241
              !!y. y:B ==> d(y): C(inr(y)) |]
3837
d7f033c74b38 fixed dots;
wenzelm
parents: 1149
diff changeset
   242
    ==> when(inl(a), %x. c(x), %y. d(y)) = c(a) : C(inl(a))"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   243
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   244
  PlusC_inr:
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   245
    "[| b: B;  !!x. x:A ==> c(x): C(inl(x));
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   246
              !!y. y:B ==> d(y): C(inr(y)) |]
3837
d7f033c74b38 fixed dots;
wenzelm
parents: 1149
diff changeset
   247
    ==> when(inr(b), %x. c(x), %y. d(y)) = d(b) : C(inr(b))"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   248
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   249
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   250
  (*The type Eq*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   251
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   252
  EqF:    "[| A type;  a : A;  b : A |] ==> Eq(A,a,b) type"
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   253
  EqFL: "[| A=B;  a=c: A;  b=d : A |] ==> Eq(A,a,b) = Eq(B,c,d)"
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   254
  EqI: "a = b : A ==> eq : Eq(A,a,b)"
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   255
  EqE: "p : Eq(A,a,b) ==> a = b : A"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   256
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   257
  (*By equality of types, can prove C(p) from C(eq), an elimination rule*)
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   258
  EqC: "p : Eq(A,a,b) ==> p = eq : Eq(A,a,b)"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   259
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   260
  (*The type F*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   261
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   262
  FF: "F type"
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   263
  FE: "[| p: F;  C type |] ==> contr(p) : C"
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   264
  FEL:  "[| p = q : F;  C type |] ==> contr(p) = contr(q) : C"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   265
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   266
  (*The type T
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   267
     Martin-Lof's book (page 68) discusses elimination and computation.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   268
     Elimination can be derived by computation and equality of types,
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   269
     but with an extra premise C(x) type x:T.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   270
     Also computation can be derived from elimination. *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   271
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   272
  TF: "T type"
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   273
  TI: "tt : T"
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   274
  TE: "[| p : T;  c : C(tt) |] ==> c : C(p)"
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   275
  TEL: "[| p = q : T;  c = d : C(tt) |] ==> c = d : C(p)"
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   276
  TC: "p : T ==> p = tt : T"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   277
19761
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   278
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   279
subsection "Tactics and derived rules for Constructive Type Theory"
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   280
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   281
(*Formation rules*)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   282
lemmas form_rls = NF ProdF SumF PlusF EqF FF TF
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   283
  and formL_rls = ProdFL SumFL PlusFL EqFL
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   284
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   285
(*Introduction rules
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   286
  OMITTED: EqI, because its premise is an eqelem, not an elem*)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   287
lemmas intr_rls = NI0 NI_succ ProdI SumI PlusI_inl PlusI_inr TI
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   288
  and intrL_rls = NI_succL ProdIL SumIL PlusI_inlL PlusI_inrL
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   289
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   290
(*Elimination rules
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   291
  OMITTED: EqE, because its conclusion is an eqelem,  not an elem
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   292
           TE, because it does not involve a constructor *)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   293
lemmas elim_rls = NE ProdE SumE PlusE FE
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   294
  and elimL_rls = NEL ProdEL SumEL PlusEL FEL
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   295
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   296
(*OMITTED: eqC are TC because they make rewriting loop: p = un = un = ... *)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   297
lemmas comp_rls = NC0 NC_succ ProdC SumC PlusC_inl PlusC_inr
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   298
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   299
(*rules with conclusion a:A, an elem judgement*)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   300
lemmas element_rls = intr_rls elim_rls
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   301
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   302
(*Definitions are (meta)equality axioms*)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   303
lemmas basic_defs = fst_def snd_def
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   304
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   305
(*Compare with standard version: B is applied to UNSIMPLIFIED expression! *)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   306
lemma SumIL2: "[| c=a : A;  d=b : B(a) |] ==> <c,d> = <a,b> : Sum(A,B)"
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   307
apply (rule sym_elem)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   308
apply (rule SumIL)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   309
apply (rule_tac [!] sym_elem)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   310
apply assumption+
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   311
done
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   312
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   313
lemmas intrL2_rls = NI_succL ProdIL SumIL2 PlusI_inlL PlusI_inrL
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   314
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   315
(*Exploit p:Prod(A,B) to create the assumption z:B(a).
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   316
  A more natural form of product elimination. *)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   317
lemma subst_prodE:
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   318
  assumes "p: Prod(A,B)"
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   319
    and "a: A"
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   320
    and "!!z. z: B(a) ==> c(z): C(z)"
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   321
  shows "c(p`a): C(p`a)"
41526
54b4686704af eliminated global prems;
wenzelm
parents: 41310
diff changeset
   322
apply (rule assms ProdE)+
19761
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   323
done
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   324
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   325
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   326
subsection {* Tactics for type checking *}
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   327
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   328
ML {*
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   329
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   330
local
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   331
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   332
fun is_rigid_elem (Const("CTT.Elem",_) $ a $ _) = not(is_Var (head_of a))
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   333
  | is_rigid_elem (Const("CTT.Eqelem",_) $ a $ _ $ _) = not(is_Var (head_of a))
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   334
  | is_rigid_elem (Const("CTT.Type",_) $ a) = not(is_Var (head_of a))
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   335
  | is_rigid_elem _ = false
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   336
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   337
in
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   338
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   339
(*Try solving a:A or a=b:A by assumption provided a is rigid!*)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   340
val test_assume_tac = SUBGOAL(fn (prem,i) =>
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   341
    if is_rigid_elem (Logic.strip_assums_concl prem)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   342
    then  assume_tac i  else  no_tac)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   343
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   344
fun ASSUME tf i = test_assume_tac i  ORELSE  tf i
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   345
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   346
end;
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   347
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   348
*}
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   349
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   350
(*For simplification: type formation and checking,
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   351
  but no equalities between terms*)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   352
lemmas routine_rls = form_rls formL_rls refl_type element_rls
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   353
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   354
ML {*
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   355
local
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 26956
diff changeset
   356
  val equal_rls = @{thms form_rls} @ @{thms element_rls} @ @{thms intrL_rls} @
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 26956
diff changeset
   357
    @{thms elimL_rls} @ @{thms refl_elem}
19761
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   358
in
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   359
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   360
fun routine_tac rls prems = ASSUME (filt_resolve_tac (prems @ rls) 4);
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   361
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   362
(*Solve all subgoals "A type" using formation rules. *)
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 26956
diff changeset
   363
val form_tac = REPEAT_FIRST (ASSUME (filt_resolve_tac @{thms form_rls} 1));
19761
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   364
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   365
(*Type checking: solve a:A (a rigid, A flexible) by intro and elim rules. *)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   366
fun typechk_tac thms =
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 26956
diff changeset
   367
  let val tac = filt_resolve_tac (thms @ @{thms form_rls} @ @{thms element_rls}) 3
19761
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   368
  in  REPEAT_FIRST (ASSUME tac)  end
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   369
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   370
(*Solve a:A (a flexible, A rigid) by introduction rules.
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   371
  Cannot use stringtrees (filt_resolve_tac) since
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   372
  goals like ?a:SUM(A,B) have a trivial head-string *)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   373
fun intr_tac thms =
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 26956
diff changeset
   374
  let val tac = filt_resolve_tac(thms @ @{thms form_rls} @ @{thms intr_rls}) 1
19761
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   375
  in  REPEAT_FIRST (ASSUME tac)  end
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   376
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   377
(*Equality proving: solve a=b:A (where a is rigid) by long rules. *)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   378
fun equal_tac thms =
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   379
  REPEAT_FIRST (ASSUME (filt_resolve_tac (thms @ equal_rls) 3))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   380
17441
5b5feca0344a converted to Isar theory format;
wenzelm
parents: 14854
diff changeset
   381
end
19761
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   382
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   383
*}
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   384
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   385
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   386
subsection {* Simplification *}
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   387
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   388
(*To simplify the type in a goal*)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   389
lemma replace_type: "[| B = A;  a : A |] ==> a : B"
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   390
apply (rule equal_types)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   391
apply (rule_tac [2] sym_type)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   392
apply assumption+
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   393
done
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   394
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   395
(*Simplify the parameter of a unary type operator.*)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   396
lemma subst_eqtyparg:
23467
d1b97708d5eb tuned proofs -- avoid implicit prems;
wenzelm
parents: 22808
diff changeset
   397
  assumes 1: "a=c : A"
d1b97708d5eb tuned proofs -- avoid implicit prems;
wenzelm
parents: 22808
diff changeset
   398
    and 2: "!!z. z:A ==> B(z) type"
19761
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   399
  shows "B(a)=B(c)"
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   400
apply (rule subst_typeL)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   401
apply (rule_tac [2] refl_type)
23467
d1b97708d5eb tuned proofs -- avoid implicit prems;
wenzelm
parents: 22808
diff changeset
   402
apply (rule 1)
d1b97708d5eb tuned proofs -- avoid implicit prems;
wenzelm
parents: 22808
diff changeset
   403
apply (erule 2)
19761
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   404
done
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   405
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   406
(*Simplification rules for Constructive Type Theory*)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   407
lemmas reduction_rls = comp_rls [THEN trans_elem]
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   408
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   409
ML {*
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   410
(*Converts each goal "e : Eq(A,a,b)" into "a=b:A" for simplification.
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   411
  Uses other intro rules to avoid changing flexible goals.*)
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 26956
diff changeset
   412
val eqintr_tac = REPEAT_FIRST (ASSUME (filt_resolve_tac (@{thm EqI} :: @{thms intr_rls}) 1))
19761
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   413
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   414
(** Tactics that instantiate CTT-rules.
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   415
    Vars in the given terms will be incremented!
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   416
    The (rtac EqE i) lets them apply to equality judgements. **)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   417
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 26956
diff changeset
   418
fun NE_tac ctxt sp i =
27239
f2f42f9fa09d pervasive RuleInsts;
wenzelm
parents: 27208
diff changeset
   419
  TRY (rtac @{thm EqE} i) THEN res_inst_tac ctxt [(("p", 0), sp)] @{thm NE} i
19761
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   420
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 26956
diff changeset
   421
fun SumE_tac ctxt sp i =
27239
f2f42f9fa09d pervasive RuleInsts;
wenzelm
parents: 27208
diff changeset
   422
  TRY (rtac @{thm EqE} i) THEN res_inst_tac ctxt [(("p", 0), sp)] @{thm SumE} i
19761
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   423
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 26956
diff changeset
   424
fun PlusE_tac ctxt sp i =
27239
f2f42f9fa09d pervasive RuleInsts;
wenzelm
parents: 27208
diff changeset
   425
  TRY (rtac @{thm EqE} i) THEN res_inst_tac ctxt [(("p", 0), sp)] @{thm PlusE} i
19761
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   426
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   427
(** Predicate logic reasoning, WITH THINNING!!  Procedures adapted from NJ. **)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   428
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   429
(*Finds f:Prod(A,B) and a:A in the assumptions, concludes there is z:B(a) *)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   430
fun add_mp_tac i =
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 26956
diff changeset
   431
    rtac @{thm subst_prodE} i  THEN  assume_tac i  THEN  assume_tac i
19761
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   432
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   433
(*Finds P-->Q and P in the assumptions, replaces implication by Q *)
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 26956
diff changeset
   434
fun mp_tac i = etac @{thm subst_prodE} i  THEN  assume_tac i
19761
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   435
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   436
(*"safe" when regarded as predicate calculus rules*)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   437
val safe_brls = sort (make_ord lessb)
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 26956
diff changeset
   438
    [ (true, @{thm FE}), (true,asm_rl),
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 26956
diff changeset
   439
      (false, @{thm ProdI}), (true, @{thm SumE}), (true, @{thm PlusE}) ]
19761
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   440
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   441
val unsafe_brls =
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 26956
diff changeset
   442
    [ (false, @{thm PlusI_inl}), (false, @{thm PlusI_inr}), (false, @{thm SumI}),
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 26956
diff changeset
   443
      (true, @{thm subst_prodE}) ]
19761
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   444
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   445
(*0 subgoals vs 1 or more*)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   446
val (safe0_brls, safep_brls) =
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   447
    List.partition (curry (op =) 0 o subgoals_of_brl) safe_brls
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   448
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   449
fun safestep_tac thms i =
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   450
    form_tac  ORELSE
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   451
    resolve_tac thms i  ORELSE
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   452
    biresolve_tac safe0_brls i  ORELSE  mp_tac i  ORELSE
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   453
    DETERM (biresolve_tac safep_brls i)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   454
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   455
fun safe_tac thms i = DEPTH_SOLVE_1 (safestep_tac thms i)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   456
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   457
fun step_tac thms = safestep_tac thms  ORELSE'  biresolve_tac unsafe_brls
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   458
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   459
(*Fails unless it solves the goal!*)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   460
fun pc_tac thms = DEPTH_SOLVE_1 o (step_tac thms)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   461
*}
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   462
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   463
use "rew.ML"
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   464
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   465
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   466
subsection {* The elimination rules for fst/snd *}
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   467
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   468
lemma SumE_fst: "p : Sum(A,B) ==> fst(p) : A"
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   469
apply (unfold basic_defs)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   470
apply (erule SumE)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   471
apply assumption
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   472
done
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   473
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   474
(*The first premise must be p:Sum(A,B) !!*)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   475
lemma SumE_snd:
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   476
  assumes major: "p: Sum(A,B)"
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   477
    and "A type"
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   478
    and "!!x. x:A ==> B(x) type"
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   479
  shows "snd(p) : B(fst(p))"
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   480
  apply (unfold basic_defs)
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   481
  apply (rule major [THEN SumE])
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   482
  apply (rule SumC [THEN subst_eqtyparg, THEN replace_type])
26391
6e8aa5a4eb82 more antiquotations;
wenzelm
parents: 23467
diff changeset
   483
  apply (tactic {* typechk_tac @{thms assms} *})
19761
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   484
  done
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   485
5cd82054c2c6 removed obsolete ML files;
wenzelm
parents: 17782
diff changeset
   486
end