If I generate N random numbers between 0 and 1 what is the Arithmetic mean of all the generated numbers as N→ ∞. You can assume that the generated random numbers are uniformly distributed.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Due to the random numbers being perfectly normally distributed and as N tends to infinity the numbers generated can be considered as 0, 1/N,2/N,3/N,4/N......N-2/N,1 The arithmetic mean of these N numbers would be ((N-2)*(N-1)/2N + 1)/N. Under limits as N → ∞ the arithmetic mean can be approximated to 0.5.