Problem 1 — Discrete or Continuous? (Variants 0–4)
- Variant 0 (help-desk calls per shift): discrete — counts are whole numbers (0, 1, 2, …); you can’t receive 2.5 calls.
- Variant 1 (student height in cm): continuous — any value in an interval (170.314 cm…); rounding is a measurement choice, not a property.
- Variant 2 (defectives in a sample of 50): discrete — a whole number from 0 to 50.
- Variant 3 (waiting time in minutes): continuous — any non-negative real (2.371 minutes).
- Variant 4 (number of siblings): discrete — a whole number; you can’t have 1.5 siblings.
Problem 2 — Is This PMF Valid? (Variants 0–4)
- Variant 0 (
): not valid — sum . Fix: e.g. set . - Variant 1 (
): valid — non-negative, sum . A PMF need not be symmetric. - Variant 2 (
): not valid — . The sum is 1, but a negative probability is impossible; restructure entirely. - Variant 3 (
): valid — non-negative, sum . Outcomes need not be consecutive. - Variant 4 (
): not valid — sum . Negative outcome values ( ) are fine; the error is the sum. Fix: .
Problem 3 — Compute E(X) (Generator)
Common mistake: adding the outcome values without weighting by probability. Every term must include both
Problem 4 — Compute Var(X) and σ (Generator)
. — square each first, then weight. . .
Critical pitfall: