Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X
I'd like to make a code which can make the empirical graph of dice when the dice is only "6"
However, as you can see, the probability is not the same as theory.
Is there anybody telling me the mistake that I did? The answer has to be '0.166666666...'
plz, help me
Solved! Go to Solution.
Is there anybody telling me the mistake that I did?
rnd(5) creates a float random number in the range 0 .. 5
You ask for the number being > 4 and count the range from 4 to 5 which is 1/5 of the range 0 to 5. Consequently you get a result near 0.2.
Use rnd(6) and condition ">5" and you get the result you'd like to see.
Something like this perhaps:
There are other ways as well of course!
Alan
Thank U so much.
I learned another way thanks to U
Is there anybody telling me the mistake that I did?
rnd(5) creates a float random number in the range 0 .. 5
You ask for the number being > 4 and count the range from 4 to 5 which is 1/5 of the range 0 to 5. Consequently you get a result near 0.2.
Use rnd(6) and condition ">5" and you get the result you'd like to see.
Thank U so much.
I thought that rnd Function is similar to randi in Matlab.
It is not an integer in Mathcad