EasyUnitConverter.com

Poisson Distribution Calculator

Calculate Poisson distribution probabilities for exact, cumulative, or tail values. The Poisson distribution models the number of events occurring in a fixed interval of time or space when events happen at a constant average rate. See also our Binomial Distribution Calculator, Normal Distribution Calculator, and Exponential Distribution Calculator.

How to Use the Poisson Distribution Calculator

The Poisson distribution is a discrete probability distribution that expresses the probability of a given number of events occurring in a fixed interval of time, distance, area, or volume. It assumes events occur independently at a constant average rate λ (lambda). This distribution is particularly useful when counting rare events over a large number of opportunities.

To use this calculator, enter the average rate parameter λ (the expected number of events per interval) and the number of events k you want to find the probability for. Select whether you want the exact probability P(X=k), the cumulative probability P(X≤k), or the upper tail probability P(X≥k). The calculator will compute the result along with supporting statistics including the mean, variance, and standard deviation.

Common applications of the Poisson distribution include modeling the number of customers arriving at a store per hour, the number of defects per unit of manufactured product, the number of calls received by a call center per minute, the number of accidents at an intersection per year, and the number of mutations in a strand of DNA. The distribution is also used in queuing theory, reliability engineering, and insurance risk modeling.

Poisson Distribution Formulas

Probability Mass Function (PMF):

P(X = k) = (λ^k × e^(-λ)) / k!

Where:

λ = average rate (expected number of events)

k = number of events (non-negative integer)

e = Euler's number ≈ 2.71828

Mean and Variance:

Mean: μ = λ

Variance: σ² = λ

Std Dev: σ = √λ

Cumulative Distribution Function:

P(X ≤ k) = e^(-λ) × Σᵢ₌₀ᵏ (λⁱ / i!)

Mode:

Mode = ⌊λ⌋ (floor of λ) when λ is not an integer

Mode = λ - 1 and λ when λ is an integer

Example Calculation

A call center receives an average of 5 calls per minute. What is the probability of receiving exactly 3 calls in a given minute?

Given: λ = 5, k = 3

P(X = 3) = (5³ × e⁻⁵) / 3!

= (125 × 0.006738) / 6

= 0.842250 / 6

= 0.1404 (14.04%)

Mean: μ = λ = 5 calls per minute

Std Dev: σ = √5 = 2.236

Interpretation: There is approximately a 14% chance

of receiving exactly 3 calls in any given minute.

Poisson Probability Reference Table

λ (Rate)k (Events)P(X = k)
100.3679
110.3679
220.2707
330.2240
440.1954
550.1755
530.1404
10100.1251

Frequently Asked Questions

What are the conditions for a Poisson distribution?

The Poisson distribution requires: (1) Events occur independently of each other, (2) The average rate λ is constant over the interval, (3) Two events cannot occur at exactly the same instant, (4) The probability of an event in a small sub-interval is proportional to the length of the sub-interval. These conditions are often summarized as events occurring randomly and independently at a constant average rate.

What is the relationship between Poisson and binomial distributions?

The Poisson distribution is a limiting case of the binomial distribution when the number of trials n is large, the probability of success p is small, and the product λ = np remains moderate. Specifically, as n → ∞ and p → 0 with np = λ constant, Binomial(n, p) → Poisson(λ). The rule of thumb is to use Poisson when n ≥ 20 and p ≤ 0.05.

Why is the mean equal to the variance in a Poisson distribution?

This is a unique mathematical property of the Poisson distribution. Both the mean and variance equal λ. This property is useful for checking whether data follows a Poisson distribution: if the sample mean and sample variance are approximately equal, the data may be Poisson-distributed. When the variance exceeds the mean (overdispersion), a negative binomial distribution may be more appropriate.

How do I choose the right value of λ?

The parameter λ represents the average number of events per interval. Estimate it from historical data by dividing the total number of observed events by the number of intervals observed. For example, if a hospital emergency room sees 120 patients over 24 hours, λ = 120/24 = 5 patients per hour. Ensure the interval matches your question.

Can λ be a non-integer value?

Yes, λ can be any positive real number. While k (the number of events) must be a non-negative integer, the rate parameter λ can be 2.5, 0.7, or any positive value. For example, if a website averages 3.5 errors per day, you would use λ = 3.5 to model the number of errors on any given day.

When should I use Poisson vs exponential distribution?

The Poisson distribution models the count of events in a fixed interval (discrete), while the exponential distribution models the time between consecutive events (continuous). They are closely related: if events follow a Poisson process with rate λ, then the time between events follows an Exponential(λ) distribution. Use Poisson for "how many events?" and exponential for "how long until the next event?"