Mathwords logoMathwords

Exponential Distribution — Definition, Formula & Examples

The exponential distribution is a continuous probability distribution that models the time (or distance) between consecutive events in a Poisson process. It describes how long you wait until the next event occurs, such as the next customer arrival or the next machine failure.

A continuous random variable XX follows an exponential distribution with rate parameter λ>0\lambda > 0 if its probability density function is f(x)=λeλxf(x) = \lambda e^{-\lambda x} for x0x \geq 0. The distribution has mean 1/λ1/\lambda and variance 1/λ21/\lambda^2, and it is the only continuous distribution with the memoryless property: P(X>s+tX>s)=P(X>t)P(X > s + t \mid X > s) = P(X > t).

Key Formula

f(x)=λeλx,x0f(x) = \lambda e^{-\lambda x}, \quad x \geq 0
Where:
  • λ\lambda = Rate parameter (average number of events per unit time), must be positive
  • xx = Time (or distance) between events
  • ee = Euler's number, approximately 2.71828

How It Works

The exponential distribution is defined by a single parameter λ\lambda, the average rate of events per unit time. If events occur at a rate of λ\lambda per unit time, the average waiting time between events is 1/λ1/\lambda. To find the probability of waiting more than tt units, use the survival function P(X>t)=eλtP(X > t) = e^{-\lambda t}. To find the probability of waiting less than tt units, use the CDF: P(Xt)=1eλtP(X \leq t) = 1 - e^{-\lambda t}. The memoryless property means that no matter how long you have already waited, the probability distribution of the remaining wait time is the same.

Worked Example

Problem: A help desk receives an average of 3 calls per hour. What is the probability that the next call arrives within 10 minutes?
Identify the rate parameter: The rate is 3 calls per hour. Since we want the answer in minutes, convert: λ = 3/60 = 0.05 calls per minute.
λ=360=0.05\lambda = \frac{3}{60} = 0.05
Apply the CDF: Use the cumulative distribution function to find P(X ≤ 10).
P(X10)=1eλt=1e0.05×10P(X \leq 10) = 1 - e^{-\lambda t} = 1 - e^{-0.05 \times 10}
Calculate: Evaluate the exponential term.
P(X10)=1e0.5=10.6065=0.3935P(X \leq 10) = 1 - e^{-0.5} = 1 - 0.6065 = 0.3935
Answer: There is approximately a 39.35% probability that the next call arrives within 10 minutes.

Why It Matters

The exponential distribution is essential in reliability engineering for modeling component lifetimes and failure rates. It appears in queueing theory to model service times and inter-arrival times, making it critical for operations research and telecommunications network design.

Common Mistakes

Mistake: Confusing the rate parameter λ with the mean. Students sometimes plug the mean waiting time directly in as λ.
Correction: The mean of an exponential distribution is 1/λ, not λ. If the average wait is 20 minutes, then λ = 1/20 = 0.05 per minute.