Exponential Distribution Calculator

Model the waiting time until the next event — the next customer, call, failure, or radioactive decay. Enter the event rate λ (or the mean waiting time) and a value x to get exact cumulative, survival, and density values.

Before You Calculate

  • The rate λ counts events per unit of time (2 calls per hour → λ = 2); the mean waiting time is its reciprocal (0.5 hours per call). Enter whichever you know.
  • Keep units consistent: if λ is per hour, then x must be in hours too.
  • The model assumes events occur independently at a constant average rate — the same assumption behind the Poisson distribution.

Formulas and Parameterization

The exponential distribution with rate λ > 0 has:

Density: f(x) = λe^(−λx), x ≥ 0

Cumulative: P(X ≤ x) = 1 − e^(−λx)

Survival: P(X > x) = e^(−λx)

Mean = SD = 1/λ, Median = ln(2)/λ

Watch out for the two parameterization conventions: some textbooks and software define the exponential by its rate λ, others by its mean (often written β or θ) which equals 1/λ. A distribution with “rate 2” and one with “mean 0.5” are the same distribution. The calculator accepts either form and reports both, so a mismatch is easy to catch.

The mean lies above the median (1/λ > 0.693/λ) because the distribution is right-skewed: many short waits, a few very long ones. The standard deviation always equals the mean — a quick diagnostic for whether real waiting-time data is plausibly exponential.

Memorylessness, and the Poisson Connection

The exponential is the only continuous distribution with the memoryless property: P(X > s + t | X > s) = P(X > t). If a component's lifetime is exponential and it has already run for 100 hours, the chance it survives another 50 is exactly the same as a brand-new component surviving 50. That makes the exponential a good model for events driven by pure chance (radioactive decay, random arrivals) and a poor one for wear-out failures, where age genuinely matters.

The Poisson link runs both ways: if event counts per window follow a Poisson distribution with rate λ, then the waiting times between events are exponential with the same λ. The survival formula makes this visible: P(X > x) = e^(−λx) is exactly the Poisson probability of observing zero events in a window of length x.

Worked Example: Calls at a Help Desk

Calls arrive at an average rate of λ = 2 per hour. What is the probability the next call arrives within 30 minutes (x = 0.5 hours)?

  1. Exponent: λx = 2 × 0.5 = 1.
  2. Cumulative probability: P(X ≤ 0.5) = 1 − e⁻¹ ≈ 0.632121.
  3. Survival: P(X > 0.5) = e⁻¹ ≈ 0.367879.
  4. Summary: mean wait 1/2 = 0.5 hours, median ln(2)/2 ≈ 0.3466 hours (about 21 minutes), SD 0.5 hours.

Note the asymmetry: half of all waits are under 21 minutes even though the average wait is 30 minutes — the long right tail drags the mean up. Entering λ = 2 and x = 0.5 (or, equivalently, mean 0.5 and x = 0.5) reproduces every number above.

Frequently Asked Questions

What is the exponential distribution used for?

It models the waiting time until the next event when events occur independently at a constant average rate: time between customer arrivals, calls to a help desk, radioactive decays, or failures of components that do not wear out. If counts of events per window are Poisson, the gaps between events are exponential with the same rate.

Should I enter the rate or the mean? What is the difference?

They are reciprocals describing the same distribution: a rate of 2 events per hour means a mean waiting time of 0.5 hours. Software and textbooks differ on which parameter they expect, which is a common source of silent errors. This calculator accepts either and always displays both, so you can confirm the parameterization matches your source.

What does memorylessness actually mean?

The probability of waiting at least another t units is the same no matter how long you have already waited: P(X > s + t | X > s) = P(X > t). A device with an exponential lifetime never ages in a probabilistic sense. If your system does wear out over time, distributions like the Weibull or gamma are more appropriate models.

Why is the median smaller than the mean here?

The exponential distribution is right-skewed: most waits are short, but occasional very long waits pull the average up. The median is ln(2)/lambda, about 69% of the mean 1/lambda. So with a mean wait of 30 minutes, half of all waits are actually under about 21 minutes.

How is the exponential related to the Poisson distribution?

They describe the same process from two angles. The Poisson counts how many events land in a fixed window; the exponential measures how long until the next event. The survival function P(X > x) = e^(-lambda x) equals the Poisson probability of zero events in a window of length x, which is the cleanest way to see the connection.

What is the probability that X equals some exact value?

Zero, as for any continuous distribution - probability lives on intervals, not points. The density f(x) is not a probability; it is a rate of probability per unit of x, which is why it can exceed 1 when lambda is large. Use P(X <= x) or P(a < X < b) (the difference of two CDF values) for actual probabilities.