PHP: Best random numbers - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T21:10:42Zhttp://stackoverflow.com/feeds/question/1041509http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1041509/php-best-random-numbers0PHP: Best random numbersmarco92w2009-06-24T23:39:50Z2009-06-25T18:03:00Z
<p>Hello!</p>
<p>I heard that PHP's rand() function doesn't give good random numbers. So I started to use mt_rand() which is said to give better results. But how good are these results? Are there any methods to improve them again?</p>
<p>My idea:</p>
<pre><code><?php
function rand_best($min, $max) {
$generated = array();
for ($i = 0; $i < 100; $i++) {
$generated[] = mt_rand($min, $max);
}
shuffle($generated);
$position = mt_rand(0, 99);
return $generated[$position];
}
?>
</code></pre>
<p>This should give you "perfect" random numbers, shouldn't it?</p>
<p>I hope you can help me. Thanks in advance!</p>
http://stackoverflow.com/questions/1041509/php-best-random-numbers/1041516#10415160Answer by Sev for PHP: Best random numbersSev2009-06-24T23:42:24Z2009-06-25T18:03:00Z<p>There is no such thing as a "perfect" random number. No matter what subjective definition of "perfect" you have. You can only achieve pseudo-random.</p>
<p>I was simply trying to point you in the right direction. You asked a question about perfect random numbers, even if perfect was in quotes. And yes, you can improve randomness. You can even implement heuristic or "natural" algorithms, such ideas like "atmospheric noise" -- but still, you're not perfect, not by any means.</p>
http://stackoverflow.com/questions/1041509/php-best-random-numbers/1041522#10415221Answer by mandroid for PHP: Best random numbersmandroid2009-06-24T23:44:14Z2009-06-24T23:49:06Z<pre><code><?php
function random_number(){
return 4; // return generated number
// guaranteed to be random
}
?>
</code></pre>
<p>All joking aside, you're getting into a philosophical question of what is "random" or what is "best". Ideally you'd want your random numbers to have few patterns in them over the course of your procedure. Generally system time is used as the seed, but I've also used the previous random number as the seed, the previous random numberth ago as the seed. The problem is, with a powerful enough computer and full knowledge of the hardware running, and generator function, you would be able to predict the entire set of numbers generated. Thus if you had a powerful enough computer (some people put God into this category) that knew all possible variables and functions of the universe you would then be able to predict every event that happened or will happen. Most random number generators are fine on their own but if you know someone who can see the patterns, more likely they are like the guy in Beautiful Mind and you should get them checked into a clinic.</p>
<p><a href="http://xkcd.com/221/" rel="nofollow">By popular demand</a> :D</p>
http://stackoverflow.com/questions/1041509/php-best-random-numbers/1041524#104152410Answer by coobird for PHP: Best random numberscoobird2009-06-24T23:44:32Z2009-06-25T00:08:10Z<p><a href="http://en.wikipedia.org/wiki/Pseudorandom%5Fnumber%5Fgenerator" rel="nofollow">Pseudorandom number generators</a> (PRNG) are very complex beast.</p>
<p>There are no real "perfect" random number generators -- in fact the best that can be done from mathematical functions are pseudorandom -- they seem random enough for most intents and purposes.</p>
<p>In fact, performing any additional actions from a number returned by a PRNG doesn't really increase its randomness, and in fact, the number can become less random.</p>
<p>So, my best advice is, don't mess around with values returned from a PRNG. Use a PRNG that is good enough for the intended use, and if it isn't, then find a PRNG that can produce better results, if necessary.</p>
<p>And frankly, it appears that the <a href="http://www.php.net/manual/en/function.mt-rand.php" rel="nofollow"><code>mt_rand</code></a> function uses the <a href="http://en.wikipedia.org/wiki/Mersenne%5Ftwister" rel="nofollow">Mersenne twister</a>, which is a pretty good PRNG as it is, so it's probably going to be good enough for most casual use.</p>
<p><strong>Edit</strong></p>
<p>There was a question in the comments why performing operations on a random number can make it less random. For example, some PRNGs can return more consistent, less random numbers in different parts of the bits -- the high-end can be more random than the low-end.</p>
<p>Therefore, in operations where the high-end is discarded, and the low end is returned, the value can become less random than the original value returned from the PRNG.</p>
<p>I can't find a good explanation at the moment, but I based that from the Java documentation for the <a href="http://java.sun.com/javase/6/docs/api/java/util/Random.html#nextInt%28int%29" rel="nofollow"><code>Random.nextInt(int)</code></a> method, which is designed to create a fairly random value in a specified range. That method takes into account the difference in randomness of the parts of the value, so it can return a better random number compared to more naive implementations such as <code>rand() % range</code>.</p>
http://stackoverflow.com/questions/1041509/php-best-random-numbers/1041525#10415257Answer by Peter for PHP: Best random numbersPeter2009-06-24T23:44:33Z2009-06-24T23:44:33Z<p>I'm not sure that what you've done "improves" the randomness. From what I can understand you generate 100 random numbers and then randomly pick one of them.</p>
<p>From what I can remember from my probability course, this probably doesn't increase the randomness, as if there is an underlying bias in the generator function (mt_rand()), then it will still be reflected somehow in the output.</p>
http://stackoverflow.com/questions/1041509/php-best-random-numbers/1041526#10415266Answer by truppo for PHP: Best random numberstruppo2009-06-24T23:44:52Z2009-06-24T23:44:52Z<p>In what way is mt_rand() "bad"?</p>
<p>For example: If it favors a certain number. Lets say mt_rand(1, 10) favours low numbers in the range, ie "1" and "2" occurs on average more than 10% each. Then your "improvement" would still suffer from the same problem.</p>
<p>Selecting a random number out of a faulty sequence will still be faulty.</p>
http://stackoverflow.com/questions/1041509/php-best-random-numbers/1041530#10415300Answer by Unkwntech for PHP: Best random numbersUnkwntech2009-06-24T23:45:37Z2009-06-24T23:45:37Z<p>It is not possible to generate true random numbers, the best you can hope for is pseudo-random which is what rand() provides, your function is no closer to random then rand(). Take a look at this <a href="http://en.wikipedia.org/wiki/Random_number_generator" rel="nofollow">http://en.wikipedia.org/wiki/Random_number_generator</a></p>
http://stackoverflow.com/questions/1041509/php-best-random-numbers/1041533#10415330Answer by Mark Rushakoff for PHP: Best random numbersMark Rushakoff2009-06-24T23:46:14Z2009-06-24T23:46:14Z<p>If you don't like PHP's built in <code>rand()</code>, you probably shouldn't use their built-in <code>shuffle()</code> either, since it seems to be built on their <code>rand()</code>.</p>
<p>I am halfway sure the "industry standard" shuffle now is the <a href="http://en.wikipedia.org/wiki/Fisher-Yates%5Fshuffle" rel="nofollow">Fisher-Yates</a> shuffle.</p>
http://stackoverflow.com/questions/1041509/php-best-random-numbers/1041535#10415350Answer by Thinker for PHP: Best random numbersThinker2009-06-24T23:46:46Z2009-06-24T23:46:46Z<p>It all depends what for you need that random number :)
For me <a href="http://kaioa.com/node/53" rel="nofollow">ShuffleBag</a> is the best one :)</p>
http://stackoverflow.com/questions/1041509/php-best-random-numbers/1041613#10416130Answer by Gerry for PHP: Best random numbersGerry2009-06-25T00:26:24Z2009-06-25T00:26:24Z<p>I'm guessing you're worried about the distribution of mt_rand(). I have tested it and it is very level and both bounds are inclusive.</p>
<p>I added my test to the comments of the documentation for mt_rand() on the php manual, but it was removed by a silly moderator due to politics that are too long winded to go into here.</p>