Compute exact Poisson probabilities: P(X = k) and P(X ≤ k) for a given mean rate (λ).Visualize the probability mass function, obtain mean/variance, and explore the distribution through real‑world examples.
Poisson assumptions:
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 or space if these events occur with a known constant mean rate λ (lambda) and independently of the time since the last event. It is named after French mathematician Siméon Denis Poisson (1781–1840), who introduced the distribution in his 1837 work Recherches sur la probabilité des jugements.
Poisson Probability Mass Function (PMF):
$$ P(X = k) = \frac{e^{-λ} · λ^{k}}{k!} $$ for k = 0, 1, 2, ...
Where e ≈ 2.71828, λ > 0, and k! is the factorial.
Poisson originally derived the distribution as a limiting case of the binomial distribution when the number of trials n → ∞, probability of success p → 0, while np = λ remains constant. This “law of rare events” explains why the Poisson model is exceptionally accurate for rare occurrences: radioactive decay, insurance claims, natural disasters, and particle emissions. The distribution also underpins the Poisson process – a cornerstone of queueing theory and stochastic modeling.
The cumulative distribution function (CDF) P(X ≤ k) = Σ_{i=0}^{k} e^{-λ} λ^{i} / i! is computed via regularized gamma functions. Our calculator implements precise floating point arithmetic, validating against standard statistical tables for accuracy.
A telecommunications company receives an average of 12 calls per hour during peak time (λ = 12). Management needs to determine the probability of receiving exactly 15 calls in an hour. Using our Poisson calculator, P(X=15) ≈ 0.0724 (7.24%). Additionally, P(X ≤ 15) ≈ 0.844, helping to schedule sufficient staff to cover 84.4% of hours with 15 or fewer calls. This enables efficient resource allocation and service level optimization.
An urban intersection records an average of 2.3 accidents per month (λ = 2.3). City safety analysts compute the probability of at most 1 accident next month: P(X ≤ 1) = P(0)+P(1) = 0.1003 + 0.2306 = 0.3309 (33%). Meanwhile, the probability of 4 or more accidents is 1 – CDF(3) ≈ 0.182. Using these numbers, the city can prioritize safety interventions and justify budget for traffic lights.
A textile factory inspects fabric rolls for defects. The average defect rate is 4.2 per 100m². Before accepting a roll, quality engineers evaluate P(X ≤ 2) = 0.201 (20.1%) and P(X ≥ 7) to set control limits. Our calculator instantly provides critical values for Poisson‑based control charts, improving production consistency.