Help with Exponential/Poisson Distribution time interval problem

exponential distributionpoisson distributionprobabilityprobability distributionsstatistics

Vehicle insurance claims arrive randomly at a certain office at an average rate of $18$ claims per 9 hour working day (from 08:00 – 17:00). Calculate the probability that this office will receive at least 1 claim in each of the 9 working hours on any given day.

My working is as follows:

$$λ = \frac{18 \ \text{claims}}{9 \ \text{hours}} = 2$$
$$\int_0^1 2 \ e^{-2x} \,dx = 0.8656647…$$

I know that the answer is $0.27$ but I can only get that by raising the integral to 9.

$$(\int_0^1 2 \ e^{-2x} \,dx)^9 = 0.2701653…$$

I have no idea how this answer works if anybody could explain to me how one would traditionally answer it (without the to the 9th power) as well as why raising it to the 9th power works that would be much appreciated.

Best Answer

First, compute the probability that no claim in the $1$ hours. Note that it follows Poisson distribution.

$$\exp(-2) \frac{2^0}{0!}=\exp(-2)$$

Now, the probability that at least one claim in an hour would be

$$1-\exp(-2)$$

Hence arrival in each the hours are independent. Hence the desired probability is

$$(1-\exp(-2))^9$$

Related Question