Cheat Sheet

Quick-reference formulas, tips, and topic summaries for quant interview preparation.

𝑓 Key Formulas

Options & Derivatives

Black-Scholes (Call): $C = S_0 N(d_1) - Ke^{-rT}N(d_2)$ where $d_1 = \frac{\ln(S/K) + (r + \sigma^2/2)T}{\sigma\sqrt{T}}$, $d_2 = d_1 - \sigma\sqrt{T}$

Put-Call Parity: $C - P = S_0 - Ke^{-rT}$

Delta Hedging: A delta-neutral portfolio: $\Pi = V - \Delta \cdot S$, rebalanced so $\frac{\partial \Pi}{\partial S} = 0$

Greeks:

$\Delta = \frac{\partial V}{\partial S}$,   $\Gamma = \frac{\partial^2 V}{\partial S^2}$,   $\mathcal{V} = \frac{\partial V}{\partial \sigma}$,   $\Theta = \frac{\partial V}{\partial t}$,   $\rho = \frac{\partial V}{\partial r}$

Stochastic Calculus

Geometric Brownian Motion: $dS = \mu S\, dt + \sigma S\, dW$

Ito's Lemma: $df = \frac{\partial f}{\partial t}dt + \frac{\partial f}{\partial S}dS + \frac{1}{2}\frac{\partial^2 f}{\partial S^2}(dS)^2$

Girsanov's Theorem: Under a change of measure $\mathbb{Q}$, $\widetilde{W}_t = W_t + \int_0^t \theta_s\, ds$ is a $\mathbb{Q}$-Brownian motion, where $\theta$ is the market price of risk.

Martingale Property: $\{X_t\}$ is a martingale if $\mathbb{E}[X_t \mid \mathcal{F}_s] = X_s$ for all $s \leq t$.

Probability & Distributions

Bayes' Theorem: $P(A|B) = \frac{P(B|A)\,P(A)}{P(B)}$

Conditional Expectation: $\mathbb{E}[X] = \mathbb{E}[\mathbb{E}[X \mid Y]]$  (tower property)

Normal Distribution: $X \sim N(\mu, \sigma^2)$,   MGF: $M_X(t) = \exp\!\left(\mu t + \frac{\sigma^2 t^2}{2}\right)$

Poisson Distribution: $P(X = k) = e^{-\lambda}\frac{\lambda^k}{k!}$,   $\mathbb{E}[X] = \text{Var}(X) = \lambda$

Central Limit Theorem: $\frac{\bar{X}_n - \mu}{\sigma / \sqrt{n}} \xrightarrow{d} N(0,1)$ as $n \to \infty$

Law of Large Numbers: $\bar{X}_n \xrightarrow{p} \mu$ as $n \to \infty$

Covariance: $\text{Cov}(X,Y) = \mathbb{E}[XY] - \mathbb{E}[X]\mathbb{E}[Y]$

Correlation: $\rho_{XY} = \frac{\text{Cov}(X,Y)}{\sigma_X \sigma_Y}$,   $-1 \leq \rho \leq 1$

Statistics & Regression

OLS Estimator: $\hat{\beta} = (X^TX)^{-1}X^TY$

VaR (Parametric, Normal): $\text{VaR}_\alpha = \mu + z_\alpha\, \sigma$

Portfolio Variance: $\sigma_P^2 = \mathbf{w}^T \Sigma\, \mathbf{w}$

Duration: $D = -\frac{1}{P}\frac{dP}{dy}$,   price change $\approx -D \cdot \Delta y \cdot P$

Performance & Sizing

Sharpe Ratio: $SR = \frac{\mathbb{E}[R_p] - R_f}{\sigma_p}$

Kelly Criterion: $f^* = \frac{p(b+1) - 1}{b}$,   where $p$ = win probability, $b$ = odds ratio

Interview Tips

1
Think out loud
Interviewers want to see your reasoning process, not just the final answer. Narrate your approach.
2
Start simple
Solve a simpler version of the problem first, then generalize to the full case.
3
Check edge cases
Does your answer make sense for extreme values? Try $n=0$, $n=1$, $n \to \infty$.
4
Know your distributions
Be fluent with Normal, Poisson, Exponential, Geometric, and Binomial distributions.
5
Practice mental math
Quick estimation is valued highly. Know squares, cubes, key constants ($e \approx 2.718$, $\ln 2 \approx 0.693$).
6
Frame your answer
State your assumptions clearly before diving in. This shows structured thinking and avoids ambiguity.
7
Bound it
Give upper and lower bounds before solving exactly. This demonstrates estimation skills and sanity-checks your work.

📋 Common Interview Topics

Probability
  • Expected value and linearity of expectation
  • Conditional probability and Bayes' theorem
  • Counting (permutations, combinations)
  • Markov chains and transition matrices
  • Geometric and negative binomial problems
Statistics
  • Hypothesis testing (t-test, chi-squared)
  • Linear regression and OLS properties
  • Bayesian inference and priors
  • MLE and MAP estimation
  • Confidence intervals and p-values
Stochastic Calculus
  • Ito's lemma and applications
  • Geometric Brownian Motion
  • Martingales and stopping times
  • Change of measure (Girsanov)
  • Stochastic integrals and Ito isometry
Options Pricing
  • Black-Scholes model and assumptions
  • Greeks: Delta, Gamma, Vega, Theta, Rho
  • Put-Call parity
  • Binomial option pricing model
  • Implied volatility and vol smile
Brain Teasers
  • Recursion and self-similar sub-problems
  • Symmetry arguments
  • Invariant-based reasoning
  • Fermi estimation
  • Game theory and optimal strategy
Coding
  • Time and space complexity analysis
  • Dynamic programming patterns
  • Monte Carlo simulation
  • Data structures (heaps, hash maps, trees)
  • Numerical methods and optimization

📚 Essential Reading

Probability & Statistics

A First Course in Probability -- Sheldon Ross

All of Statistics -- Larry Wasserman

Introduction to Probability Models -- Sheldon Ross

Probability and Statistics for Engineering and the Sciences -- Jay Devore

Stochastic Calculus & Financial Math

Stochastic Calculus for Finance I & II -- Steven Shreve

Options, Futures, and Other Derivatives -- John Hull

Paul Wilmott on Quantitative Finance -- Paul Wilmott

Concepts and Practice of Mathematical Finance -- Mark Joshi

Linear Algebra & Optimization

Introduction to Linear Algebra -- Gilbert Strang

Convex Optimization -- Stephen Boyd & Lieven Vandenberghe

Matrix Analysis and Applied Linear Algebra -- Carl D. Meyer

Interview Preparation

A Practical Guide to Quantitative Finance Interviews -- Xinfeng Zhou (the "Green Book")

Heard on The Street -- Timothy Crack

Quant Job Interview Questions and Answers -- Mark Joshi

Fifty Challenging Problems in Probability -- Frederick Mosteller

Programming & Data Science

Python for Data Analysis -- Wes McKinney

Hands-On Machine Learning -- Aurelien Geron

Elements of Statistical Learning -- Hastie, Tibshirani, Friedman