Nate's Notes

Collection of notes for various classes I've taken.

Buy Me A Coffee

October 15

Exponential Distribution

A continuous probability distribution that models the time between consecutive events in a Poisson process (where events occur at a constant average rate). It is commonly used to model waiting times or lifespans of electronic components.

Key Formulas

Probability Density Function (PDF)

Defines the relative likelihood for the waiting time to be equal to $x$.

\[f(x) = \lambda e^{-\lambda x} \quad \text{for } x \ge 0\]

Cumulative Distribution Function (CDF)

Gives the probability that the event occurs before or at some time $x$. This is most commonly used for calculations.

\[F(x) = P(X \le x) = 1 - e^{-\lambda x} \quad \text{for } x \ge 0\]

Mean and Variance

Important Note: Notice that the mean and the standard deviation are equal. Also, be careful with the parameter. Sometimes, the exponential distribution is parameterized using the mean ($\mu$ or $\beta$) instead of the rate ($\lambda$). In that case, $\lambda = 1/\mu$, and the formulas change accordingly. We will use the rate parameter $\lambda$.

The Memoryless Property

This is the most defining characteristic of the exponential distribution. It states that the probability of an event occurring in the future is independent of how long we have already waited.

Finding Probabilities

We almost always use the CDF to find probabilities.

Examples

Problem: On average, a customer arrives at a coffee shop every 2 minutes. The time between arrivals follows an exponential distribution.

First, find the rate parameter $\lambda$.

1. What is the probability that the next customer arrives within 1 minute?

2. What is the probability that we must wait more than 5 minutes for the next customer?

3. What is the probability the next customer arrives between 1 and 3 minutes?