Hey, is there way to choose evenly distributed random numbers? I used this function
Math.floor(Math.random()*2)
which returns either 1 or 0. However, I dont think it has exact 50% chance to produce either one. Better thoughts? Thank you
|
Hey, is there way to choose evenly distributed random numbers? I used this function
which returns either 1 or 0. However, I dont think it has exact 50% chance to produce either one. Better thoughts? Thank you |
||||
|
If you do not believe, check:
This code gives me 0.49972 - very close to 50%. |
|||
|
|
|
It should give you even distribution.
you can try it by copy-pasting to the addressbar:
|
|||||
|
|
Just try it:
You're looking for answers in this case which are good to within the square root of a million. i.e. you want the results coming out to be 500,000 +- 1000 if you're getting truly random numbers. |
|||
|
|
|
It's close enough to 50% to the point where, if you're worried about a discrepancy (if indeed there is one), you wouldn't be using pseudo random numbers in the first place :-) Running a loop with 10 million iterations gives me a ratio of 5,000,931 to 4,999,069 which is an error of only one in ten thousand (0.00931 percent). |
||||
|
|
|
It generates 0 or 1 with equal chances. But why didn't you use:
? Do you want to be able to change to generate 0, 1, 2, ..., N ? If so keep your implementation. |
|||
|
|
|
The chance for either result is exactly 50%. What makes you think that it isn't? |
|||
|
|
Math.random() * 2returns a number between 0 and say 1.99; flooring it will give you 0 for values 0-0.99 and 1 for values 1-1.99 so its pretty even. But I am afraid somone's got a better idea. – Salman A Apr 19 '11 at 11:48