Math calculators

Poisson Distribution Calculator

Updated Sep 20, 2026 By Infinity Calculator
Rate Formulas
Poisson Inputs
Mean events per interval; must be greater than 0.
Choose which probability statement to evaluate.
Whole number of occurrences to test.

Summary

Probability
Percentage
Mean (μ)
Std Deviation (σ)
Probability Results
All Probability Variants
Step-by-Step Solution
PMF Distribution Chart

Highlighted bar(s) correspond to the selected value(s) of x.

Probability Distribution Table
Poisson Probability Distribution Table
k P(X = k) P(X ≤ k)

Introduction

The Poisson Distribution Calculator finds the chance that a set number of events happen in a fixed time or space. It needs two inputs: the average rate (λ) and the number of events (x).

Use it for things that happen at a steady average rate, like calls to a help desk each hour, cars at a stop sign, or typos on a page. Pick the type of question you want to answer: exactly x events, fewer than x, at most x, more than x, at least x, or a range between two numbers.

You get the probability as a decimal and a percent, plus the mean, variance, and standard deviation. A step-by-step solution shows the Poisson formula with your numbers filled in, so you can check your work or study the method. A bar chart and a table show the full distribution, with your chosen values marked.

The second tab looks at the shape of the whole distribution for one λ value. It lists the mean, variance, standard deviation, mode, skewness, and excess kurtosis, and explains what each number means in plain words. You can save any result as a PDF.

How to use our Poisson Distribution Calculator

Type in your average rate and the number of events you want to test. You get back the probability, the percentage, the mean, the standard deviation, step-by-step math, a chart, and a full probability table.

Average Rate (λ): Enter the mean number of events in one time period or space. It must be more than 0. Example: 5 calls per hour.

Probability Type: Pick the question you want to answer. You can choose exactly x, fewer than x, at most x, more than x, at least x, or a range between two values.

Number of Events (x): Enter the whole number of events you want to check, like 2. Use 0 or any positive whole number. This box shows for all types except a range.

Minimum Events (x₁): When you pick the range option, enter the smallest number of events. This number is counted in the answer.

Maximum Events (x₂): Enter the largest number of events for the range. It must be the same as or bigger than x₁, and it is counted in the answer too.

Average Rate (λ) on the Distribution Properties tab: Enter one rate to see the mean, variance, standard deviation, mode, skewness, and excess kurtosis for that Poisson distribution.

Buttons: Click Calculate to see your results. Click Reset to go back to the default values, or Load Example to try a sample problem. Click Download Results to save or print your work.

What Is the Poisson Distribution?

The Poisson distribution tells you how likely it is that a certain number of events happen in a set amount of time or space. It works when events happen at a steady average rate, one at a time, and each event is independent of the others.

You only need one number to use it: λ (lambda). Lambda is the average number of events per interval. For example, if a shop gets 5 calls per hour on average, then λ = 5 for a one-hour interval.

The Poisson Formula

The chance of seeing exactly x events is:

P(X = x) = (e−λ × λx) ÷ x!

  • λ = average number of events per interval
  • x = the number of events you are asking about (0, 1, 2, 3, …)
  • e ≈ 2.71828, a fixed math constant
  • x! = x factorial, so 4! = 4 × 3 × 2 × 1 = 24

Mean, Variance, and Standard Deviation

In a Poisson distribution, the mean and the variance are both equal to λ.

  • Mean (μ) = λ
  • Variance (σ²) = λ
  • Standard deviation (σ) = √λ
  • Mode = the whole number just below or equal to λ
  • Skewness = 1 ÷ √λ, so the shape gets more even as λ grows

When λ is small, the graph leans to the right. When λ is large (about 10 or more), the bars start to look like a normal bell curve.

When to Use It

Use the Poisson distribution for counts of rare or scattered events, such as:

  • Calls arriving at a help desk each hour
  • Cars passing a toll booth each minute
  • Typos on a page of a book
  • Flaws in a sheet of metal
  • Emails you get each day
  • Earthquakes in a region each year

Rules That Must Hold

  • Events happen one at a time, not in pairs.
  • The average rate stays the same over the whole interval.
  • One event does not change the chance of the next event.
  • x must be a whole number that is 0 or more, and λ must be greater than 0.

Quick Example

A bakery sells 4 birthday cakes per day on average, so λ = 4. The chance of selling exactly 2 cakes tomorrow is:

P(X = 2) = (e−4 × 4²) ÷ 2! = (0.018316 × 16) ÷ 2 = 0.1465, or about 14.65%.

Types of Poisson Probability

  • P(X = x): exactly x events
  • P(X < x): fewer than x events
  • P(X ≤ x): at most x events (this is the cumulative probability)
  • P(X > x): more than x events, found with 1 − P(X ≤ x)
  • P(X ≥ x): at least x events, found with 1 − P(X < x)
  • P(x₁ ≤ X ≤ x₂): between two counts, adding all terms in that range

Matching λ to Your Time Period

Lambda must match the interval you care about. If a store gets 12 customers per hour but you want a 15-minute window, use λ = 12 ÷ 4 = 3. If you want 3 hours, use λ = 12 × 3 = 36. Always scale the rate first, then compute the probability.

Poisson vs. Binomial

The binomial distribution counts successes in a fixed number of tries, like 10 coin flips. The Poisson distribution counts events with no fixed number of tries, just a rate over time or space. When a binomial has many trials (n large) and a small success rate (p small), the Poisson with λ = n × p gives a very close answer and is much easier to work out.


Formulas used

Poisson probability mass function
P(X = k) = \frac{e^{-\lambda} \lambda^{k}}{k!}
Cumulative distribution function (at most x)
P(X \le x) = \sum_{k=0}^{x} \frac{e^{-\lambda} \lambda^{k}}{k!}
Complement rule (more than / at least x)
P(X > x) = 1 - P(X \le x), \qquad P(X \ge x) = 1 - P(X \le x-1)
Probability of a range
P(x_1 \le X \le x_2) = \sum_{k=x_1}^{x_2} \frac{e^{-\lambda} \lambda^{k}}{k!} = P(X \le x_2) - P(X \le x_1 - 1)
Mean, variance and standard deviation
\mu = \lambda, \qquad \sigma^2 = \lambda, \qquad \sigma = \sqrt{\lambda}
Mode
\text{Mode} = \lfloor \lambda \rfloor
Skewness and excess kurtosis
\gamma_1 = \frac{1}{\sqrt{\lambda}}, \qquad \gamma_2 = \frac{1}{\lambda}

Frequently asked questions

Can lambda be a decimal number?

Yes. Lambda is an average, so it does not have to be a whole number. A clinic can average 2.4 walk-ins per hour, so λ = 2.4 works fine.

But x must still be a whole number. You can average 2.4 patients, but you can never count 2.4 patients in real life.

Can lambda be zero or a negative number?

No. Lambda must be greater than 0.

A negative rate has no meaning, since you cannot have fewer than zero events. If λ were 0, no events would ever happen, so P(X = 0) = 1 and every other answer would be 0. There is nothing to compute.

How do I find lambda from my own data?

Add up all the events, then divide by the number of intervals you watched.

Example: a shop counts 84 complaints over 12 weeks. λ = 84 ÷ 12 = 7 complaints per week.

Make sure every interval is the same length, and that λ matches the time window in your question.

What is the probability of at least one event happening?

Use the shortcut P(X ≥ 1) = 1 − e−λ.

You only need the chance of zero events, then flip it. If λ = 3, then P(X = 0) = e−3 = 0.0498, so P(X ≥ 1) = 1 − 0.0498 = 0.9502, or about 95%.

Is the Poisson distribution discrete or continuous?

It is discrete. The answer can only be a whole count: 0, 1, 2, 3, and so on.

You cannot ask for the chance of 2.5 events. Time itself is continuous, but the number of events you count is not.

Why is the Poisson distribution skewed to the right?

Counts stop at 0 on the left but have no limit on the right. That squeezes the low side and leaves a long tail on the high side.

Skewness equals 1 ÷ √λ. So a small λ gives a strong right lean, and a big λ makes the shape more even and bell-like.

Is there a maximum number of events in a Poisson distribution?

No. x can be any whole number, no matter how large.

The chances just get very tiny fast. With λ = 3, the chance of 20 events is about 0.0000007. It is not zero, but it is close enough that it rarely matters.

What is a Poisson process?

A Poisson process is the real-world pattern of events happening at random over time or space, at a steady average rate.

The Poisson distribution is the math that counts those events in one interval. The process is the stream of events; the distribution answers "how many in this window?"

What is the difference between the Poisson and exponential distributions?

They describe the same stream of events in two ways.

  • Poisson counts how many events happen in one interval.
  • Exponential measures the waiting time between two events.

If buses come at λ = 4 per hour, Poisson tells you the chance of 6 buses in an hour. Exponential tells you the chance of waiting more than 20 minutes for the next one.

How do I know if my data fits a Poisson distribution?

Compare the mean and the variance of your counts. In a true Poisson, they should be about equal.

If the variance is much larger than the mean, your data is overdispersed, which often means events come in clusters. If it is much smaller, the events are more evenly spaced than random. In both cases, Poisson is the wrong model.

When can you use a normal curve instead of the Poisson distribution?

The common rule is λ of at least 10, and 20 or more is safer.

Then use a normal curve with mean = λ and standard deviation = √λ. Add a 0.5 continuity correction, since you are swapping whole counts for a smooth curve. For example, P(X ≤ 15) becomes P(X ≤ 15.5) on the normal curve.

What happens if you add two Poisson variables together?

You get another Poisson distribution, with the two lambdas added.

If line A has 3 faults per hour and line B has 5 faults per hour, the total for both lines is Poisson with λ = 8. This only works if the two counts are independent.

Why does 0! equal 1 in the Poisson formula?

Zero factorial is defined as 1. There is exactly one way to arrange nothing.

This keeps the formula working for x = 0. P(X = 0) = (e−λ × λ0) ÷ 0! = e−λ ÷ 1 = e−λ.

How do you calculate Poisson probability in Excel?

Use the POISSON.DIST function: =POISSON.DIST(x, λ, cumulative).

  • Type FALSE for exactly x events: =POISSON.DIST(2,4,FALSE) gives 0.1465.
  • Type TRUE for at most x events: =POISSON.DIST(2,4,TRUE) gives 0.2381.

For "more than x," subtract the TRUE version from 1.

What does the mode of a Poisson distribution tell you?

The mode is the count you are most likely to see. It equals the whole number just below or equal to λ.

If λ = 4.7, the mode is 4. When λ is a whole number, there are two modes that tie: λ and λ − 1. With λ = 6, both 5 and 6 have the same top chance.