EXPONDIST

Archived content. No warranty is made as to technical accuracy. Content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.

Returns the exponential distribution. Use EXPONDIST to model the time between events, such as how long an automated bank teller takes to deliver cash. For example, you can use EXPONDIST to determine the probability that the process takes at most 1 minute.

Syntax

EXPONDIST ( x , lambda , cumulative )

X is the value of the function.

Lambda is the parameter value.

Cumulative is a logical value that indicates which form of the exponential function to provide. If cumulative is TRUE, EXPONDIST returns the cumulative distribution function; if FALSE, it returns the probability density function.

Remarks

  • If x or lambda is nonnumeric, EXPONDIST returns the #VALUE! error value.

  • If x < 0, EXPONDIST returns the #NUM! error value.

  • If lambda 0, EXPONDIST returns the #NUM! error value.

  • The equation for the probability density function is:

    Cc767560.ZA060512671033(en-us,TechNet.10).gif

  • The equation for the cumulative distribution function is:

    Cc767560.ZA060512681033(en-us,TechNet.10).gif

Example 1

Formula

Description (Result)

=EXPONDIST(0.2,10,FALSE)

Probability exponential distribution function (1.353353)

Example 2

X

Lambda

Formula

Description (Result)

0.2

10

=EXPONDIST([X,][Lambda],TRUE)

Cumulative exponential distribution function (0.864665)