Chapter 13 at a Glance
1. Conditional probability — how information updates chances:
P(E∣F)=P(F)P(E∩F),P(F)=0
with the properties 0≤P(E∣F)≤1, P(E′∣F)=1−P(E∣F), and the addition rule
P((E∪F)∣G)=P(E∣G)+P(F∣G)−P((E∩F)∣G)

2. Multiplication theorem — the definition rearranged for chained events:
P(E∩F)=P(E)P(F∣E)=P(F)P(E∣F)
extending to P(E∩F∩G)=P(E)P(F∣E)P(G∣E∩F) — the engine of every without-replacement problem.
3. Independence — when information changes nothing:
P(E∩F)=P(E)P(F)⟺P(E∣F)=P(E) (P(F)=0)
If E,F are independent, so are E,F′ and E′,F and E′,F′ — giving the at-least-one shortcut
P(at least one)=1−P(E′)P(F′)
Mutual independence of three events needs all three pairwise equations plus P(A∩B∩C)=P(A)P(B)P(C).
4. Theorem of total probability — for a partition {E1,…,En} of S:
P(A)=j=1∑nP(Ej)P(A∣Ej)
5. Bayes' theorem — reversing the conditional:
P(Ei∣A)=∑j=1nP(Ej)P(A∣Ej)P(Ei)P(A∣Ei)

For a distribution {(xi,pi)} with pi≥0, ∑pi=1:
E(X)=∑xipi,Var(X)=∑xi2pi−(E(X))2
For the binomial X∼B(n,p):
P(X=r)=(rn)prqn−r,E(X)=np,Var(X)=npq (<mean always)
The mistake checklist (read before every exam)
Direction errors. P(E∣F)=P(F∣E) — check which event is given. In Bayes problems the question gives the forward conditionals P(A∣Ei) and asks for a backward one P(Ei∣A).
Independent vs mutually exclusive. Near-opposites for nonzero-probability events: exclusive means P(E∩F)=0; independent means P(E∩F)=P(E)P(F)>0. Never assume independence without the product test.
Replacement. With replacement → independent draws, multiply plain probabilities (binomial applies). Without replacement → dependent draws, multiply conditional probabilities (binomial does not apply).
The union formula. For independent events P(A∪B)=P(A)+P(B)−P(A)P(B); adding raw probabilities is only valid for mutually exclusive events.
Bayes bookkeeping. Priors must sum to 1; the denominator is the sum of all terms of the numerator's shape; a total-probability answer must lie between the smallest and largest conditional.
Complement slips. In at-least-one problems, the final step is 1−(all fail) — half of all lost marks in this chapter are a forgotten final subtraction.
Binomial checks. E(X2)=(E(X))2; variance < mean for every binomial; the (rn) factor counts the orderings — omitting it is the classic error.