src/HOL/Integ/NatBin.thy
author wenzelm
Tue, 23 Oct 2001 22:52:31 +0200
changeset 11908 82f68fd05094
parent 11468 02cd5d5bc497
child 12440 fb5851b71a82
permissions -rw-r--r--
eliminated old numerals;

(*  Title:      HOL/NatBin.thy
    ID:         $Id$
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
    Copyright   1999  University of Cambridge

Binary arithmetic for the natural numbers

This case is simply reduced to that for the non-negative integers
*)

theory NatBin = IntPower
files ("nat_bin.ML"):

instance  nat :: number ..

defs
  nat_number_of_def:
    "number_of v == nat (number_of v)"
     (*::bin=>nat        ::bin=>int*)

use "nat_bin.ML"	setup nat_bin_arith_setup

end