[Computer Basics] mod function and negative numbers

Source: Internet
Author: User
Tags exponent operator integer division integer numbers modulus
Http://mathforum.org/library/drmath/view/52343.htmlMod function and negative numbers
Date: 04/28/2000 at 11:17:09From: AnneSubject: Using the mod() function with negative numbersI work in IT - Technical Support. I am trying to sort out a problem for a user who is using the MOD() function in Excel 97 as follows:     =MOD(-340,60)He thinks it should return a value of 40, but it returns a value of 20.It returns a value of 40 if we do the following:     =MOD(340,60)Now I am wondering why the negative sign makes a difference. You can see from my age that it was years ago that I had math, and I was very good at it. But I cannot remember how negative numbers work in division.Can you help me?Anne
Date: 04/28/2000 at 12:57:10From: Doctor PetersonSubject: Re: Using the mod() function with negative numbersHi, Anne.There are different ways of thinking about remainders when you deal with negative numbers, and he is probably confusing two of them. The mod function is defined as the amount by which a number exceeds the largest integer multiple of the divisor that is not greater than that number. In this case, -340 lies between -360 and -300, so -360 is the greatest multiple LESS than -340; we subtract 60 * -6 = -360 from -340 and get 20:-420 -360 -300 -240 -180 -120  -60   0   60   120  180  240  300  360--+----+----+----+----+----+----+----+----+----+----+----+----+----+--       | |                                                    |  |   -360| |-340                                             300|  |340       |=|                                                    |==|        20                                                     40Working with a positive number like 340, the multiple we subtract is smaller in absolute value, giving us 40; but with negative numbers, we subtract a number with a LARGER absolute value, so that the mod function returns a positive value. This is not always what people expect, but it is consistent.If you want the remainder, ignoring the sign, you have to take the absolute value before using the mod function.- Doctor Peterson, The Math Forum  http://mathforum.org/dr.math/   
Date: 05/02/2000 at 04:58:50From: Norwich C.C. Network ServicesSubject: Re: Using the mod() function with negative numbersThanks very much for sorting this out. I had worked out how it was arriving at the result, but did not know whether it was correct. We had also tried it in Lotus 1-2-3 and the result given was -40, which was what the user expected. Nice to have built some user confidence in Excel.Thanks again for your help.Anne
Date: 05/02/2000 at 17:16:19From: Doctor PetersonSubject: Re: Using the mod() function with negative numbersHi, Anne.It occurs to me that I don't quite want to leave you trusting Excel too much. A comment I had considered making before was that a program may often use its own definitions for functions like this, and apparently Lotus proves my point that "mod" can be taken in different ways. You should always go by the manual, not by what a mathematician says.Excel has its own share of mathematical foibles; here's a copy of an answer I gave to someone who asked about its handling of -a^b:     ===========================================================The proper rule is that negation has the same precedence as multiplication and division. After all, negation means multiplication by -1. So -a^b should be taken as -(a^b). You can read more how Excelhandles that calculation in this note from our archives:  Order of Operations and Negation in Excel  http://mathforum.org/library/drmath/view/69058.htmlSome time ago when I was researching order of operations for another inquiry, I ran across this page from Microsoft explaining this quirk:    XL: Order of Precedence Causes Unexpected Positive Value   http://support.microsoft.com/support/kb/articles/Q132/6/86.asp   It doesn't claim that their rule agrees with the mathematical world, only that they make their own standards, and don't have to agree with anyone:  This behavior is by design of Microsoft Excel. Microsoft Excel uses  an order of calculation to evaluate operators in formulas. The order  of evaluation of operators dictates that a minus sign (-) used as a  negation operator (such as -1) is evaluated before all other  operators. Because of this order, the formula =-1^2 represents the  value -1 squared, and returns the value 1, a positive value.   ...  Note that this has been the standard method for evaluating formulas  since the first version of Microsoft Excel.  NOTE: This order of operation is different from the order of  operation in Lotus 1-2-3.What I suspect is that the programmers were accustomed to the C language, in which unary operators such as negation have higher precedence than any binary operator; there is no exponent operator in C. When they added the exponent operator, they may simply have forgotten that it should have higher precedence, or they may have found it was easier to program this way. Once the rule became established, they couldn't change it and make customer's programs fail.There are many other instances where calculators or software make their own rules; sometimes this is because of limitations of their interface, sometimes because of a misguided desire to "improve" the rules. In any case, we can't use any piece of software as our guide to mathematical practice, and students should be taught not to confuse the rules of a particular program with those of math. We wouldn't want Microsoft to be making these decisions for us anyway, would we?===========================================================So the score is Microsoft 1, Lotus 1!- Doctor Peterson, The Math Forum  http://mathforum.org/dr.math/   
Date: 05/03/2000 at 08:53:33From: Norwich C.C. Network ServicesSubject: Re: using the mod() function with negative numbersThanks for that!I will remember not to trust Excel too much.Anne
Date: 07/05/2001 at 13:58:23From: A. H. BanenSubject: Mod Function and Negative NumbersDear Dr. Peterson,Concerning the topic "Mod Function and Negative Numbers," I found it strange you did not refer to the simple rule concerning integer division and modulo calculation: Given the integer numbers A and B(where B cannot be equal to zero), the following holds:A = ( A DIV B ) * B  +  A MOD Be.g. for A = 340 and B = 60A = ( 340 DIV 60 ) * 60  +  ( 340 MOD 60 )  =>A = (      5     ) * 60  +        40        =>A = 340Also, when A = -340 and B = 60A = ( -340 DIV 60 ) * 60 + ( -340 MOD 60 )A = (      -5     ) * 60 + (      -40    ) =>A = -340From this can be derived that MOD(-340, 60) should have been -40Sincerely,Andre Banen
Date: 07/05/2001 at 16:17:04From: Doctor PetersonSubject: Re: Mod Function and Negative NumbersHi, Andre.You're right that this relation is relevant to the question; belowI'm going to include a more detailed answer.But it only proves what MOD should do _if_ we know how DIV is defined;that is, it is a statement of consistency between the mod function andthe direction of integer truncation. You're _assuming_ truncationtoward zero, so that -340/60 gives -5. But in Excel, we see that therelation looks like this:     A = ( -340 DIV 60 ) * 60 + ( -340 MOD 60 )  -340 =       -6        * 60 +        20This is perfectly consistent if their integer division truncatestoward -infinity rather than toward zero, so that -340/60 is taken tobe -6. And that's just what I said, using words rather than theformula:    The mod function is defined as the amount by which a number    exceeds the largest integer multiple of the divisor that is    not greater than that number. In this case, -340 lies between    -360 and -300, so -360 is the greatest multiple LESS than -340;    we subtract 60 * -6 = -360 from -340 and get 20.So in fact I did refer to your rule.Here's a more complete answer:Computer languages and libraries are notoriously inconsistent, or atleast unmathematical, in their implementation of "mod" for negativenumbers. There are several ways it can be interpreted in such cases,and the choice generally made is not what a mathematician wouldprobably have made. The issue is what range of values the functionshould return. Mathematically, we define "modulo" not as a function,but as a relation: any two numbers a and b are congruent modulo m if(a - b) is a multiple of m. If we want to make a function of this, wehave to choose which number b, of all those that are congruent to a,should be returned.Properly, the modulus operator a mod b should be mathematicallydefined as the number in the range [0,b) that is congruent to a, asstated here:    http://mathworld.wolfram.com/ModulusCongruence.html       In many computer languages (such as FORTRAN or Mathematica), the     common residue of b (mod m) is written mod(b,m) (FORTRAN) or     Mod[b,m] (Mathematica).    http://mathworld.wolfram.com/CommonResidue.html       The value of b, where a=b (mod m), taken to be nonnegative and     smaller than m.Unfortunately, this statement about FORTRAN, and implicitly about themany languages that have inherited their mathematical libraries fromFORTRAN, including C++, is not quite true where negative numbers areconcerned.The problem is that people tend to think of modulus as the same as remainder, and they expect the remainder of, say, -5 divided by 3 tobe the same as the remainder of 5 divided by 3, namely 2, but negated,giving -2. We naturally tend to remove the sign, do the work, and putthe sign back on, because that's how we divide. In other words, weexpect to truncate toward zero for both positive and negative numbers,and have the remainder be what's left "on the outside," away fromzero. More particularly, computers at least since the origin ofFORTRAN have done integer division by "truncating toward zero," sothat 5/2 = 2 and -5/2 = -2, and they keep their definition of "mod" or"%" consistent with this by requiring that    (a/b)*b + a%b = aso that "%" is really defined as the remainder of integer division as defined in the language.Because FORTRAN defined division and MOD this way, computers havetended to follow this rule internally (in order to implement FORTRANefficiently), and so other languages have perpetuated it as well. Somelanguages have been modified more recently to include the moremathematical model as an alternative; in fact, FORTRAN 90 added a newMODULO function that is defined so that the sign of MODULO(a,b) isthat of b, whereas the sign of MOD(a,b) is that of a. This makes itmatch the mathematical usage, at least when b is positive.Similarly, in Ada there are two different operators, "mod" (modulus) and "rem" (remainder). Here's an explanation with plenty of detail:    Ada '83 Language Reference Manual - U.S. Government    http://archive.adaic.com/standards/83lrm/html/lrm-04-05.html       Integer division and remainder are defined by the relation         A = (A/B)*B + (A rem B)     where (A rem B) has the sign of A and an absolute value less than     the absolute value of B. Integer division satisfies the identity         (-A)/B = -(A/B) = A/(-B)     The result of the modulus operation is such that (A mod B) has the     sign of B and an absolute value less than the absolute value of B;     in addition, for some integer value N, this result must satisfy     the relation         A = B*N + (A mod B)     ...    For positive A and B, A/B is the quotient and A rem B is the     remainder when A is divided by B. The following relations are     satisfied by the rem operator:         A    rem (-B) =   A rem B        (-A) rem   B  = -(A rem B)     For any integer K, the following identity holds:         A  mod   B  =  (A + K*B) mod B     The relations between integer division, remainder, and modulus are    illustrated by the following table:  A   B   A/B   A rem B  A mod B     A     B    A/B   A rem B   A mod B10   5    2       0        0      -10     5    -2       0         011   5    2       1        1      -11     5    -2      -1         412   5    2       2        2      -12     5    -2      -2         313   5    2       3        3      -13     5    -2      -3         214   5    2       4        4      -14     5    -2      -4         110  -5   -2       0        0      -10    -5     2       0         011  -5   -2       1       -4      -11    -5     2      -1        -112  -5   -2       2       -3      -12    -5     2      -2        -213  -5   -2       3       -2      -13    -5     2      -3        -314  -5   -2       4       -1      -14    -5     2      -4        -4So what's the conclusion? There are basically two models, reasonably distinguished in Ada terms as Remainder and Mod; the C++ "%" operatoris really Remainder, not Mod, despite what it's often called.Actually, its behavior for negative numbers is not even definedofficially; like many things in C, it's left to be processor-dependentbecause C does not define how a processor should handle integerdivision. Just by chance, all compilers I know truncate integerstoward zero, and therefore treat "%" as remainder, following theprecedent of FORTRAN. As _C: A Reference Manual_, by Harbison andSteele, says, "For maximum portability, programs should thereforeavoid depending on the behavior of the remainder operator when applied to negative integral operands."- Doctor Peterson, The Math Forum  http://mathforum.org/dr.math/   
Date: 07/06/2001 at 04:22:22From: A. H. BanenSubject: Re: Mod Function and Negative NumbersDear Dr. Peterson,I must concur with almost of your reasoning with one exception: you state Ihave a _presumption_ about truncation towards zero. But, toward the end ofthe very complete answer you sent me, you quote fromreferences found in the Ada '83 Language Reference Manual that integerdivision has to satisfy the identity (-A)/B = -(A/B) = A/(-B). When thisidentity is observed there is only one correct outcome of the integer divison-340/60 (i.e. -5).I can only hope that the identities the above site states to besatisfied by integer devision, remainder and modulo function, are not thepresumption used by the definition of Ada, but that these are fundamentalidentities all calculus is based on. I really hope you can confirm thelatter, as the trouble I had finding valid definitions of integer division,etc. on the Internet really bothers me.Also, the links you quoted to MathWorld (mathworld.wolfram.com) are nolonger valid, which is very disappointing as Wolfram really has givenmathematics on the computer its rightful place.And thank you for your answer.Sincerely,Andre Banen
Date: 07/06/2001 at 09:05:12From: Doctor PetersonSubject: Re: Mod Function and Negative NumbersHello again!I am aware that MathWorld has been unavailable for some time; we have leftlinks to it in many places, hoping that it will come back. I was very gladthat I had quoted from it rather than just giving a link.I called "truncation toward zero" a presumption with regard to how Excel orany other program should work; the developers of any particular programminglanguage or program are free to define conversion from "real" to integer inany way they choose, as long as they define it. There is certainly nopresumption that those developers always make the mathematically "proper"choices, since they may have different goals. The fact is that both forms oftruncation make sense in different applications; both "remainder" and"modulo" are useful. Therefore it would be wrong to claim that only one isvalid. As I said, "Mod" is more mathematical, and there are many formulas for which it is necessary (causing great difficulties for C programmers); but "Rem" is useful in other cases, particularly since it isconsistent with the most natural definition of integer division. You show apreference for Rem, and I won't argue against you, as long as you recognizethat Mod has its place as well.Note that the identity you refer to is used in Ada only to define integerdivision, and that Rem is defined from that; Mod is defined separately, butis consistent with the "greatest integer" formulation of integer division,which does not satisfy that identity. There is no reason it should; it hasdifferent purposes.I think the provision of two formulations as in Ada is reasonable, and wouldnot try to prove that one is invalid. The fact is that there is no definitionof "integer division" in math; rather, we divide and apply the greatestinteger function or some variation of it to the resulting rational number,depending on our needs. Integer division is a formulation of computerlanguages, and they define it for their own use.- Doctor Peterson, The Math Forum  http://mathforum.org/dr.math/   
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.