Why if I use random number generator and range 0 – 9 I don’t get the same uniform distribution as combined it with the floor function?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Math.floor(Math.random() * 10)gives quite uniform distribution, whileMath.round(Math.random() * 10)doesn’t.Math.floor() returns 0 for any value in the range [0, 1) (1 exclusive), 1 for any value in the range [1, 2), etc.
So if we have equal chances of getting a number in one of these ranges, we will get an equal distribution of 0’s and 1’s.
Math.round(), however, returns 0 for values under 0.5, 1 for values under 1.5, etc.
So we actually have half the chances of getting a 0, as only values from 0 to 0.5 will round to 0.