Expon dist
EXPON.DIST Function¶
The EXPONDIST (or EXP.DIST in newer versions of Excel) function calculates values for the exponential distribution
, which is a continuous probability distribution used to model the time between events in a Poisson process. It is
commonly used when analyzing queuing systems, reliability, and survival analysis.
The exponential distribution is widely applied in scenarios where occurrences are independent and happen at a constant rate over time.
Key Features of EXPON.DIST:¶
- Computes probabilities or cumulative probabilities for an exponential distribution.
- Models time-dependent events, e.g., time between arrivals of customers or failure of equipment.
- Can be used in both probability density function (PDF) and cumulative distribution function (CDF) modes.
- Enables predictive analysis based on the rate of event occurrence.
Syntax:¶
- x: The value of the random variable (non-negative). It represents the point in time or interval being analyzed.
- lambda: The rate parameter (positive), equivalent to the reciprocal of the mean (1/mean).
- cumulative: Logical value indicating whether to calculate the CDF or PDF of the exponential distribution:
TRUE: Returns the cumulative distribution function (CDF), giving the probability that the event occurs within the given interval.FALSE: Returns the probability density function (PDF), evaluating the point probability density.
Examples:¶
-
=EXPON.DIST(2, 1.5, TRUE)
Calculates the cumulative probability that the event occurs within 2 units of time, given a rate (lambda) of 1.5.
Result: A number between 0 and 1 (e.g., 0.9502). -
=EXPON.DIST(1, 2, FALSE)
Computes the probability density atx = 1for an exponential distribution withlambda = 2.
Result: A positive number giving the point probability density (e.g., 0.2707). -
=EXPON.DIST(A1, 3.5, TRUE)
Calculates the cumulative distribution for the value in cellA1with a rate of 3.5.
Result: A value representing the probability up to the given point.
Notes:¶
- If
xis negative, the function returns an error (#NUM!). - If
lambda <= 0, the function also returns an error (#NUM!). - The result returned for
cumulative=TRUEis calculated as:
1 - EXP(-lambda * x)
This gives the probability that the event happens within the given interval. - When
cumulative=FALSE, the function evaluates the PDF as:
lambda * EXP(-lambda * x)
This provides the point probability density for the timex. - The function assumes the exponential distribution is appropriate for modeling time between independent random events.
Tip: Use the
EXPONDISTfunction in scenarios involving event intervals, such as predicting system downtime, time to next arrival in queuing theory, or reliability analysis. The rate parameter (lambda) is crucial and should represent the true rate of occurrences accurately for meaningful results.