Back to Blog
Quant TopicsStochastic Calculus
April 202620 min read

Stochastic Calculus Interview Questions: 20 Must-Know Problems

The 20 most frequently asked stochastic calculus problems in quant finance interviews, organized by topic — with complete solutions and the intuition behind each result.

Dr. James Chen

Senior Quant Researcher, Myntbit · Ex-Goldman Sachs Quantitative Strategies · PhD Applied Mathematics, MIT

Dr. James Chen spent 12 years in derivatives pricing and systematic trading, including roles at Goldman Sachs Quantitative Strategies and Citadel Securities. He has coached hundreds of candidates through quant finance interviews at top-tier firms.

What This Guide Covers

20

Problems

4

Topic Areas

3–5

Questions per Screen

9

FAQ Answers

Stochastic calculus is the mathematical backbone of quantitative finance. Whether you're interviewing at Jane Street, Citadel Securities, or Two Sigma, expect 3–5 stochastic calculus questions in your technical screen. Unlike standard calculus, stochastic calculus handles processes that evolve randomly over time — making it both powerful and counterintuitive.

This guide covers the 20 most frequently asked stochastic calculus interview problems, organized by topic, with solutions and the intuition behind each one.

Topics covered: Brownian motion · Itô's lemma · SDEs and GBM · Martingales and risk-neutral measure

Brownian Motion

Problems 1–5 · Foundational properties tested in every quant screen

Problem 1Define Standard Brownian Motion

State the four defining properties of a standard Brownian motion W_t.

W₀ = 0 (starts at zero) · Independent increments: W_t − W_s ⊥ W_s − W_r for r < s < t · Stationary increments: W_t − W_s ~ N(0, t−s) · Continuous sample paths almost surely.

Problem 2Compute E[W_t²]

What is E[W_t²]?

E[W_t²] = t

Since W_t ~ N(0,t), we have E[W_t²] = Var(W_t) = t. This result, [W,W]_t = t, is the foundation of Itô's lemma.

Problem 3Quadratic Variation

Compute the quadratic variation of Brownian motion and explain why it matters.

[W,W]_t = t ⟹ (dW_t)² = dt

[W,W]_t = t, captured by the heuristic (dW_t)² = dt. This non-zero quadratic variation is why stochastic calculus differs from ordinary calculus — Taylor expansions must include second-order terms.

Problem 4Is W_t² − t a Martingale?

Show that M_t = W_t² − t is a martingale.

dM_t = 2W_t dW_t + dt − dt = 2W_t dW_t

Apply Itô's lemma to f(t,x) = x² − t: dM_t = 2W_t dW_t + dt − dt = 2W_t dW_t. No drift term remains, so M_t is a martingale.

Problem 5Reflection Principle

Compute P(max_{0≤s≤t} W_s ≥ a) for a > 0.

P(max W_s ≥ a) = 2(1 − Φ(a/√t))

By the reflection principle: P(max_{0≤s≤t} W_s ≥ a) = 2P(W_t ≥ a) = 2(1 − Φ(a/√t)). This result appears in barrier option pricing and first-passage-time problems.

Itô's Lemma

Problems 6–10 · The stochastic chain rule — the most tested topic at derivatives desks

Problem 6Apply Itô's Lemma to exp(W_t)

Find d(e^{W_t}).

d(e^{W_t}) = e^{W_t} dW_t + ½ e^{W_t} dt

With f(x) = eˣ: d(e^{W_t}) = e^{W_t} dW_t + ½e^{W_t} dt. The ½e^{W_t}dt 'Itô correction' has no ordinary-calculus analogue. It ensures E[e^{W_t}] = e^{t/2}, not 1.

Problem 7Apply Itô's Lemma to W_t³

Find d(W_t³).

d(W_t³) = 3W_t² dW_t + 3W_t dt

With f′ = 3x², f″ = 6x: d(W_t³) = 3W_t² dW_t + 3W_t dt.

Problem 8Solve the GBM SDE

Solve dS_t = μS_t dt + σS_t dW_t.

S_t = S₀ exp[(μ − σ²/2)t + σW_t]

Apply Itô's lemma to ln S_t: d(ln S_t) = (μ − σ²/2) dt + σ dW_t. Integrating: S_t = S₀ exp[(μ − σ²/2)t + σW_t]. The −σ²/2 Itô correction ensures E[S_t] = S₀e^{μt}.

Problem 9Stochastic Integration by Parts

Compute ∫₀ᵀ W_t d(eᵗ).

∫₀ᵀ W_t eᵗ dt = W_T e^T − ∫₀ᵀ eᵗ dW_t

By Itô's product rule with deterministic eᵗ: d(W_t eᵗ) = eᵗ dW_t + W_t eᵗ dt. Integrating: ∫₀ᵀ W_t eᵗ dt = W_T e^T − ∫₀ᵀ eᵗ dW_t.

Problem 10Itô Isometry

State the Itô isometry and apply it.

E[(∫₀ᵀ H_t dW_t)²] = E[∫₀ᵀ H_t² dt]

For adapted H_t: E[(∫₀ᵀ H_t dW_t)²] = E[∫₀ᵀ H_t² dt]. Example: E[(∫₀ᵀ W_t dW_t)²] = ∫₀ᵀ E[W_t²] dt = ∫₀ᵀ t dt = T²/2.

SDEs and Key Processes

Problems 11–15 · GBM, OU, Vasicek, CEV, and Feynman-Kac

Problem 11Ornstein-Uhlenbeck (Mean Reversion)

Solve dX_t = κ(θ − X_t) dt + σ dW_t.

X_t = θ + (X₀ − θ)e^{−κt} + σ∫₀ᵗ e^{−κ(t−s)} dW_s

Using integrating factor e^{κt}: X_t = θ + (X₀ − θ)e^{−κt} + σ∫₀ᵗ e^{−κ(t−s)} dW_s. X_t is Gaussian; the mean reverts to θ at speed κ. Used for interest rates (Vasicek) and spread trading.

Problem 12CEV Model

Write the CEV SDE and explain when it reduces to GBM.

dS_t = μS_t dt + σS_t^γ dW_t

dS_t = μS_t dt + σS_t^γ dW_t. When γ = 1: this is GBM. When γ < 1: volatility rises as S falls (leverage effect), generating an implied volatility skew absent from standard GBM.

Problem 13Vasicek Short Rate

What does the Vasicek model predict about future rates, and what is its key limitation?

dr_t = κ(θ − r_t) dt + σ dW_t

dr_t = κ(θ − r_t) dt + σ dW_t implies normally distributed future rates with mean reversion. Key limitation: rates can turn negative — which became empirically relevant in EUR and JPY markets after 2014.

Problem 14SDE Existence and Uniqueness

State the conditions for a strong solution to an SDE.

The SDE dX_t = b(t,X_t) dt + σ(t,X_t) dW_t has a unique strong solution if b and σ are (1) Lipschitz continuous in x and (2) of at most linear growth in x. These conditions prevent the solution from exploding in finite time.

Problem 15Feynman-Kac Formula

State Feynman-Kac and give a finance application.

u(t,x) = E^{t,x}[e^{−r(T−t)} g(X_T)]

If u(t,x) solves ∂u/∂t + b·∂u/∂x + (σ²/2)·∂²u/∂x² − ru = 0 with terminal condition u(T,x) = g(x), then u(t,x) = E^{t,x}[e^{−r(T−t)}g(X_T)]. In finance: the Black-Scholes PDE solution equals the discounted risk-neutral expected payoff — letting quants choose between PDE solvers and Monte Carlo.

Martingales and Risk-Neutral Measure

Problems 16–20 · Girsanov, Black-Scholes, and the no-arbitrage pricing framework

Problem 16Girsanov's Theorem

State Girsanov's theorem and explain its role in option pricing.

W̃_t = W_t + ∫₀ᵗ θ_s ds is BM under Q

Define the measure change dQ/dP = exp(−∫₀ᵀ θ_s dW_s − ½∫₀ᵀ θ_s² ds). Then W̃_t = W_t + ∫₀ᵗ θ_s ds is a Brownian motion under Q. Setting θ = (μ−r)/σ removes the equity risk premium — under Q, option prices depend only on observable parameters, not on investors' expected return μ.

Problem 17Risk-Neutral European Call Price

Write the risk-neutral pricing formula for a European call.

C₀ = S₀N(d₁) − Ke^{−rT}N(d₂)

C₀ = e^{−rT} E^Q[max(S_T − K, 0)] = S₀N(d₁) − Ke^{−rT}N(d₂), where d_{1,2} = (ln(S₀/K) + (r ± σ²/2)T) / (σ√T).

Problem 18Martingale Representation Theorem

State the martingale representation theorem and give its finance implication.

M_t = M₀ + ∫₀ᵗ H_s dW_s

Every ℱ^W-martingale M_t can be written as M_t = M₀ + ∫₀ᵗ H_s dW_s for some adapted H. Finance implication: every contingent claim can be replicated by a self-financing dynamic portfolio — the mathematical foundation of delta hedging and market completeness.

Problem 19Change of Numeraire

Explain the change of numeraire technique.

Switching from the risk-neutral measure (numeraire = money market account) to the T-forward measure (numeraire = zero-coupon bond maturing at T) makes the forward price F_t = E^T[S_T | ℱ_t] a martingale. This eliminates the stochastic discount factor, simplifying pricing of swaptions, bond options, and caplets.

Problem 20Black-Scholes PDE Derivation

Derive the Black-Scholes PDE via delta hedging.

∂V/∂t + ½σ²S²·∂²V/∂S² + rS·∂V/∂S − rV = 0

Construct portfolio Π = V − ΔS. Apply Itô's lemma to V(t,S) and choose Δ = ∂V/∂S to cancel the dW_t risk term. The remaining riskless portfolio must earn rΠ dt by no-arbitrage.

What Interviewers Are Testing

Derivation fluency: Can you derive Itô's lemma from Taylor expansion, not just state it? Can you prove W_t² − t is a martingale without prompts?
Intuition, not memorization: Interviewers probe the 'why' — why does GBM have a −σ²/2 correction, why does Girsanov change only the drift, not the diffusion?
Cross-topic connections: The best answers connect Itô's lemma to Black-Scholes, Girsanov to risk-neutral pricing, Feynman-Kac to Monte Carlo vs PDE equivalence.
Speed under pressure: Target 3–5 minutes per problem under interview conditions. Cold-start each problem without peeking at formulas first.

More Guides

Frequently Asked Questions

Final Thoughts

These 20 problems span the stochastic calculus topics most likely to appear in quant finance interviews. Mastering them requires both computational fluency — deriving results from first principles without prompts — and conceptual clarity — explaining the intuition behind Itô corrections, Girsanov, and Feynman-Kac to a non-specialist. Work through problems cold before checking solutions. Time yourself. Focus on understanding why each result holds, not just memorizing formulas.

Practice Stochastic Calculus Problems

Myntbit offers 200+ curated stochastic calculus and quant math problems structured around the actual difficulty distribution of each firm's interview, with worked solutions and timed practice mode.