Geometric Distribution

Probability
structure

Also known as: waiting time distribution, Geom(p)

Grade 9-12

View on concept map

The probability distribution for the number of independent Bernoulli trials needed to get the first success, where each trial has success probability p. Models real situations like number of sales calls until a sale, number of attempts until passing an exam, or how many parts you inspect before finding a defective one.

Definition

The probability distribution for the number of independent Bernoulli trials needed to get the first success, where each trial has success probability p.

πŸ’‘ Intuition

How many times do you have to roll a die before you get a 6? The geometric distribution answers this kind of question. Each trial is independent, and you keep going until you succeed. Most of the time it doesn't take too long, but occasionally you have an unlucky streakβ€”that's why the distribution has a long right tail.

🎯 Core Idea

The geometric distribution is memoryless: no matter how many failures so far, the probability of success on the next trial is still p. The expected number of trials until first success is \frac{1}{p}.

Example

Probability of getting first heads on the 4th flip of a fair coin: P(X = 4) = (1 - 0.5)^{4-1} \cdot 0.5 = (0.5)^3 \cdot 0.5 = 0.0625

Formula

P(X = k) = (1 - p)^{k-1} \cdot p, \quad k = 1, 2, 3, \ldots

Notation

X \sim \text{Geom}(p). Mean: E(X) = \frac{1}{p}. Standard deviation: \sigma = \frac{\sqrt{1-p}}{p}.

🌟 Why It Matters

Models real situations like number of sales calls until a sale, number of attempts until passing an exam, or how many parts you inspect before finding a defective one.

Formal View

P(X = k) = (1-p)^{k-1} p for k = 1, 2, 3, \ldots; E(X) = \frac{1}{p}, \text{Var}(X) = \frac{1-p}{p^2}

🚧 Common Stuck Point

Students confuse geometric (trials until FIRST success) with binomial (number of successes in FIXED trials). Also watch out: some textbooks define X as the number of failures before the first success, shifting the formula.

⚠️ Common Mistakes

  • Using the binomial formula when the number of trials is not fixedβ€”if you're counting trials until the first success, use geometric.
  • Forgetting the memoryless property: 'I've failed 10 times, so I'm due for a success' is the gambler's fallacy.
  • Mixing up the two conventions: P(X = k) = (1-p)^{k-1}p (trials until first success, k \geq 1) vs P(Y = k) = (1-p)^k p (failures before first success, k \geq 0).

Frequently Asked Questions

What is Geometric Distribution in Math?

The probability distribution for the number of independent Bernoulli trials needed to get the first success, where each trial has success probability p.

Why is Geometric Distribution important?

Models real situations like number of sales calls until a sale, number of attempts until passing an exam, or how many parts you inspect before finding a defective one.

What do students usually get wrong about Geometric Distribution?

Students confuse geometric (trials until FIRST success) with binomial (number of successes in FIXED trials). Also watch out: some textbooks define X as the number of failures before the first success, shifting the formula.

What should I learn before Geometric Distribution?

Before studying Geometric Distribution, you should understand: binomial distribution, independent events, expected value.

How Geometric Distribution Connects to Other Ideas

To understand geometric distribution, you should first be comfortable with binomial distribution, independent events and expected value.