Exponential Distribution#
Definition#
Definition 139 (Exponential Distribution (PDF))
\(X\) is a continuous random variable with an exponential distribution if the probability density function is given by:
where \(\lambda > 0\) is the rate parameter (rate of decay).
Some conventions:
We write \(X \sim \exponential(\lambda)\) to indicate that \(X\) has an exponential distribution with rate parameter \(\lambda\).
Remark 55 (Exponential Distribution (PDF))
When \(\lambda = 0\), we have,
This means that \(\pdf(0)\) will be more than 1 if \(\lambda > 0\) [Chan, 2021].
Definition 140 (Exponential Distribution (CDF))
If \(X\) is a continuous random variable with an exponential distribution with rate parameter \(\lambda\), then the CDF is given by integrating the PDF defined in Definition 139:
The PDF and CDF of two exponential distributions are shown below.
<>:19: SyntaxWarning: "\l" is an invalid escape sequence. Such sequences will not work in the future. Did you mean "\\l"? A raw string is also an option.
<>:20: SyntaxWarning: "\l" is an invalid escape sequence. Such sequences will not work in the future. Did you mean "\\l"? A raw string is also an option.
<>:19: SyntaxWarning: "\l" is an invalid escape sequence. Such sequences will not work in the future. Did you mean "\\l"? A raw string is also an option.
<>:20: SyntaxWarning: "\l" is an invalid escape sequence. Such sequences will not work in the future. Did you mean "\\l"? A raw string is also an option.
/tmp/ipykernel_4981/2726575731.py:19: SyntaxWarning: "\l" is an invalid escape sequence. Such sequences will not work in the future. Did you mean "\\l"? A raw string is also an option.
plot_continuous_pdf_and_cdf(X1, 0, 10, title="Exponential$(\lambda = 0.5)$")
/tmp/ipykernel_4981/2726575731.py:20: SyntaxWarning: "\l" is an invalid escape sequence. Such sequences will not work in the future. Did you mean "\\l"? A raw string is also an option.
plot_continuous_pdf_and_cdf(X2, 0, 10, title="Exponential$(\lambda = 2)$")
Expectation and Variance#
Theorem 33 (Expectation and Variance of Exponential Distribution)
If \(X\) is a continuous random variable with an exponential distribution with rate parameter \(\lambda\), then the expectation and variance are given by:
References and Further Readings#
Further readings is a must since Professor Chan give many intuition on how Exponential distribution is used in real life. He also showed how Exponential distribution is derived from the Poisson distribution.
Chan, Stanley H. “Chapter 4.5. Uniform and Exponential Random Variables.” In Introduction to Probability for Data Science, 205-211. Ann Arbor, Michigan: Michigan Publishing Services, 2021.
Pishro-Nik, Hossein. “Chapter 4.2.2. Exponential Distribution” In Introduction to Probability, Statistics, and Random Processes, 249-252. Kappa Research, 2014.