Can you please tell me how much is (-2) % 5 ? According to my pyhton interpreter is 3, but do you have a wise explanation for this ?
I've read that in some languages the result can be machine-dependent, but I'm not sure though.
Thanks for your help.
|
|
|
|
|
|
|
By the way: most programming languages would disagree with Python and give the result |
||
|
|
|
|
The result of the modulus operation on negatives seems to be programming language dependent and here is a listing http://en.wikipedia.org/wiki/Modulo_operation |
||
|
|
|
|
Your python interpreter is correct. One (Stupid) way of calculating a modulus is to subtract or add the modulus until the resulting value is between 0 and modulus -1. e.g 13 mod 5 = (13 - 5) mod 5 = (13 - 10) mod 5 = 3 or in your case -2 mod 5 = (-2 + 5) mod 5 = 3 |
||
|
|
|
|
Well, 0 % 5 should be 0, right? -1 % 5 should be 4 because that's the next allowed digit going in the reverse direction (i.e., it can't be 5, since that's out of range). And following along by that logic, -2 must be 3. The easiest way to think of how it will work is that you keep adding or subtracting 5 until the number falls between 0 (inclusive) and 5 (exclusive). I'm not sure about machine dependence - I've never seen an implementation that was, but I can't say it's never done. |
||
|
|
|
|
As explained in other answers, there are many choices for a modulo operation with negative values. In general different languages (and different machine architectures) will give a different result. According to the Python reference manual,
is the choice taken by Python. Basically modulo is defined so that this always holds:
so it makes sense that (-2)%5 = -2 - (-2/5)*5 = 3 |
||
|
|
|
|
Well, -2 divided by 5 would be 0 with a remainder of 3. I don't believe that should be very platform dependent, but I've seen stranger things. |
||
|
|
|
|
It is indeed 3. In modular arithmetic, a modulus is simply the remainder of a division, and the remainder of -2 divided by 5 is 3. |
||
|
|
|
|
Thanks for your help ! Now I got the thing a bit clearer. I've never thought it as substracting or adding the modulus, but thinking again about it, it is really what a division does, it is a compact way of expressing many additions or substractions. |
||
|
|
|
|
The result depends on the language. Python returns the sign of the divisor, where for example c# returns the sign of the dividend (ie. -2 % 5 returns -2 in c#). |
||
|
|
|
|
One explanation might be that negative numbers are stored using 2's complement. When the python interpreter tries to do the modulo operation it converts to unsigned value. As such instead of doing (-2) % 5 it actually computes 0xFFFF_FFFF_FFFF_FFFD % 5 which is 3. |
||
|
|
|
|
Be careful not to rely on this mod behavior in C/C++ on all OSes and architectures. If I recall correctly, I tried to rely on C/C++ code like
to keep x2 in the range from 0 to n-1 but negative numbers crept in when I would compile on one OS, but things would work fine on another OS. This made for an evil time debugging since it only happened half the time! |
||
|
|