The Poisson probability distribution models the number of times an event occurs randomly and independently within a fixed interval of time or space. It is a discrete distribution, meaning the random variable \( X \) can only take integer values.
A Poisson process must satisfy the following conditions:
If an event occurs an average of \( \lambda \) times over a period \( T \), the probability of it occurring exactly \( x \) times in that period is:
\[ P(X = x) = \frac{e^{-\lambda} \lambda^x}{x!} \]where:
| Distribution | Parameters | Variable Range |
|---|---|---|
| Binomial | Number of trials \( n \), probability of success \( p \) | \( x = 0, 1, 2, \ldots, n \) |
| Poisson | Average rate \( \lambda \) | \( x = 0, 1, 2, \ldots, \infty \) |
A computer crashes on average once every 4 months. Find the probability that over 4 months it will:
Here, \( \lambda = 1 \) per 4 months.
A customer help center receives an average of 3.5 calls per hour. Find the probability that in a given hour it will:
Here, \( \lambda = 3.5 \) per hour.
At most 4 calls means \( X = 0, 1, 2, 3, \text{or } 4 \).
\[ \begin{aligned} P(X \le 4) &= P(X=0) + P(X=1) + P(X=2) + P(X=3) + P(X=4) \\ &= \frac{e^{-3.5} \cdot 3.5^0}{0!} + \frac{e^{-3.5} \cdot 3.5^1}{1!} + \frac{e^{-3.5} \cdot 3.5^2}{2!} + \frac{e^{-3.5} \cdot 3.5^3}{3!} + \frac{e^{-3.5} \cdot 3.5^4}{4!} \\ &\approx 0.03020 + 0.10569 + 0.18496 + 0.21579 + 0.18881 = 0.72545 \end{aligned} \]At least 5 calls: \( P(X \ge 5) = 1 - P(X \le 4) = 1 - 0.72545 = 0.27455 \).
A person receives on average 3 emails per hour. Find over a 2-hour period the probability that they will:
The average over 2 hours is \( \lambda = 3 \times 2 = 6 \).
More than 2 emails: \( P(X > 2) = 1 - P(X \le 2) \).
\[ \begin{aligned} P(X \le 2) &= P(X=0) + P(X=1) + P(X=2) \\ &= \frac{e^{-6} \cdot 6^0}{0!} + \frac{e^{-6} \cdot 6^1}{1!} + \frac{e^{-6} \cdot 6^2}{2!} \\ &\approx 0.00248 + 0.01487 + 0.04462 = 0.06197 \\ P(X > 2) &= 1 - 0.06197 = 0.93803 \end{aligned} \]The goals scored by a football player in 35 matches are:
| Goals (\( x \)) | 0 | 1 | 2 | 3 | >3 |
|---|---|---|---|---|---|
| Frequency (\( f \)) | 12 | 15 | 6 | 2 | 0 |
Assuming goals follow a Poisson distribution, find the probability that in a given match the player:
First, compute the average \( \lambda \):
\[ \lambda = \frac{\sum f \cdot x}{\sum f} = \frac{12(0) + 15(1) + 6(2) + 2(3)}{12 + 15 + 6 + 2} = \frac{33}{35} \approx 0.9429 \]Defective items returned daily over 100 days:
| Defective Items (\( x \)) | 0 | 1 | 2 | 3 | 4 | >4 |
|---|---|---|---|---|---|---|
| Frequency (\( f \)) | 50 | 20 | 15 | 10 | 5 | 0 |
Assuming a Poisson distribution, find the probability that on a given day:
Compute \( \lambda \):
\[ \lambda = \frac{50(0) + 20(1) + 15(2) + 10(3) + 5(4)}{50 + 20 + 15 + 10 + 5} = \frac{100}{100} = 1 \]Three or more: \( P(X \ge 3) = 1 - P(X \le 2) \).
\[ \begin{aligned} P(X \le 2) &= P(X=0) + P(X=1) + P(X=2) \\ &= e^{-1} + e^{-1} + \frac{e^{-1}}{2} = e^{-1} \left(1 + 1 + \frac{1}{2}\right) \\ &= 2.5 e^{-1} \approx 2.5 \times 0.36787 = 0.91968 \\ P(X \ge 3) &= 1 - 0.91968 = 0.08032 \end{aligned} \]