Geometric Probability Distribution: Complete Guide with Examples

What is Geometric Distribution?

The geometric probability distribution models the number of trials needed to achieve the first success in repeated independent trials. It answers: "What is the probability that the first success occurs on the \(x\)-th trial?" The random variable \(X\) represents the trial number of the first success, making this a fundamental discrete probability model.

Conditions for Geometric Distribution

  1. Independence: Trial outcomes don't affect each other
  2. Binary Outcomes: Each trial has success or failure (mutually exclusive)
  3. Constant Success Probability: Probability \(p\) remains unchanged
  4. Constant Failure Probability: Probability \(1-p\) remains unchanged

Geometric Distribution Formula

The probability that the first success occurs on trial \(x\) is:

\[ P(X = x) = (1-p)^{x-1} p \quad \text{for} \quad x = 1, 2, 3, \dots \]

Formula Derivation

For first success on trial \(x\):

Key Properties

Worked Examples with Solutions

Example 1: Coin Toss Problem

A fair coin is tossed repeatedly until the first tail appears.

  1. Find probability first tail appears on 5th toss
  2. Calculate mean and standard deviation
  3. Plot distribution for first 10 trials

Solution

  1. Success = tail, \(p = 0.5\): \[ P(X = 5) = (0.5)^{4} \times 0.5 = \frac{1}{32} = 0.03125 \]
  2. Mean: \(\mu = \frac{1}{0.5} = 2\)
    Standard deviation: \(\sigma = \sqrt{\frac{0.5}{0.25}} = \sqrt{2} \approx 1.41\)
  3. Distribution: \(P(X = x) = 0.5^x\) for \(x = 1\) to \(10\)
    Geometric distribution for p=0.5 showing exponential decay
    Sum of first 10 probabilities: \(\sum_{x=1}^{10} P(X=x) \approx 0.999\)

Example 2: Population Sampling

45% of adults have post-secondary degrees. People are randomly selected.

  1. Probability third person is first with degree?
  2. Probability first degree-holder found by 4th selection?

Solution

  1. Success = has degree, \(p = 0.45\): \[ P(X = 3) = (0.55)^2 \times 0.45 \approx 0.1361 \]
  2. Use cumulative probability: \[ \begin{aligned} P(X \le 4) &= P(X=1) + P(X=2) + P(X=3) + P(X=4) \\ &= 0.45 + 0.2475 + 0.1361 + 0.0749 \\ &\approx 0.9085 \end{aligned} \]

Cumulative Probability Formulas

Using geometric series, we derive efficient formulas:

Example 3: Deriving Cumulative Formulas

For a geometric distribution with success probability \(p\), derive formulas for:

  1. \(P(X \le n)\)
  2. \(P(X < n)\)
  3. \(P(X \ge n)\)
  4. \(P(X > n)\)

Solution

  1. \(P(X \le n) = \sum_{x=1}^{n} p(1-p)^{x-1} = \frac{p(1 - (1-p)^n)}{1-(1-p)} = 1 - (1-p)^n\)
  2. \(P(X < n) = P(X \le n-1) = 1 - (1-p)^{n-1}\)
  3. \(P(X \ge n) = 1 - P(X < n) = 1 - [1 - (1-p)^{n-1}] = (1-p)^{n-1}\)
  4. \(P(X > n) = 1 - P(X \le n) = 1 - [1 - (1-p)^n] = (1-p)^n\)

Example 4: Quality Control Application

A company produces tools where 99% are non-defective. Tools are randomly tested.

  1. Probability the second tool is the first non-defective?
  2. Probability first non-defective found by second test?
  3. Probability first non-defective found after 10 tests?

Solution

Success = non-defective, \(p = 0.99\)

  1. \(P(X = 2) = (0.01)^1 \times 0.99 = 0.0099\)
  2. Using cumulative formula: \(P(X \le 2) = 1 - (0.01)^2 = 0.9999\)
  3. Using complement formula: \(P(X > 10) = (0.01)^{10} = 10^{-20} \approx 0\)

Key Takeaways

Related Topics