Using the Bayes setup above, P(disease|positive) ≈ ? — 0.16.P(disease|positive) = P(positive|disease)·P(disease)/P(positive) = 0.0095/0.059 ≈ 0.161 ≈ 16.1%.
Three coins are flipped. P(all heads | first coin is heads): — 1/4.Given first coin is heads, only second and third matter. P(HH) = (1/2)² = 1/4.
Events A and B are mutually exclusive. Can they be independent? — Only if P(A) = 0 or P(B) = 0.Mutually exclusive: P(A∩B) = 0. Independent requires P(A∩B) = P(A)·P(B). These match only if P(A) = 0 or P(B) = 0.
If P(A|B) = P(A|Bᶜ), then A and B are: — Independent.If P(A|B) = P(A|Bᶜ) = P(A), knowing B (or not-B) gives no info about A — that is independence.
A medical test is 90% sensitive and 80% specific. Sensitivity means: — P(positive | disease) = 0.9.Sensitivity = P(test positive | patient has disease) = true positive rate.
How many ways to assign gold, silver, bronze from 8 runners? — P(8,3) = 336.The medals are distinct (order matters): P(8, 3) = 8!/5! = 8·7·6 = 336.
A 5-digit PIN using digits 1–9 without repeats: how many PINs? — P(9,5) = 15120.Order matters (PIN order matters), no repeats: P(9, 5) = 9!/4! = 9·8·7·6·5 = 15120.
From 6 men and 4 women, how many 3-person committees with exactly 2 women? — C(4,2)·C(6,1) = 36.Choose 2 women from 4 and 1 man from 6: C(4,2) · C(6,1) = 6 · 6 = 36.
How many 6-character strings from {A, B, C, D} with repetition allowed? — 4⁶ = 4096.With repetition allowed, each of 6 positions can be any of 4 characters: 4⁶ = 4096.
A biased die lands on 6 with P = 0.5 and on 1–5 with equal probability. E(X) = ? — 4.0.P(each of 1–5) = 0.5/5 = 0.1. E(X) = (1+2+3+4+5)(0.1) + 6(0.5) = 1.5 + 3 = 4.5. Hmm: 0.1(1+2+3+4+5) = 0.1(15) = 1.5. 6(0.5) = 3. Total = 4.5. correctIndex: 2.
An insurance company charges $200 for coverage. Probability of claim = 0.01, average claim = $15,000. Company E(X) per policy = ? — $50.E(payout) = 15000(0.01) + 0(0.99) = $150. Premium charged = $200. E(profit) = $200 − $150 = $50.
A slot machine pays $50 with P = 0.01, $5 with P = 0.1, nothing with P = 0.89. Cost = $2. E(X) = ? — $−0.50.E(winnings) = 50(0.01) + 5(0.1) + 0(0.89) = 0.5 + 0.5 = $1.00. E(net) = 1.00 − 2.00 = −$1.00. Hmm that gives −1.00. correctIndex should be 2.
E(aX + b) = ? — a·E(X) + b.Linearity of expectation: E(aX + b) = a·E(X) + b.
E(X + Y) = E(X) + E(Y) is true: — Always, regardless of dependence.Linearity of expectation holds always: E(X + Y) = E(X) + E(Y). Independence is NOT required.
Var(X) = E(X²) − [E(X)]². If E(X) = 3 and E(X²) = 13, then Var(X) = ? — 4.Var(X) = 13 − 3² = 13 − 9 = 4.
For Bayes' Theorem, P(B) = P(B|A)·P(A) + P(B|Aᶜ)·P(Aᶜ) is called: — Law of total probability.This is the Law of Total Probability, used to compute the denominator in Bayes' Theorem.