Distributions and Statistical Models
Calculate probabilities related to the number of trials required for the first success in a series of Bernoulli trials.
Explore some real-world scenarios to understand how the geometric distribution works.
A basketball player has a 75% chance of making a free throw. What is the probability that they make their first successful shot on their 3rd attempt?
p: 0.75, k: 3
Type: P(X = k) - Probability of first success on the k-th trial.
The probability of a manufactured item being defective is 5%. What is the probability that the first defective item is found within the first 10 items inspected?
p: 0.05, k: 10
Type: P(X ≤ k) - Probability of first success on or before the k-th trial.
You are rolling a fair six-sided die. What is the probability that you need more than 4 rolls to get your first six?
p: 0.1667, k: 4
Type: P(X > k) - Probability of first success after the k-th trial.
An email campaign has a 20% click-through rate. What's the probability the first click occurs on the 5th email sent or later?
p: 0.20, k: 5
Type: P(X ≥ k) - Probability of first success on or after the k-th trial.