The Exponential Distribution
The exponential distribution models the time you wait until some event happens: a light bulb burning out, the next customer walking in, or a machine breaking down. It's one of the most common continuous distributions you'll encounter, and its connection to the Poisson distribution makes it especially useful for real-world problems involving event rates.
Exponential Distribution Probability Calculations
The exponential distribution works well whenever you're measuring how long until something occurs, assuming events happen at a roughly constant rate.
The probability density function (PDF) is:
for
- (lambda) is the rate parameter, meaning the average number of events per unit time
- is the mathematical constant ≈ 2.71828
The cumulative distribution function (CDF) gives you the probability that the event occurs before time :
for
To find the probability that an event occurs in a specific time interval , subtract the CDF values:
The mean (expected waiting time) is , and the variance is . Notice these are both determined entirely by . If a store averages 3 customers per hour (), the expected time between arrivals is of an hour, or 20 minutes.
Quick example: Suppose light bulbs fail at a rate of per month. What's the probability a bulb lasts less than 6 months?
So there's about a 45% chance the bulb fails within 6 months.

Memoryless Property Applications
The memoryless property is what makes the exponential distribution unique among continuous distributions. It means the probability of waiting a certain additional amount of time doesn't depend on how long you've already waited.
Mathematically:
for non-negative and
Here's what that looks like in practice: say a car battery has an exponentially distributed lifespan. If it's already lasted 3 years, the probability it lasts at least 2 more years is the same as the probability a brand-new battery lasts at least 2 years. The battery doesn't "remember" that it's been running for 3 years.
This property makes the exponential distribution a good fit when the event rate stays constant over time, regardless of age or history. Some real-world examples:
- Call centers: The probability of a call arriving in the next 5 minutes is the same whether the last call came 2 minutes ago or 30 minutes ago.
- Device failures: For components that fail randomly (not from wear and tear), the chance of failure in the next hour stays constant.
Keep in mind that the memoryless property is an assumption. It works well for random failures but poorly for things that wear out gradually, like brake pads or tires.

Poisson vs. Exponential Distributions
These two distributions are two sides of the same coin. They both describe a Poisson process (events occurring randomly at a constant average rate), but they answer different questions.
- Poisson distribution (discrete): How many events occur in a fixed time period?
- Exponential distribution (continuous): How long between consecutive events?
If events occur at rate per unit time in a Poisson process:
- The number of events in a fixed time follows a Poisson distribution with parameter
- The time between consecutive events follows an exponential distribution with rate
Converting between the two is straightforward:
- If you know the average number of events per unit time (), the average time between events is
- If you know the average time between events (), the average event rate is
For example, if earthquakes strike a region at an average rate of 2 per year (Poisson with ), then the time between earthquakes follows an exponential distribution with a mean of year, or 6 months.
Poisson counts events in a fixed interval. Exponential measures the gap between events. Same process, different questions.