Skip to main content

Section 5.4 Poisson Distribution

Question 5.4.1.

We might want to understand how busy traffic is near campus. Let’s say that we stand at the intersection of Clyde Way and Austin Bluffs Parkway and count how many cars drive by on Austin Bluffs from noon-1pm on a particular day. Is this a binomial experiment?

Definition 5.4.2.

A Poisson process is a probability experiment possessing the following characteristics:
  1. It counts the number of occurrences of an event over a period of time, area, distance, or some other measurement.
  2. The mean is the same for each equal interval of measurement.
  3. The number of occurences in distinct intervals is indpendent.
  4. The intervals defined in the Poisson process cannot overlap.

Exercise 5.4.3.

    A bank expects to receive six bad checks per day, on average. What is the probability of the bank getting fewer than five bad checks on any given day? Of interest is the number of checks the bank receives in one day, so the time interval of interest is one day. Let \(X=\) the number of bad checks the bank receives in one day. If the bank expects to receive six bad checks per day then the average is six checks per day. Which of the following is a mathematical statement for the probability question.
  • \(P(X\lt 5)\)
  • \(P(X\gt 5)\)
  • \(P(X= 5)\)
  • \(P(X\gt 6)\)
  • \(P(X\lt 6)\)
  • \(P(X= 6)\)
The outcome for the random variable for a Poisson distribution is the actual number of occurrences of an event over a period of time, area, distance, or any other type of measurement.
The probability of exactly \(X\) occurrences over a given interval is:
\begin{equation*} P(X)=\frac{\lambda^Xe^{-\lambda}}{X!}\text{, where the mean number of occurrences over the interval.} \end{equation*}
The mean and standard deviation of a Poisson distribution are even simpler than what we saw for a binomial distribution:
\begin{equation*} \boxed{ \mu=\lambda }\text{ and }\boxed{\sigma=\sqrt{\lambda}} \end{equation*}
Once again, we will usually use Excel or tables to compute probabilities associated with Poisson distributions.
The appropriate table from your book is Table 2 (in Appendix A), and here is a link to a table that you can use as well: https://ux1.eiu.edu/~aalvarado2/levine-smume6_topic_POIS.pdf. (Make sure to pay attention to if the table you’re using is giving you a cumulative probability or not.)
In Excel, we’ll use the formula:
\begin{equation*} \boxed{POISSON.DIST(x,\lambda,\text{cumulative})} \end{equation*}
where cumulative=TRUE (\(x\) or fewer occurrences) or FALSE (exactly \(x\) occurrences).

Exercise 5.4.4.

(Donnelly 5.23)
Consider a Poisson probability distribution with \(\lambda=5.6\text{.}\) Calculate the probability of exactly 5 occurrences. (Round your answer to 4 decimal places.)
\(P(X=5)=\)

Exercise 5.4.5.

(Donnelly 5.23)
Consider a Poisson probability distribution with \(\lambda=5.6\text{.}\) Calculate the probability of more than 6 occurrences. (Round your answer to 4 decimal places.)
\(P(X\gt 6)=\)

Exercise 5.4.6.

(Donnelly 5.23)
Consider a Poisson probability distribution with \(\lambda=5.6\text{.}\) Calculate the probability of 3 or fewer occurrences. (Round your answer to 4 decimal places.)
\(P(X\leq 3)=\)

Exercise 5.4.7.

(Donnelly 5.29)
A customer support center for a computer manufacturer receives an average of 2.9 phone calls every five minutes. Assume the number of calls received follows the Poisson distribution. Use Excel to answer the following questions.

(a)

What is the probability that no calls will arrive during the next five minutes?
Answer.
\begin{equation*} P(X=0)=POISSON.DIST(0,2.9,FALSE)\approx 0.0550 \end{equation*}

(b)

What is the probability that 3 or more calls will arrive during the next five minutes?
Answer.
\begin{equation*} P(X\geq 3)=1-P(X\leq 2)=1-POISSON.DIST(2,2.9,TRUE)\approx 0.5540 \end{equation*}

(c)

What is the probability that 3 calls will arrive during the next ten minutes?
Answer.
\(\lambda=5.8\)
\begin{equation*} P(X=3)=POISSON.DIST(3,5.8,FALSE)\approx 0.0985 \end{equation*}

(d)

What is the probability that no more than 2 calls will arrive during the next ten minutes?
Answer.
\(\lambda=5.8\)
\begin{equation*} P(X\leq 2)=POISSON.DIST(2,5.8,TRUE)\approx 0.0715 \end{equation*}