src/HOL/Prod.thy
author paulson
Mon, 07 Oct 1996 10:28:44 +0200
changeset 2056 93c093620c28
parent 1765 5db6b3ea0e28
child 2260 b59781f2b809
permissions -rw-r--r--
Removed commands made redundant by new one-point rules
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/Prod.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     2
    ID:         Prod.thy,v 1.5 1994/08/19 09:04:27 lcp Exp
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   1992  University of Cambridge
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     5
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     6
Ordered Pairs and the Cartesian product type.
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     7
The unit type.
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     8
*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     9
1755
17001ecd546e Added additional parent theory equalities because some proofs in
berghofe
parents: 1674
diff changeset
    10
Prod = Fun + equalities +
923
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
(** Products **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    13
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    14
(* type definition *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    15
1558
9c6ebfab4e05 added constdefs section
clasohm
parents: 1475
diff changeset
    16
constdefs
1370
7361ac9b024d removed quotes from types in consts and syntax sections
clasohm
parents: 1273
diff changeset
    17
  Pair_Rep      :: ['a, 'b] => ['a, 'b] => bool
1558
9c6ebfab4e05 added constdefs section
clasohm
parents: 1475
diff changeset
    18
  "Pair_Rep == (%a b. %x y. x=a & y=b)"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    19
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1454
diff changeset
    20
typedef (Prod)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    21
  ('a, 'b) "*"          (infixr 20)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    22
    = "{f. ? a b. f = Pair_Rep (a::'a) (b::'b)}"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    23
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    24
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    25
(* abstract constants and syntax *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    26
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    27
consts
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    28
  fst           :: "'a * 'b => 'a"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    29
  snd           :: "'a * 'b => 'b"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    30
  split         :: "[['a, 'b] => 'c, 'a * 'b] => 'c"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    31
  prod_fun      :: "['a => 'b, 'c => 'd, 'a * 'c] => 'b * 'd"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    32
  Pair          :: "['a, 'b] => 'a * 'b"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    33
  Sigma         :: "['a set, 'a => 'b set] => ('a * 'b) set"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    34
1068
e0f2dffab506 HOL.thy:
nipkow
parents: 972
diff changeset
    35
(** Patterns -- extends pre-defined type "pttrn" used in abstractions **)
e0f2dffab506 HOL.thy:
nipkow
parents: 972
diff changeset
    36
types pttrns
e0f2dffab506 HOL.thy:
nipkow
parents: 972
diff changeset
    37
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    38
syntax
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 967
diff changeset
    39
  "@Tuple"      :: "['a, args] => 'a * 'b"            ("(1'(_,/ _'))")
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    40
1370
7361ac9b024d removed quotes from types in consts and syntax sections
clasohm
parents: 1273
diff changeset
    41
  "@pttrn"  :: [pttrn,pttrns] => pttrn              ("'(_,/_')")
7361ac9b024d removed quotes from types in consts and syntax sections
clasohm
parents: 1273
diff changeset
    42
  ""        ::  pttrn         => pttrns             ("_")
7361ac9b024d removed quotes from types in consts and syntax sections
clasohm
parents: 1273
diff changeset
    43
  "@pttrns" :: [pttrn,pttrns] => pttrns             ("_,/_")
1068
e0f2dffab506 HOL.thy:
nipkow
parents: 972
diff changeset
    44
1636
e18416e3e1d4 Introduced Times and SIGMA.
nipkow
parents: 1558
diff changeset
    45
  "@Sigma"  :: "[idt,'a set,'b set] => ('a * 'b)set"
e18416e3e1d4 Introduced Times and SIGMA.
nipkow
parents: 1558
diff changeset
    46
               ("(3SIGMA _:_./ _)" 10)
e18416e3e1d4 Introduced Times and SIGMA.
nipkow
parents: 1558
diff changeset
    47
  "@Times"  :: "['a set, 'a => 'b set] => ('a * 'b) set"
e18416e3e1d4 Introduced Times and SIGMA.
nipkow
parents: 1558
diff changeset
    48
               ("_ Times _" [81,80] 80)
e18416e3e1d4 Introduced Times and SIGMA.
nipkow
parents: 1558
diff changeset
    49
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    50
translations
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 967
diff changeset
    51
  "(x, y, z)"   == "(x, (y, z))"
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 967
diff changeset
    52
  "(x, y)"      == "Pair x y"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    53
1114
c8dfb56a7e95 Prod is now a parent of Lfp.
nipkow
parents: 1081
diff changeset
    54
  "%(x,y,zs).b"   == "split(%x (y,zs).b)"
c8dfb56a7e95 Prod is now a parent of Lfp.
nipkow
parents: 1081
diff changeset
    55
  "%(x,y).b"      == "split(%x y.b)"
1068
e0f2dffab506 HOL.thy:
nipkow
parents: 972
diff changeset
    56
1636
e18416e3e1d4 Introduced Times and SIGMA.
nipkow
parents: 1558
diff changeset
    57
  "SIGMA x:A. B"  =>  "Sigma A (%x.B)"
e18416e3e1d4 Introduced Times and SIGMA.
nipkow
parents: 1558
diff changeset
    58
  "A Times B"     =>  "Sigma A (_K B)"
e18416e3e1d4 Introduced Times and SIGMA.
nipkow
parents: 1558
diff changeset
    59
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    60
defs
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    61
  Pair_def      "Pair a b == Abs_Prod(Pair_Rep a b)"
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 967
diff changeset
    62
  fst_def       "fst(p) == @a. ? b. p = (a, b)"
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 967
diff changeset
    63
  snd_def       "snd(p) == @b. ? a. p = (a, b)"
1655
5be64540f275 Added a number of lemmas
nipkow
parents: 1636
diff changeset
    64
  split_def     "split == (%c p. c (fst p) (snd p))"
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 967
diff changeset
    65
  prod_fun_def  "prod_fun f g == split(%x y.(f(x), g(y)))"
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 967
diff changeset
    66
  Sigma_def     "Sigma A B == UN x:A. UN y:B(x). {(x, y)}"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    67
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    68
(** Unit **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    69
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1454
diff changeset
    70
typedef (Unit)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    71
  unit = "{p. p = True}"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    72
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    73
consts
1370
7361ac9b024d removed quotes from types in consts and syntax sections
clasohm
parents: 1273
diff changeset
    74
  "()"          :: unit                           ("'(')")
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    75
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    76
defs
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 967
diff changeset
    77
  Unity_def     "() == Abs_Unit(True)"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    78
1273
6960ec882bca added 8bit pragmas
regensbu
parents: 1114
diff changeset
    79
(* start 8bit 1 *)
6960ec882bca added 8bit pragmas
regensbu
parents: 1114
diff changeset
    80
(* end 8bit 1 *)
6960ec882bca added 8bit pragmas
regensbu
parents: 1114
diff changeset
    81
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    82
end
1636
e18416e3e1d4 Introduced Times and SIGMA.
nipkow
parents: 1558
diff changeset
    83
e18416e3e1d4 Introduced Times and SIGMA.
nipkow
parents: 1558
diff changeset
    84
ML
e18416e3e1d4 Introduced Times and SIGMA.
nipkow
parents: 1558
diff changeset
    85
e18416e3e1d4 Introduced Times and SIGMA.
nipkow
parents: 1558
diff changeset
    86
val print_translation = [("Sigma", dependent_tr' ("@Sigma", "@Times"))];