What Distribution is this?
basically it's what you get if you do rand()*rand()
although rand() is equally distributed,
rand()*rand() is not.
mean of (rand()*rand()) = 1/4
mean of (rand()**2) = 1/3 # just for comparisson
basically it's what you get if you do rand()*rand()
although rand() is equally distributed,
rand()*rand() is not.
mean of (rand()*rand()) = 1/4
mean of (rand()**2) = 1/3 # just for comparisson
