Common probability distributions
In this chapter: Discrete — binomial, Poisson · Continuous — uniform, normal, lognormal · Z-scores, confidence intervals
Distributions describe how probabilities are spread across possible outcomes. The CFA tests a small set of distributions intensively because they show up in valuation models, risk management, and statistical inference. The normal distribution alone shows up in 50%+ of L1 Quant questions. Lognormal handles asset prices. Binomial handles option pricing trees. Master these and you understand the probabilistic backbone of finance.
Discrete distributions (countable outcomes): • Binomial: n trials, each with probability p of success. P(k successes) = C(n,k) × p^k × (1−p)^(n−k). Mean = np, variance = np(1−p). • Poisson: rare events per unit time, average rate λ. P(k events) = λ^k × e^(−λ) / k!. Mean = variance = λ. Continuous distributions (any value in a range): • Uniform [a, b]: equal probability density. Mean = (a+b)/2. • Normal: bell curve, defined by mean μ and SD σ. ~68% within ±1σ, ~95% within ±2σ, ~99.7% within ±3σ. • Lognormal: applies when underlying variable can be negative but observed is bounded by zero (stock prices, asset values). If X ~ lognormal, then ln(X) is normal. Which applies when: • Returns: typically modelled as normal • Prices: typically modelled as lognormal (can't be negative) • Default events: Bernoulli/binomial • Trade arrivals: Poisson
Z-score (standardisation): Z = (X − μ) / σ Transforms any normal variable to standard normal (mean 0, SD 1). Then use Z-table to find probabilities. Key Z-values: Z = 1.00 → 84% (one-tail) Z = 1.65 → 95% (one-tail) Z = 1.96 → 97.5% (one-tail), 95% two-tail Z = 2.33 → 99% (one-tail) Z = 2.58 → 99.5% (one-tail), 99% two-tail Confidence intervals (CI) for known σ: CI = X̄ ± Z × (σ / √n) For unknown σ (use sample SD), use t-distribution with degrees of freedom = n − 1. Lognormal properties: If X ~ lognormal with parameters μ and σ: E[X] = e^(μ + σ²/2) Median[X] = e^μ Mode[X] = e^(μ − σ²) For stock prices: ln(S_T/S_0) ~ Normal(μT, σ²T) → S_T ~ Lognormal. This is the foundation of Black-Scholes option pricing.
CFA exam favorite — VaR (Value at Risk) calculation: Value at Risk (VaR): the maximum loss expected at a given confidence level over a given period. With normal distribution assumption: VaR_95% (one-day) = portfolio value × σ_daily × 1.65 VaR_99% (one-day) = portfolio value × σ_daily × 2.33 Example: ₹100 cr equity portfolio, daily volatility 1.5% VaR_95% = 100 × 0.015 × 1.65 = ₹2.475 cr VaR_99% = 100 × 0.015 × 2.33 = ₹3.495 cr Interpretation: 95% confident the loss in one day won't exceed ₹2.475 cr. The critical caveat: real returns have fat tails (excess kurtosis). Normal-distribution-based VaR systematically understates extreme losses. The 2008 GFC exposed this; modern risk management uses CVaR (Conditional VaR) and stress tests, not just normal-VaR. CFA L1 tests recognition of this limitation. L2 introduces conditional value-at-risk; L3 applies in portfolio risk management.
- CFA Institute Curriculum — Level 1, Quantitative Methods, Reading 4
- Basel III risk regulations — VaR-based capital requirements
- IRDAI Solvency II-equivalent — uses similar distribution assumptions
- Assuming returns are normal when they actually have fat tails — VaR understates true risk.
- Using daily VaR × √days for longer horizons — works only if returns are independent (often violated).
- Confusing standard deviation of mean (SE = σ/√n) with SD of observations (σ).
- Using mean to predict next-period outcome when distribution is skewed.
- Forgetting lognormal mean ≠ e^μ; it's e^(μ + σ²/2).
Frequently asked
When should I use binomial vs normal?
Why are stock prices modelled lognormal?
What is "fat tails" and why does it matter?
Practice questions
Click each question to reveal the answer and explanation.
Q 168% of observations from a normal distribution lie within how many standard deviations of the mean?- (a)1
- (b)2
- (c)2.33
- (d)3
- (a)1
- (b)2
- (c)2.33
- (d)3
Q 2A NIFTY return is normally distributed with mean 1% per month and SD 5%. The probability of a monthly return below −9% is closest to:- (a)1%
- (b)2%
- (c)5%
- (d)10%
- (a)1%
- (b)2%
- (c)5%
- (d)10%
Q 3A 95% one-tailed Z-score is closest to:- (a)1.00
- (b)1.65
- (c)1.96
- (d)2.33
- (a)1.00
- (b)1.65
- (c)1.96
- (d)2.33
Q 4A binomial random variable with n = 10 trials, p = 0.3 success probability has expected value:- (a)0.3
- (b)3
- (c)7
- (d)10
- (a)0.3
- (b)3
- (c)7
- (d)10
Q 5For a portfolio with daily SD 1%, the 99% one-day VaR (assuming normal distribution) on a ₹100 cr portfolio is closest to:- (a)₹0.5 cr
- (b)₹1 cr
- (c)₹2.33 cr
- (d)₹3.50 cr
- (a)₹0.5 cr
- (b)₹1 cr
- (c)₹2.33 cr
- (d)₹3.50 cr
Q 6A weakness of normal-distribution-based VaR is:- (a)It's computationally expensive
- (b)It assumes returns are independent — usually violated
- (c)It understates tail risks because real returns have fat tails
- (d)It can't handle multiple assets
- (a)It's computationally expensive
- (b)It assumes returns are independent — usually violated
- (c)It understates tail risks because real returns have fat tails
- (d)It can't handle multiple assets