Biostatistics Study NotesFrom concepts and derivations to interpretation

CHAPTER 02 · TOPIC 09

Poisson Distribution

Model event counts in a fixed interval and connect the rate parameter to binomial limits and exponential waiting times.

On this page
  1. In what cases should you use it?
  2. What does the parameter λ represent?
  3. probability mass function
  4. How does λ change the shape of the distribution?
  5. mean and variance are equal
  6. Commonly Used Probabilities
  7. Approximation by binomial distribution
  8. Relationship with exponential distribution
  9. Independent Poisson Counts Are Additive

A Poisson distribution is a discrete probability distribution that describes the number of times an event occurs within a given time, area, volume, or other interval.

In what cases should you use it?#

  1. Count the number of times X occurs within a fixed interval
  2. Events occur with a roughly constant average rate of occurrence
  3. The number of occurrences of non-overlapping intervals can be considered independent.
  4. You can ignore the probability that it will happen more than once in a very short interval.

What does the parameter λ represent?#

λ is the expected number of occurrences within the selected observation interval. If the average incidence per unit interval is r and the length of the observation interval is t, then λ=rt, and if you change the length of the interval, λ will also change.

Distribution notationXPoisson(λ),λ>0X\sim\operatorname{Poisson}(\lambda),\qquad \lambda>0
Incidence rate and interval parameterλ=rt\lambda=rt
possible valuesx=0,1,2,x=0,1,2,\ldots
symbolmeaning
XNumber of occurrences within the selected interval
xPossible values ​​of X
λExpected number of occurrences within the selected interval
rAverage incidence per unit interval
tObservation interval length

probability mass function#

Since X takes only non-negative integers, a probability mass function is used instead of a continuous probability density function. The following formula is the probability that an event will occur exactly x times within the interval.

P(X=x)=eλλxx!,x=0,1,2,P(X=x)=\frac{e^{-\lambda}\lambda^x}{x!},\qquad x=0,1,2,\ldots
part of the expressionmeaning
P(X=x)Probability of occurrence exactly x times within a fixed interval
e^(−λ)Probability that it will never occur within the interval
λ^xThe part about x events and the average number of occurrences
x!a factorial term that adjusts the order of events x times

How does λ change the shape of the distribution?#

When λ is small, the probability is concentrated to 0 and a small number of times and skewed to the right. As λ increases, the center shifts to the right, increasing the range and reducing relative distortion. The points in the diagram are the actual integer values ​​of X, and the lines are just to help distinguish points from the same distribution.

Poisson probability plots for parameters 0.5, 2, 5, and 10; the center moves right and the distribution becomes more symmetric as the parameter increases
A Poisson variable takes only nonnegative integer values. It is strongly right-skewed at small parameter values; as the parameter increases, the center moves right, the spread widens, and the shape becomes more symmetric. Connecting lines only help identify points from the same distribution.Source: Created for this site from the Poisson probability mass function

mean and variance are equal#

In the Poisson distribution, both the expected value and the variance are λ. As λ increases, not only the number of averages but also the absolute variation increases, and the standard deviation becomes √λ.

Expected valueE(X)=λE(X)=\lambda
dispersionVar(X)=λ\operatorname{Var}(X)=\lambda
standard deviationSD(X)=λ\operatorname{SD}(X)=\sqrt{\lambda}

Commonly Used Probabilities#

The probability that an event will never occur is particularly important, as it immediately determines the probability that it will occur at least once from co-events.

never happensP(X=0)=eλP(X=0)=e^{-\lambda}
at least onceP(X1)=1P(X=0)=1eλP(X\ge1)=1-P(X=0)=1-e^{-\lambda}
at most k timesP(Xk)=x=0keλλxx!P(X\le k)=\sum_{x=0}^{k}\frac{e^{-\lambda}\lambda^x}{x!}
Supplement: Deriving Poisson's formula from the binomial distribution

Step 1: Divide the observation interval into many small intervals

Assume that events occur an average of λ times in the entire interval, and divide it into n short intervals. When n is large, the probability of occurrence of each interval is approximately λ/n, and the probability of occurrence more than once can be ignored, so it can be temporarily treated as a binomial trial.

Probability of occurrence of small intervalpn=λnp_n=\frac{\lambda}{n}
Binomial model with finite nXnBinomial ⁣(n,λn)X_n\sim\operatorname{Binomial}\!\left(n,\frac{\lambda}{n}\right)
occurs exactly x timesP(Xn=x)=(nx)(λn)x(1λn)nxP(X_n=x)=\binom{n}{x}\left(\frac{\lambda}{n}\right)^x\left(1-\frac{\lambda}{n}\right)^{n-x}

Step 2: Separate the Expression into Parts with Evaluatable Limits

P(Xn=x)=n!nx(nx)!Anλxx!(1λn)nBn(1λn)xCnP(X_n=x)=\underbrace{\frac{n!}{n^x(n-x)!}}_{A_n}\frac{\lambda^x}{x!}\underbrace{\left(1-\frac{\lambda}{n}\right)^n}_{B_n}\underbrace{\left(1-\frac{\lambda}{n}\right)^{-x}}_{C_n}

Stage 3: Find three limits

Increase n while keeping x fixed. The sorting ratio approaches 1, the index limit approaches e^(−λ), and the fixed index correction approaches 1.

arrangement ratioAn=j=0x1(1jn)1A_n=\prod_{j=0}^{x-1}\left(1-\frac{j}{n}\right)\longrightarrow1
exponential limitBn=(1λn)neλB_n=\left(1-\frac{\lambda}{n}\right)^n\longrightarrow e^{-\lambda}
fixed indexCn=(1λn)x1C_n=\left(1-\frac{\lambda}{n}\right)^{-x}\longrightarrow1
limnP(Xn=x)=eλλxx!\lim_{n\to\infty}P(X_n=x)=\frac{e^{-\lambda}\lambda^x}{x!}

Approximation by binomial distribution#

If n is large and p is small in the binomial distribution, and λ=np is a moderate size, the number of successes can be approximated by Poisson(λ). Suitable for events that occur only on a small number of occasions.

XBinomial(n,p),n large, p small, λ=npXPoisson(λ)X\sim\operatorname{Binomial}(n,p),\quad n\text{ large},\ p\text{ small},\ \lambda=np\quad\Longrightarrow\quad X\approx\operatorname{Poisson}(\lambda)

Relationship with exponential distribution#

In a Poisson process with occurrence rate r, the number of occurrences N(t) within length t follows Poisson(rt), and the waiting time T until the next event follows Exp(r). One measures the number of times, the other measures the interval.

Number of occurrences within a fixed timeN(t)Poisson(rt)N(t)\sim\operatorname{Poisson}(rt)
Wait time until next eventTExp(r)T\sim\operatorname{Exp}(r)
Waiting for more than t is the same as no event within the intervalP(T>t)=P(N(t)=0)=ertP(T>t)=P(N(t)=0)=e^{-rt}

Independent Poisson Counts Are Additive#

If the counts of different sources are independent, the total count also follows a Poisson distribution, and the population is the sum of the counts of each source. Naturally integrate counts from different time periods, regions, and sources.

XiPoisson(λi) independentlyi=1mXiPoisson ⁣(i=1mλi)X_i\sim\operatorname{Poisson}(\lambda_i)\text{ independently}\quad\Longrightarrow\quad\sum_{i=1}^{m}X_i\sim\operatorname{Poisson}\!\left(\sum_{i=1}^{m}\lambda_i\right)