IIM Lucknow IPMX Co. 27

Probability and Distribution Notes

Exam Study Guide: Probability & Distributions

Course: IIM Lucknow — IPMX Batch 2026-27 — QAB-I

Topics covered: Probability, Random Variables, Binomial, Poisson, Uniform, Exponential, Normal

Also see the solved questions from the lectures here


BLOCK 1: Probability Foundations

Core Ideas in 5 Bullets

  1. Sample space (S) = list of all possible outcomes. Event (A) = a subset of S.
  2. P(A) = favorable outcomes / total outcomes, with 0 ≤ P(A) ≤ 1 and P(S) = 1.
  3. Addition rule: P(A ∪ B) = P(A) + P(B) − P(A ∩ B). If mutually exclusive, the last term is 0.
  4. Conditional probability: P(A|B) = P(A ∩ B) / P(B) — probability of A given B already happened.
  5. Multiplication rule: P(A ∩ B) = P(A|B) · P(B). If independent: P(A ∩ B) = P(A) · P(B).

Bayes' Theorem

The only formula you need for inverse problems:

P(Eᵢ | D) = P(D | Eᵢ) · P(Eᵢ) / Σⱼ P(D | Eⱼ) · P(Eⱼ)

Plain English: Given you saw D, what's the chance it came from cause Eᵢ?

💡 Pattern recognition: Whenever a question gives you P(D | cause₁), P(D | cause₂)... and asks "given D, what's P(cause)?", it's Bayes. Always.


BLOCK 2: Random Variables + Uniform

Random Variable (RV) — Concept

A random variable X assigns a number to each outcome of a random experiment. Two types:

Expectation and Variance

For a discrete RV:

Linear Transformation Rule — Memorize This

If Y = aX + b (a, b are constants):

+b shifts the mean but does NOT affect variance. The coefficient gets squared in variance.


Uniform Distribution — X ~ U(a, b)

PDF is flat (rectangle) on [a, b]: f(x) = 1/(b−a)

Quantity Formula
Mean E[X] = (a + b) / 2
Variance V[X] = (b − a)² / 12

BLOCK 3: Binomial + Poisson

Binomial Distribution — X ~ B(n, p)

Use when:

PMF: P(X = x) = C(n,x) · pˣ · (1−p)ⁿ⁻ˣ

Quantity Formula
Mean E[X] = np
Variance V[X] = np(1−p)

Excel:

💡 "At least one" trick: P(X ≥ 1) = 1 − P(X = 0). Most common Binomial pattern in exams.


What do x, n, and p mean?

"Success" = whatever the question is counting. It does NOT always mean something good.


Poisson Distribution — X ~ Poisson(λ)

Use when:

PMF: P(X = x) = e⁻λ · λˣ / x!

Quantity Formula
Mean E[X] = λ
Variance V[X] = λ

Critical scaling rule: If λ is "events per hour" and you're asked about T minutes, scale λ proportionally to match the time window.

Excel:

How to find λ:

λ = rate × time

Example: 15 calls/hour, time = 20 minutes = 1/3 hour → λ = 15 × 1/3 = 5


BLOCK 4: Exponential + Normal

Exponential Distribution — X ~ Exp(λ)

Use when measuring waiting time (continuous time between Poisson events).

Quantity Formula
Mean E[X] = 1/λ
Variance V[X] = 1/λ²
P(X ≤ x) 1 − e^(−λx)
P(X > x) e^(−λx)

💡 Poisson-Exponential link: If events arrive Poisson with rate λ, time between events is Exponential with the same λ.

Key relationship: λ = 1 / mean

Excel: =EXPON.DIST(x, λ, TRUE) → P(X ≤ x)

Complement: P(X > x) = 1 − P(X ≤ x) — use when question asks "more than" or "after" x time.


Normal Distribution — X ~ N(μ, σ)

Continuous, symmetric. Mean = median = mode = μ. Spread controlled by σ.

Empirical rule:

Z-score: Z = (X − μ) / σ

Converts X to Z ~ N(0,1). Z = "how many SDs above/below the mean."

Two problem types:

Critical z-values to memorize:

Cumulative prob z-value
0.10 −1.2816
0.05 −1.6449
0.025 −1.96
0.90 +1.2816
0.95 +1.6449
0.975 +1.96

BLOCK 5: Final Cheat Sheet

Distribution Decision Tree

Is the variable a COUNT?


Formula Card

Distribution E[X] V[X] Key Formula
Binomial(n,p) np np(1−p) P(X=x) = C(n,x)·pˣ·(1−p)ⁿ⁻ˣ
Poisson(λ) λ λ P(X=x) = e⁻λ·λˣ/x!
Uniform(a,b) (a+b)/2 (b−a)²/12 f(x) = 1/(b−a)
Exponential(λ) 1/λ 1/λ² P(X≤x) = 1−e⁻λˣ
Normal(μ,σ) μ σ² Z = (X−μ)/σ

Linear transform Y = aX + b (any distribution):


Excel Functions

Need Excel
Binomial P(X=x) =BINOM.DIST(x, n, p, FALSE)
Binomial P(X≤x) =BINOM.DIST(x, n, p, TRUE)
Poisson P(X=x) =POISSON.DIST(x, λ, FALSE)
Poisson P(X≤x) =POISSON.DIST(x, λ, TRUE)
Exponential P(X≤x) =EXPON.DIST(x, λ, TRUE)
Normal P(X≤x) =NORM.DIST(x, μ, σ, TRUE)
Standard normal Φ(z) =NORM.S.DIST(z, TRUE)
Inverse normal: find x =NORM.INV(p, μ, σ)
Inverse standard normal: find z =NORM.S.INV(p)

The "Cumulative" Toggle


The "At Least" Trick

P(X ≥ x) = 1 − P(X ≤ x−1)

Excel (Binomial, at least 1): =1 - BINOM.DIST(0, n, p, TRUE)


When to Use "S" (Standard) Versions


Five Common Mistakes to Avoid

  1. Forgetting to scale Poisson λ when the time window changes — always match rate to interval first.
  2. Using "at least one" the long way — go straight to 1 − P(X=0).
  3. Mixing up "less than" vs "more than" in Normal — always sketch the curve and shade the region.
  4. Not squaring the coefficient in variance — V[3X−4] = 9·V[X], not 3·V[X].
  5. Choosing the wrong distribution — "time between events" → Exponential (not Normal). "Counts" → Poisson (not Binomial, unless n is fixed).

Before the Exam