User Rating 0.0
Total Usage 1 times
Is this tool helpful?

Your feedback helps us improve.

About

The Poisson distribution models the probability of a given number of events occurring in a fixed interval of time or space, assuming these events occur with a known constant mean rate and independently of the time since the last event. It is widely used in fields ranging from telecommunications (call arrival rates) to biology (mutation counts).

This tool computes the Probability Mass Function (PMF), which is the probability of observing exactly k events, and the Cumulative Distribution Function (CDF). It is essential for operations research, inventory management, and risk assessment where discrete, rare events are analyzed.

poisson calculator probability distribution statistical analysis data science tool lambda calculator

Formulas

The probability of observing exactly k events is given by the formula:

P(k) = λk e−λk!

Where:

  • e is Euler's number ( 2.71828)
  • k! is the factorial of k

The cumulative probability is the sum of probabilities from 0 to k.

Reference Data

VariableSymbolDefinitionExample
Mean Rateλ (Lambda)Average number of events per interval.5 calls / hour
OccurrenceskActual number of successes to test.Exactly 3 calls
PMFP(X=k)Prob. of exactly k events.0.1404
CDFP(Xk)Prob. of k or fewer events.0.2650
ComplementP(X>k)Prob. of more than k events.0.7350

Frequently Asked Questions

Use Poisson when n (number of trials) is very large and p (probability of success) is very small. Poisson is about counting events over a continuum (time/area), whereas Binomial is about counting successes in discrete trials.
Yes. Lambda (λ) is an average, so it can be 2.5 events per hour. However, k (the observed count) must always be a non-negative integer (0, 1, 2...).
A unique property of the Poisson distribution is that the Mean (λ) and the Variance (σ²) are equal. Standard deviation is the square root of λ.
Calculating factorials for large k (e.g., k=200) can cause overflow. This tool uses logarithmic approximations to handle larger inputs accurately.