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++.
|
|
So Now what happens if you want to generate a random number between say 0 and 2. For the sake of explanation, lets say So when does So how do we solve this problem? One way is to keep generating random numbers till you get a number in your desired range:
Hope that helps everyone! Works cited and further reading: |
|||||||||||||||||||||
|
|
Keep selecting a random is a good way to remove the bias. For example,
The above loop should be very fast, say 2 iterations on average, |
|||||||||||||||
|
|
There are two usual complains with the use of modulo.
Using something like
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(). |
|||||||||||||
|
|
As the accepted answer indicates, "modulo bias" has its roots in the low value of
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 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 |
|||||
|