📘 Probability & Distributions - Quick Reference
1. Probability
● Addition Rule:
P(A U B) = P(A) + P(B) – P(A and B)
● Multiplication Rule (Independent Events):
P(A and B) = P(A) * P(B)
2. Conditional Probability
● P(A | B) = P(A and B) / P(B), where P(B) > 0
3. Total Probability Theorem
● If B₁, B₂, ..., B are mutually exclusive and exhaustive:
P(A) = Σ P(A | Bᵢ) * P(Bᵢ)
4. Bayes' Theorem
● P(Bᵢ | A) = [P(A | Bᵢ) * P(Bᵢ)] / Σ [P(A | Bⱼ) * P(Bⱼ)]
5. Random Variable
Property Formula
Expectation E(X) = Σ [x * P(X = x)]
Variance Var(X) = E(X²) – [E(X)]²
6. Binomial Distribution
(X ~ Bin(n, p))
Property Formula
Expectation E(X) = n * p
Variance Var(X) = n * p * (1 – p)
Excel Formula:
=[Link](x, n, p, FALSE) ← PDF
=[Link](x, n, p, TRUE) ← CDF
7. Geometric Distribution
(X ~ Geom(p)) — counts the number of trials until first success
Property Formula
Expectation E(X) = 1 / p
Variance Var(X) = (1 – p) / p²
Memoryless Prop. P(X > m + n∣X>m)=P(X>n)
Excel Formula:
=[Link](x - 1, 1, p, FALSE) ← PDF
=[Link](x - 1, 1, p, TRUE) ← CDF
8. Poisson Distribution
(X ~ Pois(λ)) — models count of events in a fixed interval
Property Formula
Mean E(X) = λ
Variance Var(X) = λ
Additivity Pois(λ₁) + Pois(λ₂) = Pois(λ₁ + λ₂)
Excel Formula:
=[Link](x, λ, FALSE) ← PDF
=[Link](x, λ, TRUE) ← CDF