Hi, I was wondering if there is a smart way to find out
There is a 1/4 chance something happens.
I know we can do this with rand() % 4 and checking if it is equal to 0, but is there a way without using rand()? In c++, thanks.
|
|
Hi, I was wondering if there is a smart way to find out There is a 1/4 chance something happens. I know we can do this with rand() % 4 and checking if it is equal to 0, but is there a way without using rand()? In c++, thanks. |
||||||||
|
|
|
|
||||||||||
|
|
|
You could write your own rand. ( dont do it ). You should probably just call rand(). |
||
|
|
|
|
Umm... write your own |
||
|
|
|
|
Why not use rand()? If you are concerned about "true" randomness vs. pseudo randomness, you can try using physical sources of random bits. Much more complicated, and usually unnecessary. |
||
|
|
|
If you mean you want to avoid the inherent crappiness of many |
|||
|
|
pick a better rand() than C's if you don't like C's standard rand(). |
|||
|
|
|
|
Never ever use % for truncating a PRNG value into a range. Most PRNGs have relatively non-random lower order bits. For your case, use a division (RAND_MAX / n) like BCS suggests. |
||
|
|
|
|
You could use another type of RNG such as the Mersenne twister which has better overall entropy. I also hear good thing about Multuply with Carry RNGs. |
||
|
|
|
|
Try:
Then you'll find it gives you a perfect 25% probability of something happening (assuming you execute the if-statement a multiple of four times. </humor> |
||
|
|
|
|
I don't know much C++, so I might be wrong. But it seems rand() return a value between 0 and RAND_MAX. So maybe you could do something like this:
PS: Maybe this requires some casting. |
|||
|
|
|
4 is a special case. You can assume that your PRNG has got 50% chances of outputting an even number, which is the case - I think - for the LCG of the libc (rand). The probability of outputting an even number twice is therefore 25%. Therefore...
And now for the pedantic... What you want to do is to have an uniform random generated, but restricted to a certain range, in this case an entropy of 4. If your PRNG has, say, an entropy of 32-bit, you cannot be certain that computing the output mod 4 will work as expected. This require a bit more work. Fortunately, this work has already been implemented in the boost library.
And you would for example say "ok" everytime you get 1 (or 2, 3, 4, as you fancy). But you may not want to use the boost library. Then, simply look at the code of uniform_int and reproduce the behaviour. Talents imitate, geniuses steal. ;) |
||||||
|