← Optiver Interview Insights

Optiver·Data Scientist·Onsite - Multi Round·Intermediate

IntermediatePrefer not to say
Jun 2026

Summary

Live 45-minute trading game round at Optiver for a Data Scientist role. You get a fake bankroll and have to price bets and quote markets under serious time pressure while the interviewer interrogates every single decision you make. Stressful but kind of fascinating once you get into it.

Questions Asked (8)

Q1

For each of five dice-sum propositions (sum equals 7, sum is even, at least one 6, sum 8 or more, sum 7 or less), should you bet given the quoted odds, and why?

Product Analytics & MetricsTechnical Trade-offs
Author's notes

This is where you live or die on knowing the two-dice distribution cold.

Create a free account to read the full note

AI HintsAI Generated

Suggested Approach

For each proposition, calculate the exact probability using combinatorics, then compare it to the implied probability from the quoted odds. Bet only if your calculated probability exceeds the implied probability, indicating positive expected value. Explain your reasoning clearly and concisely, showing both the probability calculation and the EV comparison.

Pro tip: Always compute the implied probability from the odds (e.g., for odds of 5:1, implied probability is 1/(5+1) = 1/6) and compare it to your calculated probability. This directly shows whether the bet is favorable, and it's a quick way to impress interviewers with your practical understanding of odds.

1. Understand the problem and odds format

Clarify the quoted odds for each proposition (e.g., '5 to 1' means you win $5 for a $1 stake, plus your stake back). Convert odds to implied probability using the formula: implied probability = 1 / (odds + 1) for 'odds against' format.

2. Calculate the true probability for each proposition

Use combinatorics to count favorable outcomes out of 6^5 = 7776 total outcomes. For example, sum equals 7: count the number of ways to get sum 7 with 5 dice (coefficient of x^7 in (x+x^2+...+x^6)^5).

3. Compare true probability to implied probability

For each proposition, if true probability > implied probability, the bet has positive expected value and you should bet; otherwise, do not bet. Compute expected value as (true probability * profit) - (1 - true probability) * stake, assuming a $1 stake.

4. Present your conclusions clearly

State for each proposition whether to bet and why, summarizing the probability and EV comparison. Be prepared to explain any calculations succinctly.

Key Points to Mention

  • Total number of outcomes for five dice is 6^5 = 7776.
  • Probability calculation methods: combinatorics (stars and bars with constraints) or generating functions.
  • Implied probability from odds: for odds of 'a to b', implied probability = b / (a + b).
  • Expected value (EV) calculation: EV = (P(win) * profit) - (P(lose) * stake).
  • For 'at least one 6', use complement: P(at least one 6) = 1 - P(no 6) = 1 - (5/6)^5.
  • For 'sum 8 or more' and 'sum 7 or less', symmetry can help: P(sum >= 8) = P(sum <= 27) but not directly symmetric; however, P(sum <= 7) + P(sum >= 8) = 1, so compute one and subtract from 1.

AI-generated suggestions, not part of the candidate's original notes. May be inaccurate — verify before relying on them.

Q2

Estimate the probability that the product of two cards drawn from a standard deck exceeds 100, and decide if 8:1 odds are worth taking.

Algorithms & Data StructuresTechnical Trade-offs
Author's notes

The prune is the key move here.

Create a free account to read the full note

AI HintsAI Generated

Suggested Approach

First clarify the rules: two cards drawn without replacement from a standard 52-card deck, and the product of their values (Ace=1, Jack=11, Queen=12, King=13) must exceed 100. Then compute the exact probability by counting favorable ordered or unordered pairs, and compare the implied probability from 8:1 odds (1/9 ≈ 11.11%) to decide if the bet is favorable.

Pro tip: Show that you can quickly bound the probability: the maximum product is 13*12=156, and only high cards can contribute, so the probability is small. Then compute exactly to avoid guessing, and explicitly state the break-even probability for 8:1 odds.

1. Clarify assumptions and rules

Confirm that two cards are drawn without replacement, card values are Ace=1, Jack=11, Queen=12, King=13, and 'product exceeds 100' means strictly greater than 100. State whether order matters (it doesn't for the product).

2. Determine which card pairs qualify

List all unordered pairs of distinct card values (v1, v2) with v1*v2 > 100. For example, (9,12)=108, (10,11)=110, (10,12)=120, (11,10)=110, etc. Note that the minimum qualifying product is 108 (9*12) or 110 (10*11), so only high cards matter.

3. Count favorable outcomes

For each qualifying value pair, count the number of card combinations: if values are different, there are 4*4=16 ordered pairs (or 8 unordered pairs if counting unordered). Sum over all qualifying pairs to get total favorable outcomes.

4. Compute probability

Divide the number of favorable outcomes by the total number of possible outcomes (52*51=2652 ordered pairs, or 1326 unordered pairs). Simplify to a decimal or fraction.

5. Evaluate the odds

Convert 8:1 odds to implied probability: 1/(8+1)=1/9≈11.11%. Compare the computed probability to this threshold. If the probability is greater than 11.11%, the bet is favorable; if less, it's unfavorable.

Key Points to Mention

  • The total number of possible outcomes: 52*51=2652 ordered pairs (or 1326 unordered).
  • The qualifying value pairs and their counts: e.g., (9,12), (10,11), (10,12), (11,10), (11,11), (11,12), (12,9), (12,10), (12,11), (12,12), (13,8), (13,9), (13,10), (13,11), (13,12), (13,13) — but careful: (11,11) is impossible because only four 11s exist, so max one 11 per draw.
  • The exact probability is 96/2652 = 8/221 ≈ 3.62% (if order matters) or 48/1326 = 8/221 ≈ 3.62% (if unordered).
  • Break-even probability for 8:1 odds is 1/9 ≈ 11.11%.
  • Since 3.62% < 11.11%, the bet is not worth taking (negative expected value).
  • Mention that the expected value of the bet is negative: EV = (1/9)*8 - (8/9)*1 = -0.111... per unit stake.

AI-generated suggestions, not part of the candidate's original notes. May be inaccurate — verify before relying on them.

Q3

How do you actually size your bets across all the propositions you like, given you have 1,000 to allocate and all Game A propositions settle on the same roll?

Technical Trade-offsAdaptability & Ambiguity
Author's notes

Kelly sizing is the obvious framework but the correlation across Game A bets completely breaks naive independent Kelly.

Create a free account to read the full note

AI HintsAI Generated

Suggested Approach

Frame the problem as a constrained portfolio optimization where all bets share a common risk factor (the roll), so you must account for correlation and maximize expected growth under a total budget. Walk through how you'd estimate edge and uncertainty for each proposition, then allocate using a risk-adjusted criterion like Kelly or mean-variance, explicitly handling the shared settlement. Close by discussing practical constraints like integer sizing, transaction costs, and robustness to model error.

Pro tip: Emphasize that because all bets settle on the same roll, diversification is limited—so you should size down relative to independent bets and consider hedging or prioritizing the highest-conviction propositions. Showing awareness of correlation's impact on optimal bet sizing signals real trading intuition.

1. Define the objective and constraints

Clarify that you want to maximize expected log wealth (or risk-adjusted return) subject to a total budget of 1,000 and the fact that all bets resolve on the same roll. Acknowledge that this is a single-period, correlated betting problem.

2. Estimate edge and uncertainty per proposition

For each Game A proposition, estimate the probability of winning, the payout odds, and the uncertainty around your edge. This could come from historical data, a model, or market prices if available.

3. Model the joint outcome distribution

Because all bets settle on the same roll, specify the joint distribution of outcomes—e.g., which numbers on the die win for each proposition. This captures correlation and allows you to compute portfolio-level risk and return.

4. Optimize allocation under correlation

Use a portfolio optimization method (e.g., Kelly criterion for correlated bets, mean-variance, or simulation-based optimization) to find bet sizes that maximize the objective. Show that you'd shrink positions due to correlation and parameter uncertainty.

5. Apply practical adjustments and validate

Round to feasible bet sizes, account for transaction costs or limits, and stress-test the allocation against model error or worst-case scenarios. Discuss how you'd monitor and adapt if new information arrives.

Key Points to Mention

  • Kelly criterion or expected log utility for optimal bet sizing under uncertainty
  • Correlation and shared risk factor: all bets settle on the same roll, reducing diversification benefits
  • Parameter uncertainty and the need to shrink bets (e.g., fractional Kelly) to avoid overbetting
  • Portfolio-level risk management: total exposure, maximum drawdown, and concentration limits
  • Practical constraints: integer contracts, minimum bet sizes, transaction costs, and liquidity
  • Robustness: sensitivity analysis and scenario testing to ensure the strategy performs under model error

AI-generated suggestions, not part of the candidate's original notes. May be inaccurate — verify before relying on them.

Q4

Quote a two-sided market (bid and ask) for a contract settling at the sum of two fair dice. How do you adjust if the interviewer keeps buying from you?

Pricing & MonetizationTechnical Trade-offs
Author's notes

Expected value of two dice is 7, standard deviation around 2.4.

Create a free account to read the full note

AI HintsAI Generated

Suggested Approach

First, compute the expected value and variance of the sum of two fair dice, then set a bid-ask spread around that fair value based on your uncertainty and desired edge. When the interviewer keeps buying from you, interpret it as a signal that your ask is too low and adjust by widening the spread and skewing your quotes upward to protect against adverse selection.

Pro tip: In a two-sided market, the flow of trades is information. If you're consistently getting hit on the ask, it's not just bad luck—it's a signal that your price is wrong, so you should update your fair value and widen your spread to avoid being picked off.

1. Compute the fair value

Calculate the expected value of the sum of two fair dice: 7. Also note the distribution (e.g., variance) to understand the risk.

2. Set an initial bid-ask spread

Choose a spread around the fair value that reflects your uncertainty and desired profit margin. For example, bid 6.5, ask 7.5.

3. Interpret repeated buying

If the interviewer keeps buying at your ask, treat it as a signal that your ask is too low. This is adverse selection: the buyer likely has better information or a different valuation.

4. Adjust quotes dynamically

Widen the spread and skew your quotes upward. For instance, raise both bid and ask, and increase the spread to protect yourself from further losses.

5. Explain the rationale

Articulate that you are managing inventory risk and information asymmetry. The adjustment is a standard market-making response to adverse flow.

Key Points to Mention

  • Expected value of sum of two dice is 7.
  • Variance and distribution of the sum (e.g., triangular distribution).
  • Bid-ask spread as compensation for risk and uncertainty.
  • Adverse selection and information asymmetry in market making.
  • Inventory management and skewing quotes to manage risk.
  • Dynamic adjustment of quotes based on order flow.

AI-generated suggestions, not part of the candidate's original notes. May be inaccurate — verify before relying on them.

Q5

All Game A bets settle on the same dice roll. How does that correlation change how you size each bet compared to treating them independently?

Technical Trade-offsAdaptability & Ambiguity
Author's notes

Short answer: you can't just add up independent Kelly fractions.

Create a free account to read the full note

AI HintsAI Generated

Suggested Approach

Start by acknowledging that correlation means the bets are not independent, so the combined risk is higher than the sum of individual risks. Explain that you would size each bet smaller to account for the shared variance, and use a portfolio-level risk measure like Value at Risk (VaR) or expected shortfall to determine optimal sizes. Emphasize that the key is to avoid overbetting due to underestimating the joint probability of losses.

Pro tip: Mention that in practice, you'd use a copula or factor model to capture the dependence structure, and that the Kelly criterion for correlated bets involves the inverse of the covariance matrix. This shows you understand both theory and practical implementation.

1. Clarify the correlation structure

Identify that all bets depend on the same dice roll, so their outcomes are perfectly correlated (or highly correlated if different bet types). Determine the joint distribution of outcomes.

2. Assess impact on risk

Explain that correlation increases portfolio variance and the probability of simultaneous losses. The combined risk is not the sum of individual risks; it's higher due to positive correlation.

3. Adjust sizing using portfolio theory

Use mean-variance optimization or Kelly criterion for correlated bets. The optimal bet size for each is smaller than if independent, and you may need to consider the bets as a single combined position.

4. Quantify with metrics

Calculate portfolio VaR, expected shortfall, or other risk measures under the correlated scenario. Compare to the independent case to show the difference in required capital or bet size.

5. Consider practical constraints

Discuss limits, margin requirements, and the possibility of hedging or diversifying across different dice rolls to reduce correlation risk.

Key Points to Mention

  • Correlation increases portfolio variance and tail risk.
  • Diversification benefit is reduced or eliminated when bets are perfectly correlated.
  • Optimal bet size under correlation is smaller than under independence.
  • Use of covariance matrix in Kelly criterion or mean-variance optimization.
  • Portfolio-level risk measures like VaR or expected shortfall are more appropriate than per-bet measures.
  • Potential to hedge or diversify by betting on different underlying events.

AI-generated suggestions, not part of the candidate's original notes. May be inaccurate — verify before relying on them.

Q6

If you're down to 400 after two rounds and feel like you need to double up to survive, should you still maximize expected value or should you deliberately seek out variance?

Adaptability & AmbiguityProduct Strategy
Author's notes

Classic Kelly vs survival question.

Create a free account to read the full note

AI HintsAI Generated

Suggested Approach

Acknowledge that the optimal strategy depends on the payout structure and your utility function, not just expected value. Explain that when survival is at stake, maximizing expected value may be suboptimal if it increases the probability of ruin; instead, you might deliberately seek variance to maximize the chance of reaching a target, even at the cost of lower expected value. Tie this to decision-making under uncertainty and the importance of aligning strategy with objectives.

Pro tip: Optiver values pragmatic decision-making: show you understand that in trading, survival and capital preservation often trump raw EV, and that variance can be a tool when you're in a 'double-or-nothing' situation. Mention that you'd quantify the trade-off using expected utility or probability of reaching a goal.

1. Clarify the objective

Determine whether the goal is to maximize expected value, maximize probability of survival, or reach a specific target (e.g., double up). The answer hinges on what you're optimizing for.

2. Assess the payout structure

Consider the game's rules: is it a fair bet, what are the odds, and what are the consequences of ruin? This shapes whether high-variance plays are beneficial.

3. Apply utility theory

Explain that with a concave utility function (risk-averse), you might avoid variance, but if you're in a 'must-double' situation, a convex utility (risk-seeking) can be rational to maximize chance of hitting the target.

4. Quantify the trade-off

Use probability of ruin or expected utility to compare strategies. For example, if you need to double up, a high-variance bet might give a 40% chance of success versus a 20% chance with a low-variance bet, even if EV is lower.

5. Decide and communicate

Make a recommendation based on the analysis, and explain that in practice, you'd adapt as new information arrives. Emphasize that deliberate variance-seeking can be optimal when the alternative is certain failure.

Key Points to Mention

  • Expected value vs. expected utility: EV alone ignores risk of ruin and survival constraints.
  • Probability of ruin and the concept of 'gambler's ruin'.
  • When survival is at stake, maximizing chance of reaching a target may require accepting lower EV.
  • The role of variance as a strategic tool in tournament or short-stack situations.
  • Optiver's trading context: capital preservation, risk management, and adapting to changing objectives.
  • Quantitative reasoning: using simulations or decision trees to compare strategies.

AI-generated suggestions, not part of the candidate's original notes. May be inaccurate — verify before relying on them.

Q7

Why do traders typically bet a fraction of the Kelly stake in practice, and what happens specifically when you overestimate your edge?

Technical Trade-offsPricing & Monetization
Author's notes

Overestimating edge inflates your Kelly fraction.

Create a free account to read the full note

AI HintsAI Generated

Suggested Approach

Start by defining the Kelly criterion and its assumptions, then explain why fractional Kelly is used in practice due to estimation error and risk aversion. Finally, detail the consequences of overestimating edge, emphasizing the rapid growth of overbetting risk and potential ruin.

Pro tip: Quantify the impact: overestimating edge by a factor of 2 can lead to betting twice the optimal fraction, which increases the probability of ruin and reduces long-term growth rate to zero or negative.

1. Define Kelly Criterion

State that Kelly maximizes expected logarithmic utility of wealth, assuming known true probabilities and payoffs. It gives the optimal fraction to bet for long-term growth.

2. Explain Practical Deviations

Discuss why traders bet a fraction (e.g., half-Kelly) due to parameter uncertainty, estimation error, risk of ruin, and non-log utility preferences. Fractional Kelly reduces volatility and drawdowns at a modest cost to growth.

3. Analyze Overestimation of Edge

If edge is overestimated, the Kelly fraction is too high. This leads to overbetting, which increases variance and can cause negative expected growth if the bet size exceeds twice the true Kelly fraction.

4. Quantify Consequences

Use the formula for growth rate: g(f) = f * edge - f^2 * variance / 2. Overestimating edge leads to f > f*, reducing g(f) and potentially making it negative, leading to ruin.

5. Conclude with Risk Management

Emphasize that fractional Kelly is a robust risk management tool that accounts for model uncertainty and avoids catastrophic losses from overestimation.

Key Points to Mention

  • Kelly criterion maximizes expected log wealth but requires perfect knowledge of edge and odds.
  • Fractional Kelly (e.g., half-Kelly) is used to mitigate estimation error and reduce drawdowns.
  • Overestimating edge leads to overbetting, which can turn positive expected growth negative.
  • The growth rate function is concave; betting beyond the Kelly fraction reduces growth and increases ruin risk.
  • At twice the Kelly fraction, expected growth rate is zero; beyond that, it's negative.
  • Practical traders use fractional Kelly due to risk aversion and non-normal return distributions.

AI-generated suggestions, not part of the candidate's original notes. May be inaccurate — verify before relying on them.

Q8

In the market-making game, the interviewer lifts your offer three times in a row. When is that about inventory management versus information, and does the distinction even matter in a dice game?

Pricing & MonetizationAdaptability & Ambiguity
Author's notes

It doesn't matter from an information standpoint since dice have no private signal.

Create a free account to read the full note

AI HintsAI Generated

Suggested Approach

First, clarify that in a dice game, the distinction between inventory management and information is blurred because the true value is known probabilistically and trades are anonymous. Then, explain that three consecutive lifts likely indicate information, but you must also consider inventory risk and adjust quotes accordingly. Finally, emphasize that the key is to update your beliefs and manage risk dynamically, regardless of the label.

Pro tip: In market-making interviews, always tie your answer back to risk management: show that you would widen spreads or skew quotes to protect against adverse selection, even if you suspect information.

1. Clarify the game mechanics

State your assumptions about the dice game: e.g., is it a single die with known distribution, are trades anonymous, and is there a finite inventory? This sets the context for your reasoning.

2. Define inventory management vs. information

Explain that inventory management is about controlling risk from holding a position, while information is about the counterparty knowing something you don't. In a dice game, information is probabilistic, so the line is fuzzy.

3. Analyze the three lifts

Consider that three consecutive lifts are unlikely under normal inventory-driven flow, suggesting informed trading. But also note that if your inventory is already skewed, you might be quoting aggressively, leading to lifts.

4. Decide on a response

Describe how you would adjust: widen spreads, skew quotes away from the direction of the lifts, or reduce size. Emphasize that the response is similar whether it's information or inventory, because both require risk mitigation.

5. Conclude on the distinction

Argue that in a dice game, the distinction matters less because the underlying value is known probabilistically; what matters is updating your beliefs and managing risk. The label is less important than the action.

Key Points to Mention

  • Adverse selection: three lifts may indicate informed traders.
  • Inventory risk: holding a position exposes you to price moves.
  • Probabilistic nature of dice game: true value is known distribution, so information is about the roll, not hidden value.
  • Quote skewing: adjust prices to discourage further lifts in one direction.
  • Risk management: widen spreads or reduce size to control exposure.
  • Bayesian updating: revise beliefs about counterparty information based on trade sequence.

AI-generated suggestions, not part of the candidate's original notes. May be inaccurate — verify before relying on them.