Visual Tools
Calculators
Tables
Mathematical Keyboard
Converters
Other Tools


Poisson Distribution Explorer


Modify Parameters and See Results

Number of events in a fixed interval

Parameters

Rate Parameter (λ)
3.00

Average number of events occurring in the fixed interval

Mean = Variance (E[X] = Var(X))
3.00

Unique property: mean equals variance

Standard Deviation (σ)
1.73

Measure of spread, equal to √λ

Statistics

Expected Value
3.0000
Variance
3.0000
Std Deviation
1.7321
Mode
3

Probability Calculator

Key Properties

Real-World Applications

  • Number of customer arrivals per hour at a store
  • Number of phone calls received at a call center per minute
  • Number of defects per manufactured item
  • Number of emails received per day
  • Number of radioactive decays per second
  • Number of accidents at an intersection per month







Adjusting the Rate Parameter

Use the λ (lambda) slider to set the average rate of events per interval. Values range from 0.1 (very rare events) to 20 (frequent events), representing the expected count in your time or space window.

As you change λ, watch the distribution shape transform. Low λ values create highly right-skewed distributions concentrated near zero. Higher λ values produce more symmetric, bell-shaped distributions approaching normality.

The parameter λ directly determines both the mean and variance - they're always equal in a Poisson distribution. At λ = 5, you expect 5 events on average with variance also equal to 5.

Reading the PMF Chart

The PMF visualization displays bars for k = 0, 1, 2, ... showing P(X = k), the probability of exactly k events occurring. The chart automatically extends to show the relevant range where probabilities are meaningful.

The distribution's peak (mode) occurs at λ\lfloor λ \rfloor - the floor of λ. For λ = 7.5, the mode is at k = 7. When λ is an integer, both k = λ and k = λ-1 are modes with equal probability.

Bar heights decrease rapidly beyond λ + 3√λ, which encompasses about 99.7% of the probability mass. The calculator displays enough range to show where probability becomes negligible.

Understanding CDF Values

The CDF displays P(X ≤ k), climbing from 0 toward 1 in discrete steps. Each step represents adding another outcome's probability, with larger steps at more probable values near λ.

Use the CDF to quickly assess ranges. The probability P(X ≤ 10) can be read directly from the curve at k = 10. The steepness around the mean indicates concentration - steep means most events cluster near λ.

For large λ, the CDF's S-curve shape becomes more pronounced, reflecting the distribution's approach to normality through the Central Limit Theorem.

Computing Exact Probabilities

Enter event count k in the Point Probability calculator to find P(X = k) using the Poisson formula: (λ^k × e^(-λ)) / k!. The calculator handles the factorial computation automatically.

The exponential term e^(-λ) rapidly decreases as λ increases, while λ^k grows with k. Their balance creates the characteristic probability distribution. For λ = 4, k = 4, you get about 0.195 - the most likely single outcome.

Try calculating P(X = 0) for different λ values. This "zero probability" equals e^(-λ), showing how quickly the chance of no events drops as the rate increases.

Calculating Cumulative Probabilities

Use P(X ≤ k) to find the probability of k or fewer events. This requires summing Poisson probabilities from 0 to k, which the calculator performs efficiently using optimized algorithms.

P(X > k) gives the complement: the probability of more than k events. This equals 1 - P(X ≤ k) and answers questions like "What's the chance of exceeding our capacity of k events?"

The ≥ and > distinction matters: P(X ≥ k) includes k itself, while P(X > k) starts counting from k+1. This one-event difference can be significant for discrete distributions.

Range Probability Calculations

The range calculator computes P(a ≤ X ≤ b) by taking F(b) - F(a-1), where F is the CDF. This gives the probability of event count falling within the specified window.

Four boundary options handle inclusivity:
[a, b] - Include both bounds
(a, b) - Exclude both bounds
[a, b) - Include a, exclude b
(a, b] - Exclude a, include b

Example: For λ = 6, find P(4 ≤ X ≤ 8). This gives the probability of observing between 4 and 8 events inclusive, capturing the central probability mass.

What is the Poisson Distribution?

The Poisson distribution models the number of events occurring in a fixed interval (time, space, volume) when events happen independently at a constant average rate λ. It's fundamental for counting rare or randomly timed occurrences.

Three key assumptions: (1) events occur independently, (2) events occur at a constant average rate, and (3) two events cannot occur at exactly the same instant. When these hold, event counts follow a Poisson distribution.

Common applications include customer arrivals, phone call volumes, manufacturing defects, website traffic, radioactive decay counts, and accident frequencies. For theoretical foundations, see Poisson distribution theory page.

Mean Equals Variance Property

A unique feature of the Poisson distribution is that mean = variance = λ. This equidispersion property distinguishes it from other count distributions like negative binomial (overdispersed) or binomial with small p (underdispersed).

When analyzing count data, if sample variance significantly exceeds sample mean, Poisson may not be appropriate - consider negative binomial for overdispersion. If variance is much less than mean, other models may fit better.

The standard deviation equals √λ, meaning the typical deviation from the mean grows as the square root of the rate. For λ = 16, standard deviation is 4, so about 68% of observations fall within [12, 20].

Poisson as Binomial Approximation

The Poisson distribution approximates the binomial distribution when n is large and p is small, with λ = np. Rule of thumb: use Poisson approximation when n ≥ 20 and p ≤ 0.05.

For example, defect probability p = 0.001 across n = 5000 units gives λ = 5. Computing binomial probabilities with these parameters is computationally intensive; Poisson provides excellent approximation with simpler calculations.

This connection explains why Poisson models rare events well - it's the limiting case of binomial as we have many opportunities (large n) for rare outcomes (small p). For comparisons, see binomial vs Poisson approximation.

Related Distributions and Calculators

The exponential distribution models time between Poisson events. If events follow Poisson(λ) per unit time, inter-arrival times follow Exponential(λ). They're two views of the same process.

The normal distribution approximates Poisson for large λ (typically λ ≥ 10), using mean = variance = λ. This simplifies calculations and enables z-score methods for Poisson data.

Related Tools:

Exponential Distribution Calculator - Time between events

Binomial Distribution Calculator - Fixed trials approximation

Normal Distribution Calculator - Large λ approximation

Negative Binomial Calculator - Overdispersed count data