A Note On Excel Random Function
A Note On Excel Random Function
In fact, these two Excel random functions generate random numbers from the
rectangular or uniform probability distribution where there is equal chance for
all values that a random variable can take on. In theory, tossing an even six-
faced die for a very large number of times gives an outcome with six possible
values (1 to 6) and each of them is equally likely to occur.
It has to be highlighted here that prior to Excel 2003, the random generation
algorithm had a rather relatively small period, being less than a million non-
recurring random number sequence. It had failed some standard tests of
randomness. Since 2007 version, Excel has improved the function which is now
widely accepted and fine for many purposes. So, if you are still working on an
old Excel version, care must be taken not to use the RAND function with large
simulation models.
3. We can generate a series of random data by simply copying the first cell
with “=RAND( )” function and past it on other cells.
4. To create integer random numbers, we use “INT(RAND( )*N)” to produce a
series of integers from zero to a number less than N.
7. To generate random numbers between Upper (A) and lower (B) bounds,
we use “=RAND( )*(A-B)+B”. Take note that this random formula does not
return a number equal to the largest number (A) of the specified range.
A random number table shown below was generated by using the MS Excel®
function “=INT(RAND()*10000).