Probability Distributions — Diagnostic Tests
Unit Tests
Tests edge cases, boundary conditions, and common misconceptions for probability distributions.
UT-1: Binomial Distribution — Verification of Conditions
Question:
A student claims that the number of heads in 20 coin tosses follows a binomial distribution with and .
A second student claims that the number of sixes in 60 rolls of a fair die follows a binomial distribution with and .
(a) Verify the conditions for the binomial distribution for each scenario.
(b) For the coin toss scenario, find and explain why this is the mode.
(c) A third student claims the number of hearts drawn from a standard deck (with replacement, 20 draws) follows a binomial distribution with and . Is this correct?
[Difficulty: hard. Tests verification of binomial conditions, mode identification, and a tricky case with card draws.]
Solution:
(a) For the coin tosses:
- Fixed number of trials: . (Yes)
- Independent trials: coin tosses are independent. (Yes)
- Two outcomes per trial: heads or tails. (Yes)
The claim is correct.
For the die rolls:
- Fixed number of trials: . (Yes)
- Independent rolls: die rolls are independent. (Yes)
- Two outcomes per trial: six or not-six. (Yes)
The claim is correct.
(b) For :
The mode of a binomial distribution is . Here , confirming is the mode.
(c) The conditions are:
- Fixed draws. (Yes)
- Independent draws with replacement. (Yes)
- Two outcomes: heart or not-heart. (Yes)
The claim is correct. .
UT-2: Normal Distribution — Sign Error in Standardisation
Question:
The heights of men in a population follow .
(a) Find the probability that a randomly selected man is taller than .
(b) A student computes and looks up . A second student claims the answer should be . Who is correct?
[Difficulty: hard. Tests the common sign error in normal distribution problems.]
Solution:
(a) Standardising:
From standard normal tables: .
(b) The second student is correct. The student who got looked up , which gives the probability of being shorter than , not taller. The question asks for , so the answer is .
UT-3: Poisson Approximation to Binomial
Question:
A call centre receives an average of 2 calls per minute. Find the probability of receiving exactly 5 calls in a one-minute period using the Poisson approximation to the binomial distribution.
A student claims this follows directly without justification.
(a) Explain what assumptions must be verified.
(b) Compute the probability and compare it with the exact binomial probability if , .
[Difficulty: hard. Tests the conditions for Poisson approximation and comparison with exact binomial.]
Solution:
(a) For the Poisson approximation to the binomial, we need:
- is large (typically ).
- is small (typically ).
- is moderate (typically ).
For the call centre, if we model each second as a Bernoulli trial with and , then . The conditions are satisfied since , , and .
However, the student's claim that this is "directly " is incomplete — the Poisson is an approximation that must be justified.
(b) With :
Poisson: .
Exact binomial: .
Poisson: .
The approximation is very close, with relative error less than .
Integration Tests
Tests synthesis of probability distributions with other topics.
IT-1: Linear Combination of Normal Random Variables (with Number and Algebra)
Question:
The weights of apples from orchard follow and from orchard follow . A bag contains 3 apples from orchard and 2 apples from orchard .
(a) Find the probability that the total weight of the bag exceeds .
(b) A student claims that since the apples are independent, the total weight is simply and the probability of exceeding is since is close to the mean. Explain why this reasoning is wrong.
[Difficulty: hard. Combines linear combinations of normal distributions with probability calculations.]
Solution:
(a) Let for and for .
Total weight: .
Since the apples are independent:
(b) The student's error is confusing the mean with the distribution. While the mean total weight is indeed , the total weight is a random variable with spread (standard deviation ). The probability of exceeding is not — it is approximately . The student failed to account for the variance of the sum. The probability is only at the mean (), not at .