Previous Up Next

20.4.15  Exponential distribution

The probability density function for the exponential distribution.

The exponential distribution depends on one parameters, λ>0; the value of the density function at x ≥ 0 is exponential(λ,x)=λ e−λ x. The exponential or exponentiald command computes the exponential distribution.

Example

exponential(2.1,3.5)
     
0.00134944395675           
The cumulative distribution function for the exponential distribution.

The exponential_cdf (or exponentiald_cdf) command computes the cumulative distribution function for the exponential distribution.

Examples

exponential_cdf(2.3,3.2)
     
0.99936380154           
exponential_cdf(2.3,0.9,3.2)
     
0.125549583246           
The inverse distribution function for the exponential distribution.

The exponential_icdf (or exponentiald_icdf) command computes the inverse distribution for the exponential distribution.

Example

exponential_icdf(2.3,0.87)
     
0.887052534142           

Previous Up Next