Let's say the mean number of cars that passes a street per minute is 2. With a Poisson distribution, what is the probability that at most 2 cars are seen over a period of 2 minutes?
poissonCdf(a,b,c) is the cumulative probability with mean a and bounds b to c.
poissonPdf(a,b) is the individual probability of mean a and # of cars value b.
I understand one method is poissonCdf(4,0,2) with the mean doubled because it is over a period of 2 minutes. Equivalently, you could do poissonPdf(4,0)+poissonPdf(4,1)+poissonPdf(4,2).
My question is, why is it also equivalent to say (or is it) the answer equals to
poissonPdf(2,0)*poissonPdf(2,0)+
2*poissonPdf(2,0)*poissonPdf(2,1)+
poissonPdf(2,1)*poissonPdf(2,1)+
2*poissonPdf(2,2)*poissonPdf(2,0)?
Why is it accurate to say that doubling the mean to account for both minutes at once is equivalent to taking account of all the possibilities of events between those two minutes that are at most 2 car? Are those events independent?
This is really a question about a Poisson process. The assumption should be that the occurrences of a car passing the street form a Poisson process of rate $2$ per minute. This implies that in any time interval of length $L$ minutes, the number of occurrences in that interval is a Poisson random variable with parameter $2L$, and the numbers in disjoint intervals are independent. These are consistent because the sum of independent Poisson random variables of parameters $\lambda$ and $\mu$ has a Poisson distribution with parameter $\lambda + \mu$.