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?