- 1、本文档共6页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 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) (
您可能关注的文档
- CRISPR实验流程.pdf
- CRISPR_Cas9基因组编辑技术在农业动物中的应用.pdf
- Critical success factors for public-private partnerships in infrastructure development.pdf
- Crime Data Mining An Overview and Case Studies.pdf
- Cross comparison of US, EU, JP and Korean companies patenting activity in Japan and in the Peoples R.pdf
- CRM的IE配置 网上报销打印报错设置 - 13.1wise.pdf
- Cryptic photosynthesis, Extrasolar planetary oxygen without a surface biological signature.pdf
- CRYSTALLIZATION BEHAVIOR OF A THERMOTROPIC LIQUID CRYSTAL COPOLYESTER.pdf
- CS379H Honors Thesis Parallel Implementation of Triangular Solve.pdf
- CS8122_3W单声道D类音频放大器上大科技.pdf
- 2024高考物理一轮复习规范演练7共点力的平衡含解析新人教版.doc
- 高中语文第5课苏轼词两首学案3新人教版必修4.doc
- 2024_2025学年高中英语课时分层作业9Unit3LifeinthefutureSectionⅢⅣ含解析新人教版必修5.doc
- 2024_2025学年新教材高中英语模块素养检测含解析译林版必修第一册.doc
- 2024_2025学年新教材高中英语单元综合检测5含解析外研版选择性必修第一册.doc
- 2024高考政治一轮复习第1单元生活与消费第三课多彩的消费练习含解析新人教版必修1.doc
- 2024_2025学年新教材高中英语WELCOMEUNITSectionⅡReadingandThi.doc
- 2024_2025学年高中历史专题九当今世界政治格局的多极化趋势测评含解析人民版必修1.docx
- 2024高考生物一轮复习第9单元生物与环境第29讲生态系统的结构和功能教案.docx
- 2024_2025学年新教材高中英语UNIT5LANGUAGESAROUNDTHEWORLDSect.doc
文档评论(0)