Exponential Distribution Calculator
Reviewed by CalcMulti Editorial Team·Last updated: ·← Statistics Hub
The exponential distribution models the time between events in a Poisson process — such as the time until the next customer arrives, server failure, radioactive decay, or call centre call. It is the only continuous distribution with the memoryless property: P(X > s+t | X > s) = P(X > t).
Enter the rate parameter λ (events per unit time) or the mean (1/λ), and optionally an x value to compute probabilities. The calculator returns the PDF, CDF, survival function, and a percentile table.
Formula
PDF: f(x) = λe^(−λx) CDF: F(x) = 1 − e^(−λx) for x ≥ 0
- λ
- rate parameter (λ > 0) — events per unit time
- 1/λ
- mean (expected time between events)
- x
- time (x ≥ 0)
- F(x)
- P(X ≤ x) — probability event occurs by time x
- 1 − F(x)
- P(X > x) — survival/reliability function
Distribution Parameters
λ = 0.5 means average 2 units between events
Exponential Distribution Key Properties
| Property | Formula | Example (λ = 2) |
|---|---|---|
| Mean | 1 / λ | 0.5 |
| Median | ln(2) / λ ≈ 0.693/λ | 0.347 |
| Variance | 1 / λ² | 0.25 |
| Std Dev | 1 / λ | 0.5 |
| Mode | 0 | 0 |
| Skewness | 2 (always) | 2 |
| Excess kurtosis | 6 (always) | 6 |
| P(X ≤ median) | 0.5 (by definition) | 0.5 |
| P(X ≤ mean) | 1 − e⁻¹ ≈ 0.632 | 0.632 |
Real-World Applications of the Exponential Distribution
| Field | X represents | Typical λ |
|---|---|---|
| Reliability | Time until component failure | 0.001 failures/hour |
| Queuing | Time between customer arrivals | 5 arrivals/hour |
| Telecoms | Duration of a phone call | 0.1 calls end/minute |
| Finance | Time between large market moves | Varies by volatility |
| Biology | Time between mutations | Extremely low |
| Nuclear | Time between radioactive decay events | Proportional to half-life |
The Memoryless Property Explained
If a machine has been running for 100 hours without failure, the probability it survives another 50 hours is exactly the same as for a brand-new machine. Mathematically: P(X > 150 | X > 100) = P(X > 50).
This makes the exponential distribution suitable for systems that do not "age" or "wear out" — where the failure rate is constant over time. For systems that do degrade with age, use the Weibull distribution instead (exponential is a special case with Weibull shape parameter = 1).
Related Calculators
Number of events in a fixed interval
Normal Distribution CalculatorContinuous distribution for symmetric data
Geometric Distribution CalculatorDiscrete waiting-time distribution
Binomial CalculatorNumber of successes in n trials
Normality Test CalculatorTest if data is normally distributed
Statistics HubAll statistics calculators
Disclaimer
For educational and exploratory use only. Verify that the exponential distribution is appropriate for your data before applying this model.