What is the entropy of a call to java.lang.Math.random()?
Math.random() produces a double value (IEEE 754 binary64) in the range [0.0, 1.0). How many digits (or bits) of entropy does the return value of random() contain?
If it simplifies things, I’m okay with assuming the distribut… Continue reading What is the entropy of a call to java.lang.Math.random()?