Exponential Distribution
The exponential distribution is a continuous probability distribution that models the time between events in a Poisson process, where events occur continuously and independently at a constant average rate. It is the continuous counterpart of the geometric distribution and is widely used in reliability engineering, queueing theory, and survival analysis. The exponential distribution is the only continuous distribution with the memoryless property.
Formula
f(x) = λ · e^(-λx), for x ≥ 0
Mean (Expected Value)
1/λ
Variance
1/λ²
Parameters
The average rate at which events occur (events per unit time). Must be positive (λ > 0). The mean time between events is 1/λ. Some textbooks parameterize with β = 1/λ instead.
Key Properties
- •Memoryless property: P(X > s + t | X > s) = P(X > t). The probability of waiting an additional time t is independent of how long you have already waited.
- •The CDF has a simple closed form: F(x) = 1 - e^(-λx), which makes probability calculations straightforward
- •If events follow a Poisson process with rate λ, the waiting time between consecutive events is Exp(λ)
- •The minimum of independent exponential random variables is also exponential: if Xᵢ ~ Exp(λᵢ), then min(X₁, ..., X_n) ~ Exp(λ₁ + ... + λ_n)
- •The exponential distribution is a special case of the gamma distribution with shape parameter α = 1
- •It is the maximum entropy distribution for a given mean among all continuous distributions supported on [0, ∞)
Example
The time between arrivals at a bus stop follows an exponential distribution with an average of 12 minutes between buses. What is the probability that you wait more than 15 minutes for the next bus?
The rate is λ = 1/12 per minute (since mean = 1/λ = 12). P(X > 15) = 1 - F(15) = 1 - (1 - e^(-15/12)) = e^(-15/12) = e^(-1.25) ≈ 0.2865.
Result: P(X > 15) ≈ 0.2865, or about 28.65%
There is about a 28.65% chance of waiting more than 15 minutes for the next bus. Due to the memoryless property, this probability is the same regardless of how long you have already been waiting -- if you have been waiting 10 minutes, the probability of waiting at least 5 more minutes is still e^(-5/12) ≈ 0.659.
When to Use
- ✓When modeling the time between events in a Poisson process (time between customer arrivals, between radioactive decays, between equipment failures)
- ✓In reliability engineering to model the lifetime of components with a constant failure rate
- ✓When the memoryless property is appropriate -- the item does not age or degrade over time
- ✓As a building block for more complex models (the sum of n exponentials gives a gamma distribution)
Common Mistakes
- ✗Confusing the rate parameter λ with the mean. If the average time between events is 12 minutes, then λ = 1/12, not 12.
- ✗Applying the exponential distribution when the failure rate is not constant. For items that wear out over time (increasing failure rate), use the Weibull distribution instead.
- ✗Forgetting the memoryless property when solving conditional probability problems. Many students incorrectly think P(X > 20 | X > 10) should be less than P(X > 10).
- ✗Using the exponential distribution for total waiting time across multiple events. The sum of n independent Exp(λ) variables follows a Gamma(n, λ) distribution, not an exponential.
Need Help with Distribution Problems?
Snap a photo of any distribution problem for instant step-by-step solutions.
Download StatsIQFAQs
Common questions about Exponential Distribution
The memoryless property states that P(X > s + t | X > s) = P(X > t) for all s, t ≥ 0. In plain terms: if you have already waited s minutes without an event, the probability of waiting an additional t minutes is the same as the probability of waiting t minutes from the start. It is as if the process 'forgets' how long it has been running. This is both a mathematical feature and a modeling assumption. The exponential is the only continuous distribution with this property, making it appropriate for processes without aging or memory.
They are two sides of the same coin. If events occur according to a Poisson process with rate λ, then: (1) the number of events in a fixed time interval follows a Poisson(λt) distribution, and (2) the time between consecutive events follows an Exponential(λ) distribution. The Poisson counts events in a given time window (discrete), while the exponential measures the time until the next event (continuous). They share the same rate parameter λ.
The median is the value m where P(X ≤ m) = 0.5. Setting 1 - e^(-λm) = 0.5 and solving: e^(-λm) = 0.5, so λm = ln(2), giving m = ln(2)/λ ≈ 0.693/λ. Notice the median is always less than the mean (1/λ) because the exponential distribution is right-skewed. For example, if λ = 1/12, the mean is 12 minutes but the median is only about 8.32 minutes.