150 Most Frequently Asked Questions On Quant Interviews [iPad]
Testing the toolkit required for modeling and implementation.
This document organizes, explains, and enriches 150 commonly asked quant interview questions across categories you’ll encounter when preparing for quant roles (quantitative researcher, quantitative developer, quant trader, data scientist, and quant-focused software engineering). It’s designed to be expressive and engaging: concise definitions, why the question matters, common solution strategies, and brief tips to help you answer clearly and confidently in interviews.
Use this as a roadmap: drill the fundamentals, practice coding and math under time pressure, and learn to communicate trade-offs and intuition as fluently as you show technical skill.
—Contents—
Each question below lists: the question, why it’s asked, a concise approach to answer, and a succinct tip. For longer algorithmic or derivation questions, a short outline of the solution is provided so you can reproduce or expand in interviews.
Final tips for interview success
If you want, I can:
Which follow-up would you like?
Preparing for a quant interview can feel like trying to solve a Rubik’s Cube in a hurricane. To help you navigate the chaos, we’ve distilled the chaos into the 150 most frequently asked questions across top-tier hedge funds and market makers [2, 3].
This collection focuses on the core pillars of quantitative finance: Probability & Statistics:
Brainteasers on expected value, Bayes' Theorem, and Markov Chains [1, 2]. Calculus & Linear Algebra:
Stochastic calculus, Taylor series expansions, and matrix properties [3, 4]. Coding & Algorithms:
Efficient data structures, C++ memory management, and Python optimization [2, 5]. Finance Theory:
Black-Scholes Greeks, risk-neutral pricing, and arbitrage detection [1, 4]. Whether you are targeting Prop Trading Quantitative Research Model Validation
, mastering these 150 patterns will shift your focus from "how do I solve this?" to "how do I optimize this?" [2, 5]. Derivatives Pricing , to see some sample questions? 150 Most Frequently Asked Questions On Quant Interviews
The book " 150 Most Frequently Asked Questions on Quant Interviews
" by Stefanica, Radoicic, and Wang is a staple resource for candidates preparing for quantitative roles in finance. It provides a targeted collection of problems and solutions across the core pillars of quantitative finance. Core Topics Covered
The questions in the book (which grew to over 200 in the 3rd edition) are categorized into several technical domains:
150 Most Frequently Asked Questions on Quant Interviews Dan Stefanica
, Rados Radoicic, and Tai-Ho Wang is widely considered an essential "pocket guide" for candidates preparing for quantitative roles in finance. The book is uniquely structured to mimic the concise, direct-to-the-point
style expected in actual interviews. The latest edition (Third Edition, 2024) expanded the collection to over 200 questions to include emerging trends like Machine Learning. Core Topics Covered
The text organizes questions into distinct mathematical and technical domains: Testing the toolkit required for modeling and implementation
This report categorizes questions by topic, indicates difficulty levels (★ = Easy, ★★ = Intermediate, ★★★ = Hard), and provides concise solution strategies.
Core concepts: Conditional probability, Bayes’ theorem, expectation, variance, distributions.
| # | Question | Difficulty | Key Idea | |---|----------|------------|-----------| | 1 | You flip two fair coins. Given that at least one is heads, what is the probability both are heads? | ★ | Conditional probability: 1/3 | | 2 | Draw one card from a deck. What is the probability it is a king or a heart? | ★ | Inclusion-exclusion: 4/52 + 13/52 – 1/52 = 16/52 | | 3 | Roll a fair die. What is the expected value? | ★ | (1+2+3+4+5+6)/6 = 3.5 | | 4 | You have two dice. What is the probability the sum is 7? | ★ | 6/36 = 1/6 | | 5 | A family has two children. At least one is a boy. Probability both are boys? | ★ | 1/3 | | 6 | You flip a coin until you get heads. Expected number of flips? | ★ | Geometric: 2 | | 7 | Draw two cards without replacement. Probability both are aces? | ★ | (4/52)(3/51) | | 8 | You roll a die. What is the variance of the outcome? | ★★ | E[X²] – E[X]² = 91/6 – 3.5² ≈ 2.92 | | 9 | You flip a fair coin 10 times. Probability of exactly 5 heads? | ★ | C(10,5)/2¹⁰ | | 10 | There are 3 red and 3 blue balls in an urn. Draw two without replacement. Probability same color? | ★ | (3/62/5)2 = 2/5 | | 11 | You have two coins: one fair, one double-headed. Pick one at random, flip, get heads. Probability it’s the double-headed? | ★★ | Bayes: 2/3 | | 12 | What is the expected number of rolls of a die to see all 6 faces? | ★★ | Coupon collector: 6(1 + 1/2 + … + 1/6) ≈ 14.7 | | 13 | You and I take turns flipping a coin. First to get heads wins. You go first. Your chance to win? | ★★ | 2/3 | | 14 | Two points are chosen uniformly on [0,1]. Expected distance between them? | ★★ | 1/3 | | 15 | Random variable X ~ N(0,1). What is E[|X|]? | ★★ | √(2/π) | | 16 | You have a stick of length 1. Break at random point. Expected length of shorter piece? | ★★ | 1/4 | | 17 | 100 people randomly assigned seats on a plane. First person sits randomly. Probability last person gets own seat? | ★★★ | 1/2 (symmetry) | | 18 | You flip a fair coin until you see HH. Expected flips? | ★★★ | 6 (use Markov chains) | | 19 | You have n biased coins with p_i. Randomly pick one, flip. Probability heads? | ★ | Average of p_i | | 20 | Roll two dice. Expected maximum? | ★★ | ≈ 4.472 | | 21 | Draw from U[0,1] until sum exceeds 1. Expected number of draws? | ★★★ | e ≈ 2.718 | | 22 | What is the probability that a random chord in a circle is longer than the radius? | ★★ | 1/2 (depends on definition) | | 23 | You have 5 red and 5 blue balls. Draw without replacement. Probability last ball is red? | ★ | 1/2 (symmetry) | | 24 | You roll a die and win $1 if prime, lose $1 if composite, 0 otherwise. Expected profit? | ★ | (3 wins, 2 losses, 1 zero) → 1/6 | | 25 | Random permutation of n numbers. Probability that 1 is before 2? | ★ | 1/2 | | 26 | What is the probability of getting a flush (5 same suit) in poker? | ★★ | (4*C(13,5))/C(52,5) | | 27 | You have two envelopes with money, one double the other. You open one, see $100. Switch? | ★★ | Paradox: Expected value same | | 28 | You play a game: roll a die, get that many dollars. You can roll again once. Strategy? | ★★ | Roll again if ≤ 3 | | 29 | Random walk on integers starting at 0. Probability of reaching +1 before –n? | ★★ | 1/(n+1) | | 30 | You have 3 doors, one car. Pick one, host opens a goat door. Switch? | ★ | Switch gives 2/3 chance | | 31 | Random point in a unit square. Expected distance to nearest edge? | ★★ | 1/6 | | 32 | What is P(X < Y) for independent exponentials with rates λ, μ? | ★ | λ/(λ+μ) | | 33 | You flip a coin until you get HT. Expected flips? | ★★★ | 4 | | 34 | Two players shoot basketball with accuracy p. Alternate. First to make wins. Advantage to first? | ★★ | 1/(2-p) | | 35 | Roll a die. If you get 6 you win $6, else roll again. Expected value? | ★★ | 3.5 if stop otherwise? |
Target Audience: Aspiring Quantitative Analysts, Quant Developers, and Risk Managers. Purpose: To provide a structured roadmap for technical interview preparation, covering the "Big Four" domains: Brain Teasers, Probability, Stochastic Calculus, and Finance/Mathematics.
Finally, technical prowess is useless if you lack market intuition. These questions test your commercial awareness.
Typical Questions:
The Strategy: Quant firms make money by understanding correlations. If apples cost more, the cost of apple juice rises, but perhaps demand falls. Which effect dominates? They want to see you build a microeconomic model in your head instantly. Each question below lists: the question, why it’s