src/HOL/Arith.thy
author paulson
Fri, 10 May 1996 17:41:10 +0200
changeset 1744 115e928ad367
parent 1475 7f5a4cd08209
child 1796 c42db9ab8728
permissions -rw-r--r--
Corrected and augmented timings
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/Arith.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
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     6
Arithmetic operators and their definitions
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
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     9
Arith = Nat +
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
instance
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    12
  nat :: {plus, minus, times}
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
consts
1370
7361ac9b024d removed quotes from types in consts and syntax sections
clasohm
parents: 972
diff changeset
    15
  pred      :: nat => nat
7361ac9b024d removed quotes from types in consts and syntax sections
clasohm
parents: 972
diff changeset
    16
  div, mod  :: [nat, nat] => nat  (infixl 70)
923
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
defs
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    19
  pred_def  "pred(m) == nat_rec m 0 (%n r.n)"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    20
  add_def   "m+n == nat_rec m n (%u v. Suc(v))"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    21
  diff_def  "m-n == nat_rec n m (%u v. pred(v))"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    22
  mult_def  "m*n == nat_rec m 0 (%u v. n + v)"
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1370
diff changeset
    23
mod_def "m mod n == wfrec (trancl pred_nat)
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1370
diff changeset
    24
                          (%f j. if j<n then j else f (j-n)) m"
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1370
diff changeset
    25
div_def "m div n == wfrec (trancl pred_nat) 
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1370
diff changeset
    26
                          (%f j. if j<n then 0 else Suc (f (j-n))) m"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    27
end
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    28
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    29
(*"Difference" is subtraction of natural numbers.
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    30
  There are no negative numbers; we have
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 965
diff changeset
    31
     m - n = 0  iff  m<=n   and     m - n = Suc(k) iff m)n.
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    32
  Also, nat_rec(m, 0, %z w.z) is pred(m).   *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    33