📘 Session 4.7 – Exponential Distribution

📖 What Is the Exponential Distribution?

The exponential distribution describes the amount of time we wait between random events that occur at a constant average rate. It is most commonly used to model the time until the next event in a Poisson process.

💡 When to Use It

📌 Common Examples

🧠 Key Properties

🧪 Interpretation Tip

If something happens on average 5 times per hour (λ = 5/hour), then the average time between events is 1/5 hour = 12 minutes.

🔁 Memoryless Property

The exponential distribution is unique because it has no memory. The chance of the next event occurring in the next x minutes is the same—no matter how long you’ve already waited.

Formula: P(X < t₁ + t₂ | X > t₁) = P(X < t₂)

🧮 What Is λ?

📦 In Summary

📌 Definition

The exponential distribution models the time between events in a Poisson process. Its probability density function (PDF) is:

f(x) = λ e−λx, for x ≥ 0

Mean: E(X) = 1/λ    Variance: Var(X) = 1/λ²

📈 Graph of Exponential Distributions

🧮 Probability Calculator (with shaded PDF)

Be consistent with units: if λ is per hour, x, a, b are hours.

🔍 Real Example – Computer Log-ons

Problem: Log-ons occur at a rate of 25 per hour. What is the probability of waiting more than 6 minutes (0.1 hour) for the next log-on?

🧠 Step-by-Step Explanation

✅ Key Concept Reminder

This uses the complement of the CDF (survival): P(X > x) = e−λx. The PDF is the curve’s height, not a probability by itself.

📘 Lack of Memory Property – Explained

Property: P(X < t₁+t₂ | X > t₁) = P(X < t₂)

🧪 Real-World Example (Geiger Counter)

This is why the exponential is called “memoryless.”

🎓 Practice – Wi-Fi Dropout Times

Scenario: On average, the Wi-Fi drops once every 20 minutes. What’s the probability it stays up for a 10-minute video?

📥 Excel Version (with full steps)

⬇️ Download: Exponential_Probability_Calculator.xlsx

Excel-style Formulas (live preview from inputs)

Units: If λ is per hour, then x, a, b must be in hours too (minutes ÷ 60, seconds ÷ 3600).
Quantity Excel formula (generic) With your numbers Value
Mean wait (1/λ) =1/lambda
Variance (1/λ²) =1/lambda^2
P(X > x) (survival)
=EXP(-lambda*x)
= 1 − (1 − EXP(−λx)) (shows complement step)
P(X ≤ x) (cdf) =1-EXP(-lambda*x)
P(a < X < b)
=EXP(-lambda*a)-EXP(-lambda*b)
= (1−EXP(−λb)) − (1−EXP(−λa))
Poisson link check: P(N(x)=0) =EXP(-lambda*x)
Cell-based versions (match the downloadable sheet)