Adding exponential waiting time

123 Views Asked by At

I'm having some difficulty understanding how to solve this problem. I rewrote it a bit for better understanding as the real problem has over 50 people and also to practice myself after I know how it should be done.

There are 10 people waiting in the dentist office. The average waiting time is 5 minutes. What is the chance that the total waiting time is more than 60 minutes? It is exponentially distributed.

This is how far I got: I understand that it is not the chance of everyone waiting 6 minutes or more, someone waiting 40 minutes while the rest is waiting just 5 will have the same result. So I can't multiply all the chances of someone waiting more than 6 minutes. On the internet I found a formula that says to substract the time someone waited from the 60 minutes, but this leaves me with over 50 variables in my problem. This can hardly be the solution? Can someone give me a hint?

1

There are 1 best solutions below

2
On BEST ANSWER

Some Hints:

The original number of people ($50$) points rather in the direction of the application of the central limit theorem:

  • $n=50$, $\mu = 5$ (minutes), $T = 60$
  • $X_i \sim Exp(\lambda)$ with $\lambda = \frac{1}{\mu}$ for $i = 1, \ldots , 50 \Rightarrow \sigma = \mu = 5$ (This is a fact for exponential distributions.)
  • $S_n = \sum_{i=1}^nX_i$
  • You want to know $\color{blue}{P(S_n > T)} = 1- \color{green}{P(S_n \leq T)}$.

Now, you may use the central limit theorem:

$$\frac{S_n - n\mu}{\sigma \sqrt{n}} \stackrel{\approx}{\sim}N(0,1) \Rightarrow \color{green}{P(S_n \leq T)} =P(\frac{S_n - n\mu}{\sigma \sqrt{n}} \leq \frac{T - n\mu}{\sigma \sqrt{n}}) \approx \color{green}{\Phi(\frac{T - n\mu}{\sigma \sqrt{n}})} $$