Last modified: July 28, 2024

This article is written in: 🇺🇸

Poisson Distribution (Discrete)

A discrete random variable X follows a Poisson distribution if the events occur independently and at a constant average rate. The Poisson distribution is denoted as XPoisson(λ), where λ is the average rate (or mean) of events occurring in a given interval.

Probability Mass Function (PMF)

The PMF of a Poisson distribution is given by:

P(X=k)=eλλkk!

where k0,1,2,.

output(25)

Cumulative Distribution Function (CDF)

The CDF of a Poisson distribution is given by:

F(k)=P(Xk)=i=0keλλii!

output(26)

Expected Value and Variance

The expected value (mean) and variance of a Poisson distribution are both equal to the average rate parameter λ:

E[X]=Var(X)=λ

Moment Generating Functions and Moments

The moment generating function (MGF) of a Poisson distribution is:

MX(t)=E[etX]=eλ(et1)

To find the n-th moment, we take the n-th derivative of the MGF with respect to t and then evaluate it at t=0:

E[Xn]=dnMX(t)dtn|t=0

E[X]=λ

E[X2]=λ2+λ

Example: Hospital Emergency Room Visits

A hospital's emergency room experiences an average of 5 visits per hour due to accidents. We can model this using a Poisson distribution.

Given:

I. What is the probability exactly 3 accidents occur in an hour?

For exactly 3 accidents:

P(X=3)=e5533!=0.1404

II. What is the probability of more than 7 accidents in an hour?

For more than 7 accidents:

P(X>7)=1k=07e55kk!=0.1339

III. What is the probability of at most 2 accidents in an hour?

For at most 2 accidents:

P(X2)=k=02e55kk!=0.1247

Poisson Approximation to the Binomial Distribution

If the number of trials in a binomial distribution is large (n) and the probability of success (p) is small, then the binomial distribution can be approximated by a Poisson distribution with parameter λ=np:

Binomial(n,p)Poisson(np)

Table of Contents

    Poisson Distribution (Discrete)
    1. Probability Mass Function (PMF)
    2. Cumulative Distribution Function (CDF)
    3. Expected Value and Variance
    4. Moment Generating Functions and Moments
    5. Example: Hospital Emergency Room Visits
    6. Poisson Approximation to the Binomial Distribution