[Math] Simple Conditional Probability in a Poisson Process

poisson processprobability

Buses arrive at a station in a Poisson process at a rate of 3 per hour.
Suppose 4 buses arrive in the first hour, what is the probability that a total of 6 buses arrive in the first two hours?
Suppose 6 buses arrive in the first two hours, what is the probability that a 4 buses arrived in the first hour?

Just looking for a check on my reasoning here.

For the first question, if we are given that $X_1 = 4$ then the only way that $X_1 + X_2 = 6$ is to have $X_2 = 2$. Thus, the probability is simply $P(X_2 = 2)$.

For the second question, there are 7 ways to have non-negative $X_1 + X_2 = 6$. Only one involves $X_1 = 4$. So here $P = 1/7$.

Best Answer

The first problem is correctly done, but the answer should be more explicit.

For the second question, let $A$ be the event $4$ buses arrive in the first hour, and $B$ the event there are $6$ buses in the $2$ hours. We want $\Pr(A\mid B)$, which is $\Pr(A\cap B)/\Pr(B)$.

Compute. We have $\Pr(B)=e^{-6}\frac{6^6}{6!}$.

The probability of $A\cap B$ is the probability of $4$ buses in the first hour and $2$ in the second. This is $e^{-3}\frac{3^4}{4!}e^{-3}\frac{3^2}{2!}$.

Divide. Our conditional probability is $\frac{6!}{4!2!}\frac{3^2 3^4}{6^6}$, which is more nicely expressed as $\binom{6}{4}\cdot \frac{1}{2^6}$.

A similar calculation shows that in general, the conditional distribution of the number of buses in the first $a$ hours, given that there were $n$ buses in the first $a+b$ hours, is binomial, parameters $p=\frac{a}{a+b}$, and $n$.

Related Question