What the Exponential Distribution Models
The exponential distribution models the waiting time between events in a process where events occur independently at a constant average rate. It is commonly used for arrivals, service times, reliability, and time-to-event calculations.
Here, λ is the rate parameter. If λ = 3 per hour, the expected waiting time is 1/3 hour.
Rate Parameter vs Mean Waiting Time
| Input type | Meaning | Relationship |
|---|---|---|
| Rate, λ | Expected number of events per unit time. | Mean = 1 / λ |
| Mean, μ | Average waiting time between events. | λ = 1 / μ |
Important Continuous Distribution Detail
For a continuous distribution, the probability of one exact value is zero:
That does not mean the PDF is useless. The PDF value f(x) is a density, not an exact probability. Actual probabilities are calculated over intervals, such as P(X ≤ x), P(X > x), or P(a ≤ X ≤ b).
Main Formulas
| Quantity | Formula | Meaning |
|---|---|---|
| f(x) = λe⁻λˣ | Density at x. | |
| CDF | F(x) = 1 − e⁻λˣ | Probability that X is at most x. |
| Survival | P(X > x) = e⁻λˣ | Probability that the waiting time exceeds x. |
| Between | P(a ≤ X ≤ b) = F(b) − F(a) | Probability over an interval. |
| Inverse CDF | x = −ln(1 − p) / λ | Value x for a cumulative probability p. |
Example: Customer Arrivals
Suppose customers arrive at an average rate of 3 per hour. The probability that the next customer arrives within 20 minutes is found with x = 1/3 hour.
λ = 3 per hour x = 1/3 hour P(X ≤ x) = 1 − e⁻λˣ P(X ≤ 1/3) = 1 − e⁻¹ P(X ≤ 1/3) ≈ 0.6321 So the probability is about 63.21%.
Mean, Variance, and Median
The exponential distribution has simple summary values:
Variance = 1 / λ²
Standard Deviation = 1 / λ
Median = ln(2) / λ
When This Distribution Makes Sense
- Events occur independently.
- The average event rate is constant.
- You are modeling waiting time until the next event.
- The process has the memoryless property.
Common Mistakes
- Calling the PDF value an exact probability.
- Mixing units, such as λ per hour with x in minutes.
- Using the exponential distribution when the event rate changes over time.
- Confusing the exponential distribution with the Poisson distribution.
- Entering the mean waiting time as λ without converting it.
Frequently Asked Questions
What is the exponential distribution used for?
It is used to model waiting times between events, such as time between arrivals, time until failure, or time until the next call.
What is the difference between exponential and Poisson distributions?
The Poisson distribution counts how many events occur in an interval. The exponential distribution models the waiting time between events.
Is P(X = x) the same as f(x)?
No. P(X = x) is zero for a continuous distribution. f(x) is a density value.
What does the memoryless property mean?
It means the remaining waiting time does not depend on how long you have already waited, assuming the process truly follows an exponential model.
Can lambda be zero?
No. The rate parameter λ must be positive.