Exponential distribution
Exponential(rate)
Describes the distribution of times between successive independent events in a Poisson process with an average rate of r events per unit time. The rate r is the reciprocal of the mean of the Poisson distribution—the average number of events per unit time. Its standard deviation is also 1/r.
A model with exponentially distributed times between events is said to be Markov, implying that knowledge about when the next event occurs does not depend on the system's history or how much time has elapsed since the previous event. More general distributions such as the gamma or Weibull do not exhibit this property.
Density functions
The probability density of Exponential(rate)
for [math]\displaystyle{ x \geq 0 }[/math] is given by
p(x) = rate * Exp( -rate * x )
The cumulative density function (CDF) is given by
F(x) = 1 - Exp(- rate * x )
Over
Exponential(r,Over:I,J)
generates independent exponential distributions for each combination of elements in I and J.
Parameter Estimation
Suppose you have sampled historic data in X, indexed by I, with each measurement being a positive real number, and you want to estimate the parameter for the best-fit exponential distribution. The parameter can be estimated using:
- 1 / Mean(X,I)
Enable comment auto-refresher