Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have seen this question asked a lot but never seen a true concrete answer to it. So I am going to post one here which will hopefully help people understand why exactly there is "modulo bias" when using a random number generator, like rand() in C++.

share|improve this question
8  
Because there is! – Kirk Broadhurst Jun 12 '12 at 22:32

4 Answers

up vote 140 down vote accepted

So rand() is a pseudo-random number generator which chooses a natural number between 0 and RAND_MAX, which is a constant defined in cstdlib (see this article for a general overview on rand()).

Now what happens if you want to generate a random number between say 0 and 2. For the sake of explanation, lets say RAND_MAX was 10 and I decide that the best way to generate a random number between 0 and 2 is to do rand()%3. Assuming rand() does generate each number between 0 and 10 with equal probability, (this is arguable but for this post I will assume it does), why would rand()%3 not produce the numbers between 0 and 2 with equal probability? When rand() returns 0, 3, 6, or 9, rand()%3 == 0. When rand() returns 1, 4, 7, or 10, rand()%3 == 1. When rand() returns 2, 5, or 8, rand()%3 == 2. Now if we analyze this statistically, we very quickly see that the probability of getting a 0 is 4/11, 1 is 4/11 but 2 is 3/11. This does not generate the numbers between 0 and 2 with equal probability. Of course for small ranges this might not be the biggest issue but for a larger range this could skew the distribution, biasing the smaller numbers.

So when does rand()%n return a range of numbers from 0 to n-1 with equal probability? When RAND_MAX%n == n - 1. In this case, along with our earlier assumption rand() does return a number between 0 and RAND_MAX with equal probability, the modulo classes of n would also be equally distributed.

So how do we solve this problem? One way is to keep generating random numbers till you get a number in your desired range:

int x; 
do
{
    x = rand();
} while (x >= n);

Hope that helps everyone!

Works cited and further reading:

share|improve this answer
4  
+1 for answering a questions perfectly that I didn't even know was an issue! – Bolster Jun 11 '12 at 17:46
20  
Another way is to use a better random number facility, like the one in <random> or Boost.Random. – R. Martinho Fernandes Jun 11 '12 at 17:46
5  
Additionally, poor random number generators (such as rand) have much less random low order bits than high order ones. So x % n should really be replaced by x * n / RAND_MAX (or non-overflowing equivalent). In any case, you have the same kind of bias, due to the exact same pigeonhole argument you gave and the cure is more or less the same. – Alexandre C. Jun 11 '12 at 19:40
38  
"One way is to keep generating random numbers till you get a number in your desired range" - We don't need it to be in our desired range, we just need it to be below the largest number that is == 0 (mod n). So we can check while(x >= RAND_MAX - n && x >= n) then take x%n. That way the expected number of rand() calls is 2 in the worst case (rather than millions, as in your code) – BlueRaja - Danny Pflughoeft Jun 12 '12 at 3:17
2  
I was just providing an alternative not the best alternative. I know there are much better alternatives out there so you guys are all correct. – user1413793 Jun 14 '12 at 1:25
show 8 more comments

Keep selecting a random is a good way to remove the bias.
We could make the code faster if we use an upper limit where we can evenly divide the range by n.

For example,

int x;
int MAX_UPPER_LIMIT = RAND_MAX+1 - ((RAND_MAX+1) % n);
while ((x = rand()) >= MAX_UPPER_LIMIT) {}
x = x % n;

The above loop should be very fast, say 2 iterations on average,
though RAND_MAX+1 could be a problem if we play with signed 16-bit integers.

share|improve this answer
1  
Yuck :-P converting to a double, then multiplying by MAX_UPPER_LIMIT/RAND_MAX is much cleaner and performs better. – boycy Jun 13 '12 at 7:59
4  
@boycy: you've missed the point. If the number of values that rand() can return is not a multiple of n, then whatever you do, you will inevitably get 'modulo bias', unless you discard some of those values. user1413793 explains that nicely (although the solution proposed in that answer is truly yucky). – TonyK Jun 17 '12 at 11:31
@TonyK my apologies, I did miss the point. Didn't think hard enough, and thought the bias would only apply with methods using an explicit modulus operation. Thanks for fixing me :-) – boycy Jun 18 '12 at 12:26
Operator precedence makes RAND_MAX+1 - (RAND_MAX+1) % n work correctly, but I still think it should be written as RAND_MAX+1 - ((RAND_MAX+1) % n) for clarity. – opert Oct 13 '12 at 5:07
@opert, ok done :) – Nick Dandoulakis Oct 13 '12 at 10:54
show 1 more comment

There are two usual complains with the use of modulo.

  • one is valid for all generators. It is easier to see in an limit case. If your generator has a RAND_MAX which is 2 (that isn't compliant with the C standard) and you want only 0 or 1 as value, using modulo will generate 0 twice as often (when the generator generates 0 and 2) as it will generate 1 (when the generator generates 1). Note that this is true as soon as you don't drop values, whatever the mapping you are using from the generator values to the wanted one, one will occurs twice as often as the other.

  • some kind of generator have their less significant bits less random than the other, at least for some of their parameters, but sadly those parameter have other interesting characteristic (such has being able to have RAND_MAX one less than a power of 2). The problem is well known and for a long time library implementation probably avoid the problem (for instance the sample rand() implementation in the C standard use this kind of generator, but drop the 16 less significant bits), but some like to complain about that and you may have bad luck

Using something like

int alea(int n){ 
 assert (0 < n && n <= RAND_MAX); 
 int partSize = 
      n == RAND_MAX ? 1 : 1 + (RAND_MAX-n)/(n+1); 
 int maxUsefull = partSize * n + (partSize-1); 
 int draw; 
 do { 
   draw = rand(); 
 } while (draw > maxUsefull); 
 return draw/partSize; 
}

to generate a random number between 0 and n will avoid both problems (and it avoids overflow with RAND_MAX == INT_MAX)

BTW, C++11 introduced standard ways to the the reduction and other generator than rand().

share|improve this answer
n == RAND_MAX ? 1 : (RAND_MAX-1)/(n+1): I understand the idea here is to first divide RAND_MAX into equal page size N, then return the deviation within N, but I cannot map the code to this precisely. – zinking Jun 15 '12 at 3:18
1  
The naive version should be (RAND_MAX+1)/(n+1) as there is RAND_MAX+1 values to divide in n+1 buckets. If order to avoid overflow when computing RAND_MAX+1, it can be transformed in 1+(RAND_MAX-n)/(n+1). In order to avoid overflow when computing n+1, the case n==RAND_MAX is first checked. – AProgrammer Jun 15 '12 at 6:42
+plus, doing divide is seeming costing more even compared with regenerate numbers. – zinking Jun 15 '12 at 8:56
1  
Taking the modulo and dividing have the same cost. Some ISA even provide just one instruction which provide always both. The cost of regenerating numbers will depend on n and RAND_MAX. If n is small in respect to RAND_MAX, it may cost a lot. And obviously you may decide the the biases isn't important for your application; I just give a way to avoid them. – AProgrammer Jun 15 '12 at 9:10

As the accepted answer indicates, "modulo bias" has its roots in the low value of RAND_MAX. He uses an extremely small value of RAND_MAX (10) to show that if RAND_MAX were 10, then you tried to generate a number between 0 and 2 using %, the following outcomes would result:

rand() % 3   // if RAND_MAX were only 10, gives
output of rand()   |   rand()%3
0                  |   0
1                  |   1
2                  |   2
3                  |   0
4                  |   1
5                  |   2
6                  |   0
7                  |   1
8                  |   2
9                  |   0

So there are 4 outputs of 0's (4/10 chance) and only 3 outputs of 1 and 2 (3/10 chances each).

So it's biased. The lower numbers have a better chance of coming out.

But that only shows up so obviously when RAND_MAX is small. Or more specifically, when the number your are modding by is large compared to RAND_MAX.

A much better solution than looping (which is insanely inefficient and shouldn't even be suggested) is to use a PRNG with a much larger output range. The Mersenne Twister algorithm has a maximum output of 4,294,967,295. As such doing MersenneTwister::genrand_int32() % 10 for all intents and purposes, will be equally distributed and the modulo bias effect will all but disappear.

share|improve this answer
Yours is more efficient and it probably is true that if RAND_MAX is significantly bigger then the number you are modding by, however yours will still be biased. Granted these are all pseudo random number generators anyways and that in and of itself is a different topic but if you assume a fully random number generator, your way still biases the lower values. – user1413793 Apr 16 at 3:09
Because the highest value is odd, MT::genrand_int32()%2 picks 0 (50 + 2.3e-8)% of the time and 1 (50 - 2.3e-8)% of the time. Unless you're building a casino's RGN (which you probably would use a much larger range RGN for), any user is not going to notice an extra 2.3e-8% of the time. You're talking about numbers too small to matter here. – bobobobo Apr 16 at 4:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.