Motivation
The exponential distribution models the time until an event occurs when events happen:
- Continuously over time
- At a constant average rate
- Independently of past history
Examples:
- Time until radioactive decay
- Time until customer arrives
- Lifetime of a component
- Time between earthquakes (if Poisson process)
Definition
X∼Exp(λ) has PDF:
f(x)=λe−λx,x≥0
where λ>0 is the rate parameter.
Range
X∈[0,∞)
CDF
F(x)=1−e−λx,x≥0
Survival Function
P(X>x)=e−λx
Expectation and Variance
E[X]=λ1
Interpretation: If events occur at rate λ per unit time, average wait time is 1/λ.
Var(X)=λ21
σX=λ1=E[X]
For exponential, mean equals standard deviation.
Memoryless Property
The exponential is the only continuous memoryless distribution:
P(X>s+t∣X>s)=P(X>t)
Interpretation: If a component has survived s time units, its remaining lifetime distribution is the same as a new component.
Proof
P(X>s+t∣X>s)=P(X>s)P(X>s+t)=e−λse−λ(s+t)=e−λt=P(X>t)
Practical Meaning
A lightbulb with exponential lifetime has no “aging.” A 10-year-old bulb (that still works) is as good as new. This is reasonable for some random failures but not for wear-out failures.
Quantiles
For X∼Exp(λ):
P(X≤xp)=1−e−λxp=p
xp=−λln(1−p)
Median:
x0.5=λln2≈λ0.693
Note: median < mean since the distribution is right-skewed.
Relation to Poisson
If events occur as a Poisson process with rate λ:
- Number of events in time t ~ Poisson(λt)
- Time until first event ~ Exp(λ)
- Time until kth event ~ Gamma(k,λ)
Example
Customers arrive at rate 2 per minute. Time until first customer:
X∼Exp(λ=2)
E[X]=21=0.5 minutes
P(X>1)=e−2⋅1=e−2≈0.135
Minimum of Exponentials
If X1,…,Xn are independent with Xi∼Exp(λi), then:
min(X1,…,Xn)∼Exp(∑i=1nλi)
Intuition: If n independent processes are running, and we wait for the first to “fire,” the minimum follows exponential with combined rate.
Example: Competing Risks
A system has two failure modes, with failure rates λ1=0.01/hour and λ2=0.02/hour. Time to failure:
min(X1,X2)∼Exp(0.03)
E[failure time]=0.031≈33.3 hours
Visualisation
The exponential PDF starts at λ and decays toward 0. It is always decreasing (no mode except at 0).

Summary
| Property | Value |
|---|
| PDF | f(x)=λe−λx, x≥0 |
| CDF | F(x)=1−e−λx |
| Mean | λ1 |
| Variance | λ21 |
| Median | λln2 |
| Memoryless | P(X>s+t∣X>s)=P(X>t) |