How can i get the probability using poisson distribution of this question:
Telephone calls arrive at an exchange at an average rate of one every second. Find the probabilities of the following events, explaining briefly your assumptions.
a) No calls arriving in a given five-second period.
b) Between four and six calls arriving in the five-second period.
c) Between $90$ and $110$ calls arriving in a 100-second period. (Give answer as a decimal.)
I got a) and b) but i dont know the way to do c).
I know I can use poisson distribution on $$P(X=90) + P(X=91) + \cdots + P(X=110)$$ but I feel like there is an easier way to do this. Thanks
You can use normal approximation to the poisson distribution.
Let $X\sim \mathsf {pois}(100)$. Then the exact probability is
$$\mathsf P(90\leq X\leq110)=\sum_{x=90}^{110}\frac{e^{-100}100^x}{x!}\approx0.7065$$
In R statistical software
The normal approximation would give that $X\sim \mathsf N(100,100)$ and so using continuity correction, we get
$$\mathsf P(89.5\lt X\lt 110.5)=\Phi\left(\frac{110.5-100}{10}\right)-\Phi\left(\frac{89.5-100}{10}\right)\approx 0.7063$$
In R statistical software
so the normal approximation did very well.