Preparing for your next Quant Interview?
Practice Here!
OpenQuant
Section 1 of 6
Probability & StatisticsProbability Distributions

Probability Distributions

Probability distributions provide a mathematical framework for modeling the uncertainty inherent in financial markets. They are essential for tasks ranging from asset pricing and risk management to portfolio optimization and algorithmic trading.

I. Foundational Concepts

A Random Variable (RV) is a variable whose value is a numerical outcome of a random phenomenon. RVs are classified as Discrete (countable outcomes, e.g., number of defaults) or Continuous (uncountable outcomes over a range, e.g., asset price).

ConceptDiscrete RVContinuous RVDescription
Probability FunctionProbability Mass Function (PMF), f(x)f(x)Probability Density Function (PDF), f(x)f(x)Defines the probability of a discrete outcome or the relative likelihood of a continuous outcome.
Cumulative FunctionCumulative Distribution Function (CDF), F(x)F(x)Cumulative Distribution Function (CDF), F(x)F(x)Gives the probability that the RV takes a value less than or equal to xx: F(x)=P(Xx)F(x) = P(X \le x).
Expected ValueE[X]=xif(xi)\mathbb{E}[X] = \sum x_i f(x_i)E[X]=xf(x)dx\mathbb{E}[X] = \int x f(x) dxThe weighted average of all possible values, representing the long-run average.
VarianceVar(X)=E[(Xμ)2]\text{Var}(X) = \mathbb{E}[(X - \mu)^2]Var(X)=E[(Xμ)2]\text{Var}(X) = \mathbb{E}[(X - \mu)^2]Measures the dispersion or spread of the distribution around the mean (μ\mu).

Moment Generating Functions (MGF)

The Moment Generating Function (MGF), MX(θ)=E[eθX]M_X(\theta) = \mathbb{E}[e^{\theta X}], is a powerful tool.

  • Utility: The kk-th moment of the distribution (E[Xk]\mathbb{E}[X^k]) can be found by taking the kk-th derivative of the MGF and evaluating it at θ=0\theta=0.
  • Sum of RVs: The MGF of the sum of independent random variables is the product of their individual MGFs: MX+Y(θ)=MX(θ)MY(θ)M_{X+Y}(\theta) = M_X(\theta) M_Y(\theta).

II. Key Distributions in Statistics

The following table summarizes the most critical distributions, their parameters, and their relevance in financial modeling.

NameTypeApplicationPMF/PDFμ\muσ2\sigma^2
BernoulliDiscreteModeling a single event outcome (e.g., default/no default, success/failure of a trade).f(t;p)=pt(1p)1tf(t;p) = p^t (1-p)^{1-t}ppp(1p)p(1-p)
BinomialDiscreteNumber of successes in a fixed number of trials (e.g., number of up-moves in a Binomial Option Pricing Model, credit risk modeling).f(t;n,p)=(nt)pt(1p)ntf(t;n,p) = \binom{n}{t} p^t (1-p)^{n-t}npnpnp(1p)np(1-p)
PoissonDiscreteModeling the number of rare events over a fixed time (e.g., number of trades, defaults, or jumps in a jump-diffusion model).f(t;λ)=λteλt!f(t;\lambda) = \frac{\lambda^t e^{-\lambda}}{t!}λ\lambdaλ\lambda
ExponentialContinuousModeling the time until the next event in a Poisson process (e.g., time until default or time between trades).f(t;λ)=λeλt1t0f(t;\lambda) = \lambda e^{-\lambda t} \mathbf{1}_{t \ge 0}1λ\frac{1}{\lambda}1λ2\frac{1}{\lambda^2}
UniformContinuousModeling uncertainty when all outcomes are equally likely (e.g., random number generation, simple Monte Carlo simulations).f(t;a,b)=1ba1t[a,b]f(t;a,b) = \frac{1}{b-a} \mathbf{1}_{t \in [a,b]}a+b2\frac{a+b}{2}(ba)212\frac{(b-a)^2}{12}
NormalContinuousThe distribution for modeling asset returns (log-returns) due to the CLT. Used in Markowitz portfolio theory and basic risk models.f(t)=1σ2πexp((xμ)22σ2)f(t) = \frac{1}{\sigma\sqrt{2\pi}} \exp\left(-\frac{(x-\mu)^2}{2\sigma^2}\right)μ\muσ2\sigma^2
LognormalContinuousThe distribution for modeling asset prices in the Black-Scholes-Merton model, as prices cannot be negative. If XN(μ,σ2)X \sim N(\mu, \sigma^2), then Y=eXLognormalY = e^X \sim \text{Lognormal}.f(y)=1yσ2πexp((lnyμ)22σ2)f(y) = \frac{1}{y\sigma\sqrt{2\pi}} \exp\left(-\frac{(\ln y-\mu)^2}{2\sigma^2}\right)eμ+σ2/2e^{\mu + \sigma^2/2}e2μ+σ2(eσ21)e^{2\mu + \sigma^2}(e^{\sigma^2}-1)
Student's tContinuousUsed to model financial returns with heavy tails (fat tails), capturing extreme events more accurately than the Normal distribution. Parameter ν\nu (degrees of freedom) controls tail thickness.f(t;ν)(1+t2ν)ν+12f(t;\nu) \propto \left(1 + \frac{t^2}{\nu}\right)^{-\frac{\nu+1}{2}}0 (for ν>1\nu>1)νν2\frac{\nu}{\nu-2} (for ν>2\nu>2)

Probability & Statistics

Quantitative Researcher
Quantitative Trader
Table of Contents