Answer:
"=RAND()*(40) + 20"
Step-by-step explanation:
When we say that a random variable X follows an uniform distribution [tex] X \sim Unif(a,b)[/tex] where a is the lower limit and the upper limit we are saying that each value on the interval (a,b) have the same probability of occur, and the density function is given by:
[tex] f(x) =\frac{1}{b-a} , a \leq x \leq b[/tex]
And [tex] f(x) = 0[/tex] for any other case.
For this special case we know that the random variable T="Waiting times at a toll booth" follows this distibution:
[tex] T \sim Unif (a=20, b =60)[/tex]
And we can use the excel to create random values on this range. So then the code to do this is given by:
"=RAND()*(b-a) + a"
"=RAND()*(60-20) + 20"
"=RAND()*(40) + 20"