Division and Modulus for Computer Scientists.pdf

Division and Modulus for Computer Scientists.pdf

  1. 1、本文档共6页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Division and Modulus for Computer Scientists

Division and Modulus for Computer Scientists DAAN LEIJEN University of Utrecht Dept. of Computer Science PO.Box 80.089, 3508 TB Utrecht The Netherlands daan@cs.uu.nl,http://www.cs.uu.nl/~daan/lvm.html December 3, 2001 1 Introduction There exist many definitions of the div and mod functions in computer science literature and programming languages. Boute (Boute, 1992) describes most of these and discusses their mathematical properties in depth. We shall therefore only briefly review the most common definitions and the rare, but mathematically elegant, Euclidean division. We also give an algorithm for the Euclidean div and mod functions and prove it correct with respect to Euclid’s theorem. 1.1 Common definitions Most common definitions are based on the following mathematical definition. For any two real numbers D (dividend) and d (divisor) with d 6= 0, there exists a pair of numbers q (quotient) and r (remainder) that satisfy the following basic conditions of division: (1) q ∈ Z (the quotient is an integer) (2) D = d · q + r (division rule) (3) |r | |d | We only consider functions div and mod that satisfy the following equalities: q = D div d r = D mod d The above conditions don’t enforce a unique pair of numbers q and r. When div and mod are defined as functions, one has to choose a particular pair q and r that satisfy these conditions. It is this choice that causes the different definitions found in literature and programming languages. Note that the definitions for division and modulus in Pascal and Algol68 fail to satisfy even the basic division conditions for negative numbers. The four most 1 2 Division and Modulus for Computer Scientists common definitions that satisfy these conditions are div-dominant and use the same basic structure. q = D div d = f (D/d) r = D mod d = D ? d · q Note that due to the definition of r, condition (2) is automatically satisfied by these definitions. Each definition is instantiated by choosing a proper function f : q = trunc(D/d) (

您可能关注的文档

文档评论(0)

l215322 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档