1

Let $N_t$ be number of customers that arrived at shop until moment $t$. Let's say that shop opens at 9:00. $N_t$, $t\geq0$ is Poisson process with $\lambda=1$ per hour. What is the probability that, there will be at least 2 arrivals between 10:00 and 10:30?

We have time interval (10:00,10:30] (can it be interpreted as $(0,30]=(0,0.5]$ ?). Thus needed probability is:

$$ P(N(1/2)-N(0)\geq 2) = P(N(1/2)\geq 2) $$ $$ = 1-\exp(-0.5\cdot0)\frac{(0.5\cdot0)^0}{0!}-\exp(-0.5\cdot1)\frac{(0.5\cdot1)^1}{1!}=0.09 $$

Am I correct?

1 Answers1

0

The number of arrivals in a specified $1/2$ hour interval has Poisson distribution with parameter $0.5$. The probability that the number of arrivals is $\ge 2$ is, by reasoning similar to yours, equal to $$1-\left(e^{-0.5}\frac{(0.5)^0}{0!}+e^{-0.5}\frac{(0.5)^1}{1!}\right).$$ For some reason, you incorrectly had $(-0.5)^0$, which by accident is OK, and $(-0.5)^1$, which is not.

You also had an error in the part dealing with the probability that the number is $0$. You had $e^{(-0.5)(0)}$ as part of that expression, and it should be simply $e^{-0.5}$.

Remark: The probability that the number of arrivals in a $t$ hour interval is exactly $k$, in the general case with parameter $\lambda$, is $$e^{-\lambda t}\frac{(\lambda t)^k}{k!}.$$ In our case, $\lambda=1$ and $t=0.5$. You appear to be working with a different (and incorrect) formula.

André Nicolas
  • 507,029