src/HOL/Nat.thy
author paulson
Thu, 09 Jan 1997 10:22:42 +0100
changeset 2498 7914881f47c0
parent 2393 651fce76c86c
child 2541 70aa00ed3025
permissions -rw-r--r--
New theorem add_leE
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/Nat.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:     Tobias Nipkow, Cambridge University Computer Laboratory
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     4
    Copyright   1991  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
Definition of types ind and nat.
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
Type nat is defined as a set Nat over type ind.
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     9
*)
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
Nat = WF +
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    12
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    13
(** type ind **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    14
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    15
types
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    16
  ind
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    17
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    18
arities
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    19
  ind :: term
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    20
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    21
consts
1370
7361ac9b024d removed quotes from types in consts and syntax sections
clasohm
parents: 1151
diff changeset
    22
  Zero_Rep      :: ind
7361ac9b024d removed quotes from types in consts and syntax sections
clasohm
parents: 1151
diff changeset
    23
  Suc_Rep       :: ind => ind
923
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
rules
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    26
  (*the axiom of infinity in 2 parts*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    27
  inj_Suc_Rep           "inj(Suc_Rep)"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    28
  Suc_Rep_not_Zero_Rep  "Suc_Rep(x) ~= Zero_Rep"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    29
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    30
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    31
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    32
(** type nat **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    33
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    34
(* type definition *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    35
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1370
diff changeset
    36
typedef (Nat)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    37
  nat = "lfp(%X. {Zero_Rep} Un (Suc_Rep``X))"   (lfp_def)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    38
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    39
instance
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    40
  nat :: ord
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    41
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    42
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    43
(* abstract constants and syntax *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    44
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    45
consts
1531
e5eb247ad13c Added a constant UNIV == {x.True}
nipkow
parents: 1475
diff changeset
    46
  "0"       :: nat                ("0")
e5eb247ad13c Added a constant UNIV == {x.True}
nipkow
parents: 1475
diff changeset
    47
  Suc       :: nat => nat
e5eb247ad13c Added a constant UNIV == {x.True}
nipkow
parents: 1475
diff changeset
    48
  nat_case  :: ['a, nat => 'a, nat] => 'a
e5eb247ad13c Added a constant UNIV == {x.True}
nipkow
parents: 1475
diff changeset
    49
  pred_nat  :: "(nat * nat) set"
1824
44254696843a Changed argument order of nat_rec.
berghofe
parents: 1674
diff changeset
    50
  nat_rec   :: ['a, [nat, 'a] => 'a, nat] => 'a
1531
e5eb247ad13c Added a constant UNIV == {x.True}
nipkow
parents: 1475
diff changeset
    51
e5eb247ad13c Added a constant UNIV == {x.True}
nipkow
parents: 1475
diff changeset
    52
  Least     :: (nat=>bool) => nat    (binder "LEAST " 10)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    53
2258
8ad8ee759d9f moved "1", "2" to syntax section;
wenzelm
parents: 1824
diff changeset
    54
syntax
8ad8ee759d9f moved "1", "2" to syntax section;
wenzelm
parents: 1824
diff changeset
    55
  "1"       :: nat                ("1")
8ad8ee759d9f moved "1", "2" to syntax section;
wenzelm
parents: 1824
diff changeset
    56
  "2"       :: nat                ("2")
8ad8ee759d9f moved "1", "2" to syntax section;
wenzelm
parents: 1824
diff changeset
    57
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    58
translations
2393
651fce76c86c adaptions for symbol font
oheimb
parents: 2258
diff changeset
    59
   "1"  == "Suc 0"
651fce76c86c adaptions for symbol font
oheimb
parents: 2258
diff changeset
    60
   "2"  == "Suc 1"
651fce76c86c adaptions for symbol font
oheimb
parents: 2258
diff changeset
    61
  "case p of 0 => a | Suc y => b" == "nat_case a (%y.b) p"
651fce76c86c adaptions for symbol font
oheimb
parents: 2258
diff changeset
    62
651fce76c86c adaptions for symbol font
oheimb
parents: 2258
diff changeset
    63
(*
651fce76c86c adaptions for symbol font
oheimb
parents: 2258
diff changeset
    64
syntax (symbols)
651fce76c86c adaptions for symbol font
oheimb
parents: 2258
diff changeset
    65
651fce76c86c adaptions for symbol font
oheimb
parents: 2258
diff changeset
    66
  "LEAST "	:: [idts, bool] => nat		("(3\\<mu>_./ _)" [0, 10] 10)
651fce76c86c adaptions for symbol font
oheimb
parents: 2258
diff changeset
    67
*)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    68
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    69
defs
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    70
  Zero_def      "0 == Abs_Nat(Zero_Rep)"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    71
  Suc_def       "Suc == (%n. Abs_Nat(Suc_Rep(Rep_Nat(n))))"
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
  (*nat operations and recursion*)
1151
c820b3cc3df0 removed \...\ inside strings
clasohm
parents: 972
diff changeset
    74
  nat_case_def  "nat_case a f n == @z.  (n=0 --> z=a)  
2393
651fce76c86c adaptions for symbol font
oheimb
parents: 2258
diff changeset
    75
                                        & (!x. n=Suc x --> z=f(x))"
651fce76c86c adaptions for symbol font
oheimb
parents: 2258
diff changeset
    76
  pred_nat_def  "pred_nat == {p. ? n. p = (n, Suc n)}"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    77
1531
e5eb247ad13c Added a constant UNIV == {x.True}
nipkow
parents: 1475
diff changeset
    78
  less_def      "m<n == (m,n):trancl(pred_nat)"
e5eb247ad13c Added a constant UNIV == {x.True}
nipkow
parents: 1475
diff changeset
    79
e5eb247ad13c Added a constant UNIV == {x.True}
nipkow
parents: 1475
diff changeset
    80
  le_def        "m<=(n::nat) == ~(n<m)"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    81
1824
44254696843a Changed argument order of nat_rec.
berghofe
parents: 1674
diff changeset
    82
  nat_rec_def   "nat_rec c d ==
44254696843a Changed argument order of nat_rec.
berghofe
parents: 1674
diff changeset
    83
                 wfrec pred_nat (%f. nat_case c (%m. d m (f m)))"
1531
e5eb247ad13c Added a constant UNIV == {x.True}
nipkow
parents: 1475
diff changeset
    84
  (*least number operator*)
2393
651fce76c86c adaptions for symbol font
oheimb
parents: 2258
diff changeset
    85
  Least_def     "Least P == @k. P(k) & (ALL j. j<k --> ~P(j))"
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1625
diff changeset
    86
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    87
end