The Poisson distribution is named after Simeon Denis Poisson, a French mathematician, engineer, and physicist who made many scientific advances. It is used to model the number of occurrences of an event per space or time, for example
The probability distribution for \(X\), a Poisson random variable with mean \(\lambda\) is \[p(x) = P(X=x) = \frac{e^{-\lambda}\lambda^x}{x!} \text{ for } x = 0,1,\cdots\] where \(e \approx 2.71828\)
In R, \(p(x) = \text{ dpois}(x,\lambda)\)
The cumulative distribution function for \(X\), a Poisson random variable with mean \(\lambda\) is \[F(x)=P(X \le x) = \sum_{k=0}^{x} \frac{e^{-\lambda}\lambda^k}{k!}\] In R, \(F(x) = \text{ ppois}(x,\lambda)\)
Example: Customers arrive at a busy checkout counter at an average rate of three per minute. Find the probability that in any given minute there will be
\(X\) = number of customers per minute with \(\lambda=3\)
If \(X\) has a Poisson distribution with mean \(\lambda\) then
\[p(x) = P(X=x) = \frac{e^{-\lambda}\lambda^x}{x!} = \text{ dpois}(x,\lambda)\] \[F(x)=P(X \le x) = \sum_{k=0}^{x} \frac{e^{-\lambda}\lambda^k}{k!}=\text{ ppois}(x,\lambda)\]