probability distributions
Exponential Distribution
You should know: poisson distribution, continuous probability distributions
Overview
The exponential distribution models the waiting time between independent events that occur at a constant average rate λ — it is the continuous counterpart to the Poisson distribution, which counts the number of such events in a fixed interval. It is characterized by a single rate parameter λ > 0, and is famous for its 'memoryless' property: the probability of waiting an additional t units of time is the same regardless of how long you've already waited. Common applications include modeling the time until the next customer arrival, the lifetime of electronic components, or the time between radioactive decay events.
Intuition
If events (like bus arrivals) happen randomly at a constant average rate, the amount of time you wait for the next one follows an exponential distribution. The memoryless property means that if you've already waited 10 minutes with no bus, your expected additional wait time is exactly the same as if you'd just started waiting — the process has no 'memory' of elapsed time, which is a direct consequence of events occurring independently at a constant rate (the same assumption underlying the Poisson distribution).
Formal Definition
If X is the waiting time until the next event in a Poisson process with rate λ, X ~ Exponential(λ), with:
Worked Examples
Apply the mean formula for the exponential distribution.
Answer: The expected wait is 0.5 minutes (30 seconds).
Practice Problems
For X ~ Exponential(λ = 4), find the mean and variance.
For X ~ Exponential(λ = 0.5), find P(X ≤ 2).
A component has an exponentially distributed lifetime with mean 10 years (λ = 0.1). Given that it has already lasted 5 years, what is the probability it lasts at least 5 more years?
Quiz
Summary
- The exponential distribution models the waiting time between independent events occurring at a constant average rate λ.
- Its mean is 1/λ and variance is 1/λ²; its CDF is F(x) = 1 - e^{-λx}.
- It has the unique memoryless property: past elapsed waiting time gives no information about future waiting time.
Mathematics