src/HOL/Univ.thy
author wenzelm
Mon, 08 May 2000 20:59:30 +0200
changeset 8840 18b76c137c41
parent 8735 bb2250ac9557
child 9436 62bb04ab4b01
permissions -rw-r--r--
moved theory Sexp to Induct examples;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     1
(*  Title:      HOL/Univ.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     2
    ID:         $Id$
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     4
    Copyright   1993  University of Cambridge
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     5
7014
11ee650edcd2 Added some definitions and theorems needed for the
berghofe
parents: 5978
diff changeset
     6
Declares the type ('a, 'b) node, a subtype of (nat=>'b+nat) * ('a+nat)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     7
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     8
Defines "Cartesian Product" and "Disjoint Sum" as set operations.
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     9
Could <*> be generalized to a general summation (Sigma)?
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    10
*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    11
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    12
Univ = Arith + Sum +
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    13
7131
0b2fe9ec709c 'arith' proof method;
wenzelm
parents: 7014
diff changeset
    14
setup arith_setup
0b2fe9ec709c 'arith' proof method;
wenzelm
parents: 7014
diff changeset
    15
0b2fe9ec709c 'arith' proof method;
wenzelm
parents: 7014
diff changeset
    16
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    17
(** lists, trees will be sets of nodes **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    18
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1396
diff changeset
    19
typedef (Node)
7014
11ee650edcd2 Added some definitions and theorems needed for the
berghofe
parents: 5978
diff changeset
    20
  ('a, 'b) node = "{p. EX f x k. p = (f::nat=>'b+nat, x::'a+nat) & f k = Inr 0}"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    21
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    22
types
7014
11ee650edcd2 Added some definitions and theorems needed for the
berghofe
parents: 5978
diff changeset
    23
  'a item = ('a, unit) node set
11ee650edcd2 Added some definitions and theorems needed for the
berghofe
parents: 5978
diff changeset
    24
  ('a, 'b) dtree = ('a, 'b) node set
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    25
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    26
consts
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    27
  apfst     :: "['a=>'c, 'a*'b] => 'c*'b"
7014
11ee650edcd2 Added some definitions and theorems needed for the
berghofe
parents: 5978
diff changeset
    28
  Push      :: "[('b + nat), nat => ('b + nat)] => (nat => ('b + nat))"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    29
7014
11ee650edcd2 Added some definitions and theorems needed for the
berghofe
parents: 5978
diff changeset
    30
  Push_Node :: "[('b + nat), ('a, 'b) node] => ('a, 'b) node"
11ee650edcd2 Added some definitions and theorems needed for the
berghofe
parents: 5978
diff changeset
    31
  ndepth    :: ('a, 'b) node => nat
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    32
7014
11ee650edcd2 Added some definitions and theorems needed for the
berghofe
parents: 5978
diff changeset
    33
  Atom      :: "('a + nat) => ('a, 'b) dtree"
11ee650edcd2 Added some definitions and theorems needed for the
berghofe
parents: 5978
diff changeset
    34
  Leaf      :: 'a => ('a, 'b) dtree
11ee650edcd2 Added some definitions and theorems needed for the
berghofe
parents: 5978
diff changeset
    35
  Numb      :: nat => ('a, 'b) dtree
11ee650edcd2 Added some definitions and theorems needed for the
berghofe
parents: 5978
diff changeset
    36
  Scons     :: [('a, 'b) dtree, ('a, 'b) dtree] => ('a, 'b) dtree
11ee650edcd2 Added some definitions and theorems needed for the
berghofe
parents: 5978
diff changeset
    37
  In0,In1   :: ('a, 'b) dtree => ('a, 'b) dtree
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    38
7014
11ee650edcd2 Added some definitions and theorems needed for the
berghofe
parents: 5978
diff changeset
    39
  Lim       :: ('b => ('a, 'b) dtree) => ('a, 'b) dtree
11ee650edcd2 Added some definitions and theorems needed for the
berghofe
parents: 5978
diff changeset
    40
  Funs      :: "'u set => ('t => 'u) set"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    41
7014
11ee650edcd2 Added some definitions and theorems needed for the
berghofe
parents: 5978
diff changeset
    42
  ntrunc    :: [nat, ('a, 'b) dtree] => ('a, 'b) dtree
11ee650edcd2 Added some definitions and theorems needed for the
berghofe
parents: 5978
diff changeset
    43
7255
853bdbe9973d Eliminated some infixes.
berghofe
parents: 7131
diff changeset
    44
  uprod     :: [('a, 'b) dtree set, ('a, 'b) dtree set]=> ('a, 'b) dtree set
853bdbe9973d Eliminated some infixes.
berghofe
parents: 7131
diff changeset
    45
  usum      :: [('a, 'b) dtree set, ('a, 'b) dtree set]=> ('a, 'b) dtree set
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    46
7255
853bdbe9973d Eliminated some infixes.
berghofe
parents: 7131
diff changeset
    47
  Split     :: [[('a, 'b) dtree, ('a, 'b) dtree]=>'c, ('a, 'b) dtree] => 'c
853bdbe9973d Eliminated some infixes.
berghofe
parents: 7131
diff changeset
    48
  Case      :: [[('a, 'b) dtree]=>'c, [('a, 'b) dtree]=>'c, ('a, 'b) dtree] => 'c
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    49
7255
853bdbe9973d Eliminated some infixes.
berghofe
parents: 7131
diff changeset
    50
  dprod     :: "[(('a, 'b) dtree * ('a, 'b) dtree)set, (('a, 'b) dtree * ('a, 'b) dtree)set] 
853bdbe9973d Eliminated some infixes.
berghofe
parents: 7131
diff changeset
    51
                => (('a, 'b) dtree * ('a, 'b) dtree)set"
853bdbe9973d Eliminated some infixes.
berghofe
parents: 7131
diff changeset
    52
  dsum      :: "[(('a, 'b) dtree * ('a, 'b) dtree)set, (('a, 'b) dtree * ('a, 'b) dtree)set] 
853bdbe9973d Eliminated some infixes.
berghofe
parents: 7131
diff changeset
    53
                => (('a, 'b) dtree * ('a, 'b) dtree)set"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    54
3947
eb707467f8c5 adapted to qualified names;
wenzelm
parents: 1562
diff changeset
    55
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    56
defs
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    57
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    58
  Push_Node_def  "Push_Node == (%n x. Abs_Node (apfst (Push n) (Rep_Node x)))"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    59
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    60
  (*crude "lists" of nats -- needed for the constructions*)
1396
48bcde67391b Now def of apfst uses pattern-matching
paulson
parents: 1384
diff changeset
    61
  apfst_def  "apfst == (%f (x,y). (f(x),y))"
7014
11ee650edcd2 Added some definitions and theorems needed for the
berghofe
parents: 5978
diff changeset
    62
  Push_def   "Push == (%b h. nat_case b h)"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    63
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    64
  (** operations on S-expressions -- sets of nodes **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    65
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    66
  (*S-expression constructors*)
7014
11ee650edcd2 Added some definitions and theorems needed for the
berghofe
parents: 5978
diff changeset
    67
  Atom_def   "Atom == (%x. {Abs_Node((%k. Inr 0, x))})"
11ee650edcd2 Added some definitions and theorems needed for the
berghofe
parents: 5978
diff changeset
    68
  Scons_def  "Scons M N == (Push_Node (Inr 1) `` M) Un (Push_Node (Inr 2) `` N)"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    69
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    70
  (*Leaf nodes, with arbitrary or nat labels*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    71
  Leaf_def   "Leaf == Atom o Inl"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    72
  Numb_def   "Numb == Atom o Inr"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    73
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    74
  (*Injections of the "disjoint sum"*)
5191
8ceaa19f7717 Renamed '$' to 'Scons' because of clashes with constants of the same
berghofe
parents: 3947
diff changeset
    75
  In0_def    "In0(M) == Scons (Numb 0) M"
8ceaa19f7717 Renamed '$' to 'Scons' because of clashes with constants of the same
berghofe
parents: 3947
diff changeset
    76
  In1_def    "In1(M) == Scons (Numb 1) M"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    77
7014
11ee650edcd2 Added some definitions and theorems needed for the
berghofe
parents: 5978
diff changeset
    78
  (*Function spaces*)
11ee650edcd2 Added some definitions and theorems needed for the
berghofe
parents: 5978
diff changeset
    79
  Lim_def "Lim f == Union {z. ? x. z = Push_Node (Inl x) `` (f x)}"
11ee650edcd2 Added some definitions and theorems needed for the
berghofe
parents: 5978
diff changeset
    80
  Funs_def "Funs S == {f. range f <= S}"
11ee650edcd2 Added some definitions and theorems needed for the
berghofe
parents: 5978
diff changeset
    81
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    82
  (*the set of nodes with depth less than k*)
7014
11ee650edcd2 Added some definitions and theorems needed for the
berghofe
parents: 5978
diff changeset
    83
  ndepth_def "ndepth(n) == (%(f,x). LEAST k. f k = Inr 0) (Rep_Node n)"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    84
  ntrunc_def "ntrunc k N == {n. n:N & ndepth(n)<k}"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    85
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    86
  (*products and sums for the "universe"*)
7255
853bdbe9973d Eliminated some infixes.
berghofe
parents: 7131
diff changeset
    87
  uprod_def  "uprod A B == UN x:A. UN y:B. { Scons x y }"
853bdbe9973d Eliminated some infixes.
berghofe
parents: 7131
diff changeset
    88
  usum_def   "usum A B == In0``A Un In1``B"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    89
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    90
  (*the corresponding eliminators*)
5191
8ceaa19f7717 Renamed '$' to 'Scons' because of clashes with constants of the same
berghofe
parents: 3947
diff changeset
    91
  Split_def  "Split c M == @u. ? x y. M = Scons x y & u = c x y"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    92
1151
c820b3cc3df0 removed \...\ inside strings
clasohm
parents: 1068
diff changeset
    93
  Case_def   "Case c d M == @u.  (? x . M = In0(x) & u = c(x)) 
7255
853bdbe9973d Eliminated some infixes.
berghofe
parents: 7131
diff changeset
    94
                               | (? y . M = In1(y) & u = d(y))"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    95
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    96
5978
fa2c2dd74f8c moved diag (diagonal relation) from Univ to Relation
paulson
parents: 5191
diff changeset
    97
  (** equality for the "universe" **)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    98
7255
853bdbe9973d Eliminated some infixes.
berghofe
parents: 7131
diff changeset
    99
  dprod_def  "dprod r s == UN (x,x'):r. UN (y,y'):s. {(Scons x y, Scons x' y')}"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   100
7255
853bdbe9973d Eliminated some infixes.
berghofe
parents: 7131
diff changeset
   101
  dsum_def   "dsum r s == (UN (x,x'):r. {(In0(x),In0(x'))}) Un 
853bdbe9973d Eliminated some infixes.
berghofe
parents: 7131
diff changeset
   102
                          (UN (y,y'):s. {(In1(y),In1(y'))})"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   103
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   104
end