GP1 — Discrete or Continuous? (Variants 0–4)
Variant 0 — Number of phone calls a help-desk agent receives in a one-hour shift:
Answer: Discrete. You can count calls as whole numbers (0, 1, 2, 3, …). You cannot receive 2.5 calls. The arrival time of each call is continuous, but the count of calls is always a whole number.
Variant 1 — Height (in centimetres) of a randomly chosen student:
Answer: Continuous. Height can take any value in an interval (e.g., 170.3 cm, 170.31 cm, 170.314 cm, …). Rounding to the nearest centimetre is a measurement choice, not a property of the variable itself.
Variant 2 — Number of defective items in a quality-control sample of 50 products:
Answer: Discrete. The count of defectives is a whole number between 0 and 50. We are counting, not measuring on a continuous scale.
Variant 3 — Time (in minutes) a customer waits in line at a coffee shop:
Answer: Continuous. Waiting time can be any non-negative real number (e.g., 2.37 minutes). Time flows continuously — 2.37 minutes is a perfectly valid waiting time, as is 2.371 minutes.
Variant 4 — Number of siblings a randomly chosen person has:
Answer: Discrete. Sibling count is a whole number (0, 1, 2, 3, …). You cannot have 1.5 siblings. Regardless of how family size varies across the population, each individual's count is a whole number.
GP2 — Is This PMF Valid? (Variants 0–4)
Variant 0 — PMF: \( x \in \{1, 2, 3, 4\} \), \( P = \{0.25, 0.35, 0.30, 0.15\} \):
Answer: Not valid. Sum = \( 0.25 + 0.35 + 0.30 + 0.15 = 1.05 \neq 1 \). All non-negativity conditions hold, but the sum exceeds 1.
Fix: Reduce one probability so the total equals 1.00. For example, set \( P(X = 4) = 0.10 \): new sum = \( 0.25 + 0.35 + 0.30 + 0.10 = 1.00 \) ✓.
Variant 1 — PMF: \( x \in \{0, 1, 2, 3\} \), \( P = \{0.40, 0.30, 0.20, 0.10\} \):
Answer: Valid. All probabilities are non-negative ✓. Sum = \( 0.40 + 0.30 + 0.20 + 0.10 = 1.00 \) ✓. A PMF does not need to be symmetric or have equal probabilities — decreasing probabilities are perfectly acceptable.
Variant 2 — PMF: \( x \in \{1, 2, 3\} \), \( P = \{0.50, 0.60, -0.10\} \):
Answer: Not valid. \( P(X = 3) = -0.10 < 0 \), which violates the first PMF condition (all probabilities must be non-negative). Note: the sum \( 0.50 + 0.60 - 0.10 = 1.00 \) does equal 1, but that does not fix the negative probability.
Fix: A negative probability is impossible — the distribution must be completely restructured with non-negative values that sum to 1.
Variant 3 — PMF: \( x \in \{2, 4, 6, 8\} \), \( P = \{0.15, 0.35, 0.35, 0.15\} \):
Answer: Valid. All probabilities are non-negative ✓. Sum = \( 0.15 + 0.35 + 0.35 + 0.15 = 1.00 \) ✓. Outcomes do not need to be consecutive integers — skipping odd numbers is perfectly fine. There is also no minimum number of outcomes required.
Variant 4 — PMF: \( x \in \{-1, 0, 1, 2\} \), \( P = \{0.20, 0.30, 0.30, ?\} \) with claimed \( P(X = 2) = 0.25 \):
Answer: Not valid. Sum = \( 0.20 + 0.30 + 0.30 + 0.25 = 1.05 \neq 1 \). Note: negative outcome values are allowed — the error is the sum exceeding 1, not the value \( x = -1 \).
Fix: \( P(X = 2) = 1 - (0.20 + 0.30 + 0.30) = 0.20 \). With \( P(X = 2) = 0.20 \), the sum is exactly 1.00 ✓.
GP3 — Compute E(X) (Generator)
Solutions vary by generated PMF. The strategy is always the same:
\[ E(X) = \sum_{\text{all } x} x \cdot P(X = x) \]Multiply each outcome \( x \) by its probability \( P(X = x) \) and sum all terms. Refer to Worked Example 2 in Section 4 for a complete worked example with narration.
Common mistake: Adding the outcome values without weighting by probability. Every term in the sum must include both \( x \) and \( P(X = x) \).
GP4 — Compute Var(X) and σX (Generator)
Solutions vary by generated PMF. Use the four-step workflow:
- Step 1: \( E(X) = \sum x \cdot P(X = x) \)
- Step 2: \( E(X^2) = \sum x^2 \cdot P(X = x) \) — square each \( x \) value first, then weight
- Step 3: \( \text{Var}(X) = E(X^2) - [E(X)]^2 \)
- Step 4: \( \sigma_X = \sqrt{\text{Var}(X)} \)
Refer to Worked Example 3 in Section 4 for a complete worked example.
Critical pitfall: \( E(X^2) \neq [E(X)]^2 \). You must square each \( x \) value individually before multiplying by its probability. Computing \( [E(X)]^2 \) instead of \( E(X^2) \) gives \( \text{Var}(X) = 0 \), which is almost always wrong.