Poisson Distribution is a distribution that describes the probability of a given number of events occurring within a fixed time interval or region of opportunity (like Distance, Volume, Area, etc.). The distribution has some key characteristics:
Say, the number of visitors to a website or the number of calls received by a call center per hour.
Poisson distribution can be calculated through the following formula:
Where:
Example 2.3. Imagine a call centre receives 8 calls in an hour, find the probability of the following scenarios:
Here, the values of λ and are the same for all the scenarios:
Scenario 1: Exactly 10 calls in an hour
Here, = 10
Substituting the values of , , and in the Poisson distribution formula yields:
|
Poisson Distribution for this problem can be calculated in excel through the following formula: =POISSON.DIST(, , FALSE) =POISSON.DIST(10, 8, FALSE) = 0.0992 |
On plotting the same on a chart, we get:
The chart can be inferred as follows:
So, the chart shows that the probability of getting exactly 10 calls in an hour is 0.0992 or 9.92%, which matches with our calculated result.
Scenario 2: At least 10 calls in an hour
Here, we want to calculate for ( ), so essentially we want to know the cumulative probability of getting 10,11, 12, all the way up to infinity calls within one hour (As increases, the probability will keep on decreasing, becoming almost negligible)
To find the probability distribution for ( ), we can perform the following steps:
So, let's calculate ( ) first:
Now, we can simply subtract ( ) from 1:
|
Poisson distribution for this problem can be calculated in excel through the following formula: =1 - POISSON.DIST(, , TRUE) =1 - POISSON.DIST(9, 8, TRUE) = 0.2834 |
On plotting the same on a chart, we get:
The chart can be inferred as follows:
The lower cumulative probability for ( ) is 0.7166, subtracting this probability from 1 gives us the probability as 0.2834. So, the chart shows that the probability of getting at least 10 calls in an hour is 0.2834 or 28.34%, which matches with our calculated result.