Skip to content
Sahithyan's S3
Sahithyan's S3 — Applied Statistics

Exponential Distribution

Denoted as Exp(λ)\text{Exp}(\lambda).

P(x)=λexp(λx)    where x0,  λ>0P(x) = \lambda \exp(-\lambda x)\;\;\text{where }x \ge 0,\; \lambda \gt 0

Here λ\lambda is the rate parameter, which represents the mean number of events per unit time. Similar to the rate of failures or a rate of arrivals in Poisson distribution.

Can be thought of as an continuous analogue of the geometric distribution. Often used to model the length of time until an event occurs. Memoryless.

Events must be occurring continuously and independently. Used to model inter-arrival times between completely random events (arrivals/hour), service times (services/minute), lifetime of a product which fails catastrophically (failure rate).

Properties

Relation to Poisson Distribution

If XExp(λ)X\sim\text{Exp}(\lambda) then NPoisson(λ)N \sim \text{Poisson}(\lambda). Here XX is the time until the next event, and NN is the number of events that occur in a fixed interval of time. The parameter is same because they describe the same underlying process.

CDF

Fx(x)=λ0xeλydy=1eλxF_x(x) = \lambda \int_0^x e^{-\lambda y} \text{d}y = 1 - e^{-\lambda x}

Mean

μx=1λ\mu_x = \frac{1}{\lambda}

Variance

σx2=1λ2\sigma_x^2 = \frac{1}{\lambda^2}

Percentile

xp=1λln(1p100)x_{p} = \frac{-1}{\lambda} \ln \left( 1- \frac{p}{100} \right)

Moment Generating Function

Mx(t)=λλtM_x(t) = \frac{\lambda}{\lambda - t}

Theorem

XX has an exponential distribution iff:

  • XX is a positive continuous r.v. and
  • XX has memoryless property, that is P(X>s+tX>s)=P(X>t)  for all  s,t>0P(X>s+t | X>s) = P(X>t) \;\text{for all}\; s,t> 0.