Glossary
Career & Interview PrepIntermediate13 min read

Quant Interview Probability Questions

Quant interview probability questions test a candidate's ability to reason about uncertainty, compute expected values, and apply probability theory under time pressure. These questions are asked at virtually every quantitative trading firm and range from basic conditional probability to complex combinatorial problems and stochastic processes.

Why Probability Matters in Quant Interviews

If there's one subject you absolutely must master for quant interviews, it's probability. Every major trading firm โ€” Jane Street, Citadel, Optiver, SIG, HRT โ€” tests probability extensively in their interviews.

Why? Because quant trading is fundamentally about making decisions under uncertainty. Every trade is a probability-weighted bet. A quant trader needs to instinctively think in terms of expected value, understand conditional probabilities, and reason about distributions โ€” all in real time.

The questions aren't just academic exercises. They're designed to test exactly the mental machinery you'll use on the job. Can you break down a complex problem into manageable pieces? Can you think clearly under time pressure? Do you have good intuition for when an answer "feels" right or wrong?

Common Question Types

Quant probability interview questions generally fall into these categories:

  • Conditional Probability & Bayes' Theorem: "Given that at least one of two children is a boy, what's the probability both are boys?" These test your ability to update beliefs given new information.
  • Expected Value: "What's the expected number of coin flips to get two heads in a row?" These test your ability to set up and solve recurrence relations.
  • Combinatorics & Counting: "How many ways can you arrange 5 red and 3 blue balls such that no two blue balls are adjacent?" These test systematic counting and combinatorial reasoning.
  • Markov Chains & Random Walks: "A gambler starts with $50 and bets $1 per round on a fair coin. What's the probability they reach $100 before going broke?" These test understanding of random walks and absorbing states.
  • Continuous Distributions: "Two people agree to meet at a cafe between 12:00 and 1:00. Each waits 15 minutes. What's the probability they meet?" These test comfort with integrals and geometric probability.
  • Estimation & Fermi Problems: "What's the probability that two random people in this room share a birthday?" These test order-of-magnitude thinking and approximation skills.

Get free quant interview prep resources

Mock interviews, resume guides, and 500+ practice questions โ€” straight to your inbox.

Worked Examples

Let's walk through four representative problems with full solutions.

Problem 1: The Coin Flip Sequence

What is the expected number of fair coin flips to get two consecutive heads?

Let E be the expected number of flips from the start, EH be the expected number of additional flips given we just flipped one head.

From the start: we flip once. With probability 1/2 we get T (back to start) and with probability 1/2 we get H (move to state H).

E = 1 + (1/2)E + (1/2)EH

From state H: we flip once. With probability 1/2 we get H (done!) and with probability 1/2 we get T (back to start).

EH = 1 + (1/2)(0) + (1/2)E = 1 + E/2

Substituting: E = 1 + E/2 + (1/2)(1 + E/2) = 1 + E/2 + 1/2 + E/4 = 3/2 + 3E/4

Solving: E/4 = 3/2, so E = 6.

Problem 2: Conditional Probability

I roll two fair dice. Given that the sum is at least 9, what is the probability that one of the dice shows a 6?

First, find outcomes where sum ≥ 9: {(3,6), (4,5), (4,6), (5,4), (5,5), (5,6), (6,3), (6,4), (6,5), (6,6)} = 10 outcomes.

Of these, outcomes with at least one 6: {(3,6), (4,6), (5,6), (6,3), (6,4), (6,5), (6,6)} = 7 outcomes.

P(at least one 6 | sum ≥ 9) = 7/10 = 0.7

Problem 3: The Meeting Problem

Two people agree to meet at a location between 12:00 and 1:00 PM. Each arrives at a uniformly random time and waits exactly 15 minutes. What's the probability they meet?

Let X and Y be their arrival times (in minutes past noon), both uniform on [0, 60]. They meet if |X - Y| ≤ 15.

The sample space is a 60×60 square (area = 3600). The meeting region is the band where |X - Y| ≤ 15. The non-meeting region consists of two right triangles, each with legs of length 45.

Area of non-meeting region = 2 × (1/2) × 45 × 45 = 2025.

Meeting area = 3600 - 2025 = 1575.

P(meet) = 1575/3600 = 7/16 ≈ 0.4375

Problem 4: Bayesian Reasoning

A medical test for a disease is 99% accurate (both sensitivity and specificity). The disease prevalence is 1 in 1000. If a person tests positive, what's the probability they actually have the disease?

Using Bayes' theorem:

P(disease | positive) = P(positive | disease) × P(disease) / P(positive)

P(positive) = P(positive | disease)P(disease) + P(positive | no disease)P(no disease)

= 0.99 × 0.001 + 0.01 × 0.999 = 0.00099 + 0.00999 = 0.01098

P(disease | positive) = 0.00099 / 0.01098 ≈ 0.0902 or about 9%

The counterintuitive result โ€” even with a 99% accurate test, a positive result only means ~9% chance of disease โ€” is a classic illustration of base rate neglect. This is directly relevant to trading: a "signal" that's 99% accurate can still generate mostly false positives if the base rate of the event is low.

Study Strategy

Here's how to systematically prepare for probability interviews:

  • Week 1-2: Foundations. Review core probability theory โ€” sample spaces, axioms of probability, conditional probability, independence, Bayes' theorem, expected value, variance. Use a textbook like Blitzstein & Hwang's "Introduction to Probability" or Sheldon Ross's "A First Course in Probability."
  • Week 2-3: Problem Types. Work through 50-100 problems organized by type (see categories above). Focus on setting up problems correctly โ€” the computation is usually straightforward once the setup is right.
  • Week 3-4: Speed & Fluency. Time yourself. Aim to solve medium-difficulty problems in 3-5 minutes. Practice explaining your reasoning out loud โ€” interviewers evaluate your thought process, not just the final answer.
  • Week 4+: Mock Interviews. Practice with a partner or use our interview question bank. Simulate real interview conditions: no notes, verbal explanation, 5-minute time limit per problem.

Key books:

  • "A Practical Guide to Quantitative Finance Interviews" (the "Green Book") โ€” the single most useful resource for quant probability prep.
  • "Fifty Challenging Problems in Probability" by Frederick Mosteller โ€” classic problems that appear repeatedly in interviews.
  • "Heard on the Street" by Timothy Crack โ€” broader coverage including brainteasers and finance questions.

Want personalized guidance from a quant?

Speak with a quant trader or researcher whoโ€™s worked at a top firm.

Book a Free Consult

Resources and Next Steps

Ready to start practicing? Here are your next steps:

Key Formulas

Bayes' Theorem โ€” the most frequently tested formula in quant probability interviews. Used whenever you need to update a probability given new evidence.

Expected Value (discrete) โ€” the fundamental concept underlying every trading decision. A trade is worth taking if and only if its expected value is positive after costs.

Variance shortcut formula โ€” useful for quickly computing variance in interview settings without full distribution tables.

Key Takeaways

  • Probability questions appear in virtually every quant interview โ€” you cannot skip this topic.
  • Most questions fall into a few categories: conditional probability, expected value, combinatorics, Markov chains, and continuous distributions.
  • The key to solving them is structured thinking: define the sample space, identify what you're computing, and work step by step.
  • Practice speed as well as accuracy โ€” interviews are timed, and interviewers want to see fluency, not just correctness.
  • Understanding the 'why' behind formulas matters more than memorizing them.

Why This Matters for Quant Careers

Probability questions are the single most important interview topic for quant trader roles at firms like Jane Street, Optiver, SIG, and Citadel Securities. Mastering probability is not optional โ€” it's the bare minimum to pass the first interview round.

Practice with our 500+ real interview questions and book a free consultation to discuss your preparation.

Related Concepts

Career & Interview PrepIntermediate

Quant Interview Brain Teasers

Brain teasers and logic puzzles are a staple of quant trading interviews. This guide covers why firms use them, common categories, worked examples with solutions, and practical solving strategies.

11 min read
Career & Interview PrepBeginner

How to Prepare for Quant Interviews

A comprehensive, actionable guide to preparing for quantitative finance interviews โ€” from understanding the process to building a 4-8 week study plan that covers math, coding, and behavioral prep.

12 min read
Career & Interview PrepBeginner

What Is a Quant Trader?

A quant trader uses mathematical models and algorithms to identify and execute trading opportunities in financial markets, combining quantitative skills with real-time decision-making.

10 min read
Probability & StatisticsBeginner

Bayes' Theorem

Bayes' theorem provides a mathematical framework for updating the probability of a hypothesis as new evidence becomes available, making it central to both quant interviews and trading decision-making.

8 min read
Probability & StatisticsBeginner

Expected Value

Expected value is the probability-weighted average of all possible outcomes of a random variable, forming the mathematical foundation for every rational trading and betting decision.

7 min read
Probability & StatisticsBeginner

Conditional Probability

Conditional probability is the probability of an event occurring given that another event has already occurred, forming the basis for Bayesian reasoning and many quant interview questions.

7 min read
Probability & StatisticsBeginner

Normal Distribution

The normal (Gaussian) distribution is the bell-shaped probability distribution that appears throughout statistics, finance, and natural science, characterized by its mean and standard deviation.

8 min read
Probability & StatisticsBeginner

Law of Large Numbers

The Law of Large Numbers states that as the number of trials increases, the sample average converges to the expected value โ€” the mathematical justification for why systematic trading works.

6 min read

Frequently Asked Questions

What probability topics are most important for quant interviews?

Conditional probability and Bayes' theorem, expected value and linearity of expectation, combinatorics and counting, Markov chains and random walks, and basic continuous distributions (uniform, normal, exponential). Master these five areas and you'll be able to handle 90%+ of probability questions.

How hard are the probability questions at Jane Street?

Jane Street probability questions range from medium to very hard. They tend to focus on expected value calculations, conditional probability, and problems that require creative insight rather than just formula application. The difficulty is compounded by time pressure โ€” you typically have 5-10 minutes per question. The key is structured thinking and the ability to break problems into sub-problems.

Do I need to know measure theory for quant interviews?

No. While measure-theoretic probability is the mathematical foundation of the field, quant trading interviews test applied probability โ€” you need to solve problems, not prove theorems. Focus on discrete and continuous probability, conditional expectations, and combinatorics. Measure theory is occasionally relevant for quant researcher roles at some hedge funds, but even there, applied skill matters more than theory.

How many probability problems should I practice?

Aim for at least 100-150 problems over a 4-6 week preparation period. Quality matters more than quantity โ€” make sure you understand each solution deeply rather than just memorizing answers. After each problem, ask yourself: what concept was being tested? Could I solve a variation of this? What's the general principle?

What is the best book for quant probability interview prep?

'A Practical Guide to Quantitative Finance Interviews' (the Green Book) by Xinfeng Zhou is the gold standard. Supplement it with 'Fifty Challenging Problems in Probability' by Mosteller for classic puzzles and 'Heard on the Street' by Timothy Crack for broader coverage. For foundational review, Blitzstein & Hwang's 'Introduction to Probability' is excellent.

Master These Concepts for Quant Interviews

Our bootcamp covers probability, statistics, trading intuition, and 500+ real interview questions from top quant firms.

Book a Free Consult