Drawing cards without replacement makes successive draws: — Dependent.Without replacement, the sample space changes after each draw, making the events dependent.
If A and B are independent, P(A|B) = ? — P(A).Independence means knowledge of B doesn't change P(A). So P(A|B) = P(A).
From a class of 10 boys, 15 girls: P(boy | student selected) = ? — 2/5.P(boy) = 10/25 = 2/5. (No condition changes this since we are selecting from the whole class.)
A permutation is: — An ordered arrangement.A permutation is an ordered arrangement. The order matters — ABC ≠ BAC.
A combination is: — An unordered selection.A combination is an unordered selection. The order does not matter — ABC = BAC = CAB.
5! = ? — 120.5! = 5 × 4 × 3 × 2 × 1 = 120.
0! = ? — 1.0! = 1 by convention. This ensures combinatorial formulas work for edge cases.
P(n, r) = ? — n!/(n−r)!.P(n, r) = n!/(n−r)!. This counts ordered arrangements of r items from n.
C(n, r) = ? — n!/(r!(n−r)!).C(n, r) = n!/(r!(n−r)!). The r! in the denominator removes order.
C(10, 0) = ? — 1.C(n, 0) = n!/(0!·n!) = 1. There is exactly one way to choose nothing.
C(7, 7) = ? — 1.C(n, n) = 1. There is exactly one way to choose all n items.
How many subsets of size 2 does the set {1, 2, 3, 4, 5} have? — 10.C(5, 2) = 5!/(2!·3!) = 10. Each subset is an unordered pair.
Expected value E(X) is: — The probability-weighted average of all outcomes.E(X) = Σ xᵢ·P(xᵢ). It is the long-run average outcome weighted by probability.
A fair coin pays $2 for heads and −$1 for tails. E(X) = ? — $0.50.E(X) = 2·(1/2) + (−1)·(1/2) = 1 − 0.5 = $0.50.
E(X) for a fair 6-sided die: — 3.5.E(X) = (1+2+3+4+5+6)/6 = 21/6 = 3.5.
A game is "fair" when E(X) = ? — 0.A fair game has E(X) = 0, meaning you expect to neither gain nor lose in the long run.
Bayes' Theorem computes: — P(A|B) given P(B|A), P(A), and P(B).Bayes' Theorem: P(A|B) = P(B|A)·P(A)/P(B). It updates probability given new evidence.
In E(X) = Σ xᵢ·P(xᵢ), what must the probabilities sum to? — 1.All probabilities in a probability distribution must sum to exactly 1.
If you bet $10 on a coin flip (50/50), win $10 or lose $10, E(X) = ? — $0.E(X) = 10(0.5) + (−10)(0.5) = 5 − 5 = $0. This is a fair game.
The formula P(A|B) = P(B|A)·P(A)/P(B) is known as: — Bayes' Theorem.This is Bayes' Theorem, named after Thomas Bayes. It expresses how to reverse conditional probabilities.