Sign in to save

Bookmark this page so you can find it later.

Sign in to save

Bookmark this page so you can find it later.

Probability theory gives the rules for measuring uncertainty in statistics, data science, and scientific modeling. This cheat sheet summarizes the axioms, set operations, conditional probability, independence, expected value, and variance. College students need these ideas to derive results, choose distributions, and interpret probabilistic models correctly. It is designed as a formula-forward reference for homework, exams, and applied analysis. The foundation is that probabilities are nonnegative, total probability equals 11, and disjoint events add. Conditional probability uses P(AB)=P(AB)P(B)P(A \mid B) = \frac{P(A \cap B)}{P(B)} to update probabilities when information is known. Moments such as E[X]E[X] and Var(X)\operatorname{Var}(X) describe the center and spread of random variables. Common distributions such as Bernoulli, Binomial, Poisson, Uniform, Exponential, and Normal connect these rules to real data models.

Key Facts

  • The probability axioms are P(A)0P(A) \ge 0, P(S)=1P(S) = 1, and if AiA_i are disjoint, then P(iAi)=iP(Ai)P\left(\bigcup_i A_i\right) = \sum_i P(A_i).
  • The complement rule is P(Ac)=1P(A)P(A^c) = 1 - P(A).
  • The addition rule for two events is P(AB)=P(A)+P(B)P(AB)P(A \cup B) = P(A) + P(B) - P(A \cap B).
  • Conditional probability is defined by P(AB)=P(AB)P(B)P(A \mid B) = \frac{P(A \cap B)}{P(B)} when P(B)>0P(B) > 0.
  • Events AA and BB are independent if P(AB)=P(A)P(B)P(A \cap B) = P(A)P(B), equivalently P(AB)=P(A)P(A \mid B) = P(A) when P(B)>0P(B) > 0.
  • Expected value and variance are E[X]=xxp(x)E[X] = \sum_x x p(x) for a discrete random variable and Var(X)=E[X2](E[X])2\operatorname{Var}(X) = E[X^2] - (E[X])^2.
  • For a Binomial random variable XBin(n,p)X \sim \operatorname{Bin}(n,p), P(X=k)=(nk)pk(1p)nkP(X=k) = \binom{n}{k}p^k(1-p)^{n-k}, E[X]=npE[X] = np, and Var(X)=np(1p)\operatorname{Var}(X) = np(1-p).
  • For a Normal random variable XN(μ,σ2)X \sim N(\mu,\sigma^2), the standardized variable is Z=XμσZ = \frac{X - \mu}{\sigma}.

Vocabulary

Sample space
The sample space SS is the set of all possible outcomes of a random experiment.
Event
An event AA is a subset of the sample space whose probability P(A)P(A) can be measured.
Conditional probability
Conditional probability P(AB)P(A \mid B) is the probability that event AA occurs given that event BB has occurred.
Independence
Two events are independent when knowing one occurred does not change the probability of the other.
Expected value
The expected value E[X]E[X] is the long-run average value of a random variable.
Probability distribution
A probability distribution assigns probabilities to possible values of a random variable while totaling 11.

Common Mistakes to Avoid

  • Adding overlapping events without subtracting the intersection is wrong because P(A)+P(B)P(A) + P(B) counts outcomes in ABA \cap B twice.
  • Treating independent and disjoint events as the same is wrong because disjoint events with positive probabilities cannot be independent.
  • Using P(AB)=P(A)P(B)P(A \mid B) = \frac{P(A)}{P(B)} is wrong because conditional probability must use the joint probability P(AB)P(A \cap B) in the numerator.
  • Forgetting distribution conditions is wrong because formulas such as XBin(n,p)X \sim \operatorname{Bin}(n,p) require a fixed number of independent trials with the same success probability.
  • Confusing variance and standard deviation is wrong because variance is measured in squared units while standard deviation is σ=Var(X)\sigma = \sqrt{\operatorname{Var}(X)}.

Practice Questions

  1. 1 If P(A)=0.45P(A)=0.45, P(B)=0.30P(B)=0.30, and P(AB)=0.12P(A \cap B)=0.12, find P(AB)P(A \cup B).
  2. 2 If P(AB)=0.18P(A \cap B)=0.18 and P(B)=0.60P(B)=0.60, find P(AB)P(A \mid B).
  3. 3 Let XBin(10,0.4)X \sim \operatorname{Bin}(10,0.4). Find P(X=3)P(X=3), E[X]E[X], and Var(X)\operatorname{Var}(X).
  4. 4 Explain why two events with P(A)>0P(A)>0, P(B)>0P(B)>0, and AB=A \cap B = \varnothing cannot be independent.