Exponential distribution

The exponential distribution models the waiting time until the next event in a Poisson process — a radioactive decay, a web server request, a bus arrival. Its rate parameter sets how quickly events happen on average.

00.20.40.60.810123456xdensity
mean = 1.00 median = 0.69
PDF . Bars: 500 samples. Mean = , median = .

What to notice

  • Higher shifts mass toward zero — events happen sooner. The distribution compresses toward the left.
  • Mean vs median. Because the distribution is right-skewed, the mean (= ) always exceeds the median (= ). Most waiting times are shorter than average.
  • Heavy right tail. Even with high , long waiting times have nonzero probability. Rare but very long waits always exist.

The memoryless property

The exponential is the only continuous distribution with this property:

If you’ve already waited s minutes for the bus, the remaining wait has the same distribution as if you had just arrived. The bus has no memory of how long you’ve been there.

This makes the exponential both analytically tractable and sometimes an unrealistic model: many real-world waits do have memory (a server that’s been idle tends to receive a request soon).