The Poisson Distribution: Your Key to Predicting the Unforeseeable

The Poisson Distribution Distribution Cover

The Poisson distribution is a probability distribution that models the number of rare events that occur in a fixed interval of time or space. It is widely used in many fields, including physics, biology, economics, and engineering. The distribution is named after the French mathematician Siméon Denis Poisson, who first introduced it in the early 19th century.

In this post, we will explore the Poisson distribution in detail, including its probability density function, mean, variance, and applications. We will also discuss Poisson noise and how we can model it using the Poisson distribution. Let's get started!

What is the Poisson Distribution?

Poisson distribution is a discrete probability distribution that describes the probability of a given number of events occurring in a fixed interval of time or space. The distribution is often used to model rare events that occur randomly and independently of each other. The Poisson distribution has many practical applications, including modeling the number of traffic accidents in a given time period or the number of bacteria in a culture after a certain time.

The Poisson distribution is characterized by a single parameter, denoted by λ\lambda (lambda), which represents the mean number of events that occur in the given interval. The probability of observing kk events in the interval is given by the Poisson probability mass function (PMF):

P(X=k)=λkeλk!\begin{aligned} P(X=k) = \frac{\lambda^k e^{-\lambda}}{k!} \end{aligned}

where P(X=k)P(X=k) is the probability of kk events occurring in the interval, ee is the mathematical constant approximately equal to 2.718282.71828, and λ\lambda is the mean number of events.

The Poisson distribution has several important properties, including its mean and variance, which we will explore in the following section.

Mean and Variance of the Poisson Distribution

The mean, or expected value, of a Poisson distribution is denoted by λ\lambda, which represents the average number of events that occur in the given interval. It is also equal to the variance of the distribution.

The formula for the mean of a Poisson distribution is given by:

μ=E(X)=λ\mu = E(X) = \lambda

where E(X)E(X) denotes the expected value of the random variable XX.

The formula for the variance of a Poisson distribution is:

σ2=Var(X)=λ\sigma^2 = Var(X) = \lambda

where Var(X)Var(X) denotes the variance of the random variable XX.

This means that the standard deviation of a Poisson distribution is:

σ=λ\sigma = \sqrt{\lambda}

The mean and variance of the Poisson distribution have important implications in many real-world applications. For example, if we know the average number of traffic accidents that occur in a certain area, we can use the Poisson distribution to estimate the probability of a certain number of accidents occurring in a given time period. Similarly, if we know the average number of customers that visit a store in a day, we can use the Poisson distribution to model the probability of a certain number of customers visiting the store in a given time period.

In the next section, we will explore some examples of Poisson distributions in real-world applications.

Real-World Applications of the Poisson Distribution

Suppose a restaurant receives an average of 55 customer complaints per day. The number of customer complaints follows a Poisson distribution with parameter λ=5\lambda = 5. We can use the Poisson probability mass function to find the probability of observing a specific number of complaints in a day. For example, what is the probability of receiving exactly 33 complaints in a day?

Using the Poisson PMF, we have:

P(X=3)=53e53!0.1404P(X=3) = \frac{5^3 e^{-5}}{3!} \approx 0.1404

So the probability of receiving exactly 33 complaints in a day is approximately 0.14040.1404 or 14.04%14.04\%.

This is just one example of how the Poisson distribution can be used in the real world to model the occurrence of rare events.

Other Uses of the Poisson Distribution

The Poisson distribution is used in a wide range of applications, including astronomy, biology, economics, and physics. Here are some examples of the Poisson distribution in action:

  1. Astronomy: Astronomers use the Poisson distribution to model the arrival of cosmic rays and the number of photons received from distant stars and galaxies. These events are rare, and their occurrence can be modeled using the Poisson distribution.

  2. Biology: The Poisson distribution is used to model the number of mutations that occur in DNA sequences, the number of bacteria in a culture, and the number of cells in a tissue sample.

  3. Economics: The Poisson distribution is used to model the number of claims made to an insurance company, the number of customers in a queue, and the number of failures in a production process.

  4. Physics: The Poisson distribution is used to model the arrival of particles in a detector, the number of decays of a radioactive source, and the number of photons emitted by a laser.

Visualize the Poisson Distribution with Python

In this section, we will use Python to visualize the Poisson distribution. We will use the scipy.statsscipy.stats module to generate random samples from the Poisson distribution and plot the probability mass function (PMF).

Let's start by importing the necessary libraries:

import numpy as np
import matplotlib.pyplot as plt
from scipy.stats import poisson
import numpy as np
import matplotlib.pyplot as plt
from scipy.stats import poisson

Next, we will define the mean of the Poisson distribution, which is denoted by λ\lambda. We will use λ=5\lambda = 5 for this example:

lambda_ = 5
lambda_ = 5

Now, we will generate 1000 random samples from the Poisson distribution with mean λ=5\lambda = 5:

samples = poisson.rvs(mu=lambda_, size=1000)
samples = poisson.rvs(mu=lambda_, size=1000)

We can use the np.unique()np.unique() function to find the unique values and their corresponding counts in the samples:

unique, counts = np.unique(samples, return_counts=True)
unique, counts = np.unique(samples, return_counts=True)

We can use the plt.bar()plt.bar() function to plot the probability mass function (PMF) of the Poisson distribution:

plt.bar(unique, counts/1000)
plt.ylabel('Probability')
plt.xlabel('Number of events')
plt.show()
plt.bar(unique, counts/1000)
plt.ylabel('Probability')
plt.xlabel('Number of events')
plt.show()

After running the code, we get the following PMF plot:

Poisson PMF

We can see that the probability mass function is right skewed and has a long tail to the right. This means that the probability of observing a large number of events is very small. For example, the probability of observing 1010 events is approximately 0.0250.025 which is very small compared to the probability of observing 55 events, which is approximately 0.1750.175.

This visualization can be applied to many real-world scenarios, including modeling the number of cosmic rays detected in a particular time period or the number of supernova explosions observed in a particular region of the sky. By using the Poisson distribution to model such rare events, we can gain insights into the likelihood of these events occurring and make predictions about future observations.

The final code for this section is given below:

import numpy as np
import matplotlib.pyplot as plt
from scipy.stats import poisson
 
lambda_ = 5
 
samples = poisson.rvs(mu=lambda_, size=1000)
 
unique, counts = np.unique(samples, return_counts=True)
 
plt.bar(unique, counts/1000)
plt.xlabel('Number of Events')
plt.ylabel('Probability')
plt.title('Poisson Distribution PMF')
plt.show()
import numpy as np
import matplotlib.pyplot as plt
from scipy.stats import poisson
 
lambda_ = 5
 
samples = poisson.rvs(mu=lambda_, size=1000)
 
unique, counts = np.unique(samples, return_counts=True)
 
plt.bar(unique, counts/1000)
plt.xlabel('Number of Events')
plt.ylabel('Probability')
plt.title('Poisson Distribution PMF')
plt.show()

Properties of the Poisson Distribution

The Poisson distribution has following important properties:

  • The Poisson distribution is a discrete probability distribution, which means that it can only take on discrete values. For example, the number of traffic accidents in a day cannot be a fraction, and it can only take on integer values.
  • The Poisson distribution is a memoryless distribution, which means that the probability of observing a certain number of events in the future is independent of the number of events that occurred in the past. For example, the probability of observing 33 traffic accidents in a day is independent of the number of accidents that occurred in the previous days.
  • The Poisson distribution is a non-negative distribution, which means that it can only take on non-negative values. For example, the number of traffic accidents in a day cannot be negative.
  • The Poisson distribution right skewed, which means that the probability of observing a large number of events is higher than the probability of observing a small number of events. For example, the probability of observing 1010 traffic accidents in a day is higher than the probability of observing 11 traffic accident in a day.

Poison noise

Poisson noise is a type of noise that arises when counting rare events that follow a Poisson distribution. Poisson noise is the result of the statistical fluctuations of the number of events occurring in a given interval.

For example, in astronomy, Poisson noise is often encountered when counting photons from distant celestial objects. The number of photons detected by a telescope follows a Poisson distribution, and the statistical fluctuations in the number of photons result in Poisson noise. Understanding the level of Poisson noise is important in determining the uncertainty in the measurements, and hence the accuracy of the resulting scientific conclusions.

Example problem

Suppose we have counted a total of 10,000 photoelectrons over a period of 10 minutes from incoming photons at a CCD pixel of an astronomical telescope. What is the noise level or uncertainty in that photoelectron count?

Solution with Python

We can use the Poisson distribution to calculate the uncertainty in the photoelectron count. Since the Poisson distribution has a variance equal to its mean, we can estimate the mean photoelectron count as the total number of photoelectrons divided by the measurement time. In this case, the mean photoelectron count is:

λ=10,00010,minutes=1,000,photoelectrons/minute\lambda = \frac{10,000}{10 , \text{minutes}} = 1,000 , \text{photoelectrons/minute}

Using this mean value, we can calculate the standard deviation or uncertainty of the photoelectron count as:

σ=λ=1,00031.6,photoelectrons/minute\sigma = \sqrt{\lambda} = \sqrt{1,000} \approx 31.6 , \text{photoelectrons/minute}

Therefore, the Poisson noise or uncertainty in the photoelectron count is approximately 31.6 photoelectrons per minute.

We can also verify this result using Python. Here is an example code snippet that calculates the uncertainty in the photoelectron count using the Poisson distribution:

import numpy as np
from scipy.stats import poisson
 
total_photoelectrons = 10000
measurement_time = 10 # minutes
 
mean_photoelectrons = total_photoelectrons / measurement_time
print("Mean photoelectron count:", mean_photoelectrons)
 
std_photoelectrons = np.sqrt(mean_photoelectrons)
print("Standard deviation or uncertainty:", std_photoelectrons)
 
# Poisson distribution
poisson_dist = poisson(mu=mean_photoelectrons)
 
# Probability of measuring exactly the mean value
prob_mean = poisson_dist.pmf(mean_photoelectrons)
print("Probability of measuring exactly the mean value:", prob_mean)
import numpy as np
from scipy.stats import poisson
 
total_photoelectrons = 10000
measurement_time = 10 # minutes
 
mean_photoelectrons = total_photoelectrons / measurement_time
print("Mean photoelectron count:", mean_photoelectrons)
 
std_photoelectrons = np.sqrt(mean_photoelectrons)
print("Standard deviation or uncertainty:", std_photoelectrons)
 
# Poisson distribution
poisson_dist = poisson(mu=mean_photoelectrons)
 
# Probability of measuring exactly the mean value
prob_mean = poisson_dist.pmf(mean_photoelectrons)
print("Probability of measuring exactly the mean value:", prob_mean)

After running the code, we get the following output:

Mean photoelectron count: 1000.0
Standard deviation or uncertainty: 31.622776601683793
Probability of measuring exactly the mean value: 0.01261461134870819
Mean photoelectron count: 1000.0
Standard deviation or uncertainty: 31.622776601683793
Probability of measuring exactly the mean value: 0.01261461134870819

We have used the scipy.statsscipy.stats module to create a Poisson distribution with the estimated mean photoelectron count, and then calculates the probability of measuring exactly the mean value. The resulting probability is small, indicating that the actual photoelectron count is likely to deviate from the mean value due to Poisson noise.

Conclusion

The poisson distribution is a useful tool for modeling the occurrence of rare events. Its properties, including its mean and variance, make it well-suited for a wide range of real-world applications. From modeling the arrival of customers at a store to understanding the behavior of photons in telescopes, the Poisson distribution has proven to be a valuable tool in many fields. With the help of Python, it is easier than ever to apply the Poisson distribution to real-world problems and gain insights into the behavior of rare events.



Mir Sazzat Hossain is a Research Assistant at the Independent University of Bangladesh's Center for Computation and Data Science (CCDS).

Comments

Do you have a problem, want to share feedback, or discuss further ideas? Feel free to leave a comment here! Please stick to English. This comment thread directly maps to a discussion on GitHub, so you can also comment there if you prefer.

Instead of authenticating the giscus application, you can also comment directly on GitHub.

Related Articles

Exploring Gaussian Distribution: Understanding the Math Behind the Bell-Shaped Curve

This blog post delves into the concept of Gaussian Distribution, a popular topic in mathematics and statistics. The post provides a comprehensive explanation of the distribution, including its properties, applications, and examples. Get to know the secrets behind the famous bell-shaped curve and how it is used in various fields. Whether you are a student, researcher, or data analyst, this post has everything you need to know about Gaussian Distribution.