How random is JavaScript's Math.random? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T21:38:49Z http://stackoverflow.com/feeds/question/1062902 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1062902/how-random-is-javascripts-math-random 5 How random is JavaScript's Math.random? Andrew Hedges 2009-06-30T10:22:07Z 2009-06-30T14:09:57Z <p>For 6 years I've had a <a href="http://andrew.hedges.name/experiments/random/" rel="nofollow">random number generator</a> page on my website. For a long time, it was the first or second result on Google for "random number generator" and has been used to decide dozens, if not hundreds of contests and drawings on discussion forums and blogs (I know because I see the referrers in my web logs and usually go take a look).</p> <p>Today, someone emailed me to tell me <strong>it may not be as random as I thought.</strong> She tried generating very large random numbers (e.g., between 1 and 10000000000000000000) and found that they were almost always the same number of digits. Indeed, I wrapped the function in a loop so I could generate thousands of numbers and sure enough, for very large numbers, <strong>the variation was only about 2 orders of magnitude.</strong></p> <p>Why?</p> <p>Here is the looping version, so you can try it out for yourself:</p> <p><a href="http://andrew.hedges.name/experiments/random/randomness.html" rel="nofollow">http://andrew.hedges.name/experiments/random/randomness.html</a></p> <p>It includes both a straightforward implementation taken from the <a href="https://developer.mozilla.org/en/Core%5FJavaScript%5F1.5%5FReference/Global%5FObjects/Math/random" rel="nofollow">Mozilla Developer Center</a> and some code from 1997 that I swiped off a web page that no longer exists (Paul Houle's "Central Randomizer 1.3"). View source to see how each method works.</p> <p>I've read <a href="http://stackoverflow.com/questions/424292">here</a> and <a href="http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/VERSIONS/JAVASCRIPT/java-script.html" rel="nofollow">elsewhere</a> about <strong>Mersenne Twister.</strong> What I'm interested in is why there wouldn't be greater variation in the results from JavaScript's built-in <strong>Math.random</strong> function. Thanks!</p> http://stackoverflow.com/questions/1062902/how-random-is-javascripts-math-random/1062938#1062938 3 Answer by Arafangion for How random is JavaScript's Math.random? Arafangion 2009-06-30T10:28:33Z 2009-06-30T10:33:51Z <p>Looks perfectly random to me! (Hint: It's browser dependent.)</p> <p>Personally, I think my implementation would be better, although I stole it off from XKCD, who should ALWAYS be acknowledged:</p> <pre><code>random = 4; // Chosen by a fair dice throw. Guaranteed to be random. </code></pre> http://stackoverflow.com/questions/1062902/how-random-is-javascripts-math-random/1062940#1062940 10 Answer by jwoolard for How random is JavaScript's Math.random? jwoolard 2009-06-30T10:29:08Z 2009-06-30T10:29:08Z <p>Your results are actually expected. If the random numbers are uniformly distributed in a range 1 to 10^n, then you would expect about 9/10 of the numbers to have n digits, and a further 9/100 to have n-1 digits.</p> http://stackoverflow.com/questions/1062902/how-random-is-javascripts-math-random/1062945#1062945 1 Answer by Greg for How random is JavaScript's Math.random? Greg 2009-06-30T10:29:49Z 2009-06-30T10:29:49Z <p>If you use a number like 10000000000000000000 you're going beyond the accuracy of the datatype Javascript is using. Note that all the numbers generated end in "00".</p> http://stackoverflow.com/questions/1062902/how-random-is-javascripts-math-random/1062948#1062948 13 Answer by David Dorward for How random is JavaScript's Math.random? David Dorward 2009-06-30T10:30:21Z 2009-06-30T12:38:15Z <p>Given numbers between 1 and 100. </p> <ul> <li>9 have 1 digit (1-9)</li> <li>90 have 2 digits (10-99)</li> <li>1 has 3 digits (100)</li> </ul> <p>Given numbers between 1 and 1000.</p> <ul> <li>9 have 1 digit</li> <li>90 have 2 digits</li> <li>900 have 3 digits</li> <li>1 has 4 digits</li> </ul> <p>and so on.</p> <p>So if you select some at random, then that vast majority of selected numbers will have the same number of digits, because the vast majority of possible values have the same number of digits.</p> http://stackoverflow.com/questions/1062902/how-random-is-javascripts-math-random/1062951#1062951 1 Answer by Johannes Rössel for How random is JavaScript's Math.random? Johannes Rössel 2009-06-30T10:31:32Z 2009-06-30T10:31:32Z <p>Well, if you are generating numbers up to, say, 1e6, you will hopefully get all numbers with approximately equal probability. That also means that you only have a one in ten chance of getting a number with one digit less. A one in a hundred chance of getting two digits less, etc. I doubt you will see much difference when using another RNG, because you have a uniform distribution across the numbers, not their logarithm.</p> http://stackoverflow.com/questions/1062902/how-random-is-javascripts-math-random/1063013#1063013 3 Answer by gargantaun for How random is JavaScript's Math.random? gargantaun 2009-06-30T10:44:07Z 2009-06-30T10:44:07Z <p><img src="http://www.virtualp.us/Dilbert-Oct%5F25%5F001.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1062902/how-random-is-javascripts-math-random/1063871#1063871 3 Answer by Christian for How random is JavaScript's Math.random? Christian 2009-06-30T14:04:04Z 2009-06-30T14:09:57Z <p>There different types of randomness. Math.random gives you an uniform distribution of numbers. If you want different orders of magnitude, I would suggest using an exponential function to create what called a power law distribution:</p> <blockquote> <p>Math.round(Math.exp(Math.random()*Math.log(maxmimum-minimum+1)))+minimum</p> </blockquote> <p>should give you rougly the same number of 1-digit numbers as 2-digit numbers and as 3-digit numbers.</p> <p>There are also other distributions for random numbers like the normal distribution (also called Gaussian distribution).</p>