Difference between revisions of "Exponential distribution"

(Power Law Distribution)
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[[Category:Distribution Functions]]
+
[[category:Continuous distributions]]
[[Category:Doc Status D]] <!-- For Lumina use, do not change -->
+
[[category:Semi-bounded distributions]]
 +
[[category:Unimodal distributions]]
 +
[[category:Univariate distributions]]
  
== Exponential(r) ==
+
The [[Exponential distribution]] is a [[:category:Continuous distributions|continuous]] [[:category:Semi-bounded distributions|positive-only]], [[:category:Univariate distributions|univariate]] distribution that  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''.
 
 
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
 
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
 
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.
+
distributions such as the [[gamma]] or [[Weibull]] do not exhibit this property.
 +
 
 +
<center>[[image:Exponential(1_2).png]]</center>
 +
 
 +
== Functions ==
 +
=== Exponential( rate'', over'' ) ===
 +
The distribution function. Use this function to describe a quantity that has an exponential distribution.
 +
 
 +
To describe independent variables over one or more indexes, list the indexes in the «over» parameter. For example,
 +
:<code>Exponential( r, over: Region, Technology )</code>
 +
 
 +
=== <div id="DensExponential">Dens{{Release||5.1|_}}Exponential( x, rate )</div> ===
 +
{{Release||5.1|To use this, you need to add the [[Distribution Densities Library]] to your model. }}
 +
 
 +
The analytic probability density at «x», given by
 +
:<math>p(x) = r e^{-rx}</math>
 +
 
 +
=== <div id="CumExponential">CumExponential(x, rate )</div> ===
 +
The analytic cumulative probability at «x», which returns the probability that an exponentially-distributed quantity with rate «rate» is less than or equal to «x».  This is equal to
 +
:<math>F(x) = 1 - e^{-r x}</math>
 +
 
 +
=== <div id="CumExponentialInv">CumExponentialInv(p, rate )</div> ===
 +
The inverse cumulative probability function (quantile function), given the value x where the probability of the value being less than or equal to x is «p».  This is equal to
 +
:<math>F^{-1}(p) = {1\over r} \ln(1-p)</math>
 +
 
  
 
==  Density functions ==
 
==  Density functions ==
Line 19: Line 41:
 
:<code>F(x) = 1 - Exp(-r*x)</code>
 
:<code>F(x) = 1 - Exp(-r*x)</code>
  
==Optional parameters==
+
== Statistics ==
=== Over ===
+
The theoretical statistics (i.e., in the absence of sampling error) for the exponential with a «rate» r are as follows.
:[[Exponential]](r, Over: I, J)
+
* [[Mean]] = 1/r
generates independent exponential distributions for each combination of elements in <code>I</code> and <code>J</code>.
+
* Mode = 0
 +
* [[Median]] = [[Ln]](2) / r
 +
* [[SDeviation]] = 1/r
 +
* [[Variance]] = <math>1 / r^2</math>
 +
* [[Skewness]] = 2
 +
* [[Kurtosis]] = 6
  
 
== Parameter Estimation ==
 
== Parameter Estimation ==
Line 35: Line 62:
 
* [[Gamma]]
 
* [[Gamma]]
 
* [[Mean]]
 
* [[Mean]]
 +
* [[Power Law Distribution]]
 +
* [[Parametric continuous distributions]]

Latest revision as of 16:31, 9 October 2020


The Exponential distribution is a continuous positive-only, univariate distribution that 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.

Exponential(1 2).png

Functions

Exponential( rate, over )

The distribution function. Use this function to describe a quantity that has an exponential distribution.

To describe independent variables over one or more indexes, list the indexes in the «over» parameter. For example,

Exponential( r, over: Region, Technology )

Dens_Exponential( x, rate )

To use this, you need to add the Distribution Densities Library to your model.

The analytic probability density at «x», given by

[math]\displaystyle{ p(x) = r e^{-rx} }[/math]

CumExponential(x, rate )

The analytic cumulative probability at «x», which returns the probability that an exponentially-distributed quantity with rate «rate» is less than or equal to «x». This is equal to

[math]\displaystyle{ F(x) = 1 - e^{-r x} }[/math]

CumExponentialInv(p, rate )

The inverse cumulative probability function (quantile function), given the value x where the probability of the value being less than or equal to x is «p». This is equal to

[math]\displaystyle{ F^{-1}(p) = {1\over r} \ln(1-p) }[/math]


Density functions

The probability density of Exponential(r) for [math]\displaystyle{ x \geq 0 }[/math] is given by

p(x) = r*Exp(-r*x)

The cumulative density function (CDF) is given by

F(x) = 1 - Exp(-r*x)

Statistics

The theoretical statistics (i.e., in the absence of sampling error) for the exponential with a «rate» r are as follows.

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)

See Also

Comments


You are not allowed to post comments.