Quant Topics
April 202616 min read

Black-Scholes Model: Derivation, Intuition & Interview Questions

MyntBit Editorial

Quant Interview Prep

MyntBit is a quant interview prep platform with 1,000+ practice questions, firm-specific study plans, and free trading games. This guide is part of our technical interview preparation series on derivatives and stochastic calculus.

The Black-Scholes model is arguably the most consequential equation in modern finance. Published in 1973 by Fischer Black and Myron Scholes—with foundational contributions from Robert Merton—it provides a closed-form solution for pricing European options. Scholes and Merton received the Nobel Prize in Economics in 1997 for this work.

Today, despite well-documented limitations, Black-Scholes remains the universal quoting convention on derivatives trading floors—and an unavoidable topic in every quant finance interview. Whether you are preparing for a quant researcher role at Jane Street, a derivatives position at Goldman Sachs, or a trading internship at Citadel Securities, you will be asked about this model.

1What Is the Black-Scholes Model?

Black-Scholes gives the theoretical price of a European option—one that can only be exercised at expiry—on a non-dividend-paying stock.

European Call Price

C = S·N(d1) − K·e−rT·N(d2)

C = call price   S = current stock price   K = strike price

r = risk-free rate   T = time to expiration   σ = implied volatility

N(·) = cumulative standard normal CDF

d1 = [ln(S/K) + (r + σ²/2)T] / (σ√T)

d2 = d1 − σ√T

European Put Price (via Put-Call Parity)

P = K·e−rT·N(−d2) − S·N(−d1)

2Key Assumptions

Understanding what the model assumes—and where it breaks down—is just as important as knowing the formula. Interviewers will test both.

1
Log-normal price dynamics Stock price follows geometric Brownian motion; log-returns are normally distributed.
2
Constant volatility σ is fixed over the option’s life. In practice, volatility smiles and surfaces violate this directly.
3
No dividends The underlying pays no dividends before expiry.
4
Frictionless, complete markets No transaction costs, taxes, or restrictions on short-selling.
5
Constant risk-free rate r is known and does not change.
6
European exercise only The option cannot be exercised early.

These assumptions are restrictive. Real markets exhibit fat tails, jump risk, volatility clustering, and stochastic interest rates. Understanding these gaps—and how practitioners work around them—is what separates a textbook quant from a practitioner.

3The Derivation: Step-by-Step

You do not need to reproduce every line from memory in an interview. You must understand the structure and be able to walk through each logical step.

1

Model the Stock Price

Assume the stock price S follows geometric Brownian motion (GBM):

dS = μS dt + σS dW

where μ is the real-world drift, σ is volatility, and W is a standard Wiener process (Brownian motion).

2

Apply Itô’s Lemma

For any twice-differentiable function V(S, t) representing the option price, Itô’s Lemma gives:

dV = (∂V/∂t + μS·∂V/∂S + ½σ²S²·∂²V/∂S²) dt + σS·∂V/∂S dW

This is the stochastic differential equation governing option value dynamics.

3

Construct the Delta-Hedged Portfolio

Form a portfolio Π by going long one option and short Δ = ∂V/∂S shares:

Π = V − (∂V/∂S)·S

The stochastic dW terms cancel, leaving a riskless portfolio: dΠ = (∂V/∂t + ½σ²S²·∂²V/∂S²) dt

4

Apply the No-Arbitrage Condition

A riskless portfolio must earn the risk-free rate. Therefore:

dΠ = rΠ dt = r(V − S·∂V/∂S) dt
5

Derive the Black-Scholes PDE

Equating the two expressions for dΠ gives the Black-Scholes PDE:

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

Solve with Boundary Conditions

For a European call, the terminal condition at expiry T is: V(S, T) = max(S − K, 0). A change of variables transforms the PDE into the heat equation from physics. The key substitution is x = ln(S), which linearizes the log-normal dynamics.

Solving yields the closed-form Black-Scholes call formula.

4The Intuition: What Does the Formula Mean?

C = S·N(d1) − K·e−rT·N(d2)

S·N(d1)

The present value of receiving the stock if the option finishes in the money. N(d1) is the hedge ratio (delta): the risk-adjusted probability of exercise weighted by the asset's expected value.

K·e−rT·N(d2)

The present value of paying the strike. N(d2) is the risk-neutral probability that S_T > K at expiry.

Call price = "What you'll receive (stock) minus what you'll pay (strike), both probability-weighted."

Why is N(d1) ≠ N(d2)?

This distinction trips up many candidates. N(d2) is the risk-neutral probability of exercise. N(d1) accounts for the lognormal distribution of S: even if there is a 50% chance of exercise, the expected asset value conditional on being in the money is higher (due to the upward skew of the lognormal). The σ²/2 gap between d1 and d2 corrects for this asymmetry.

5The Greeks: Risk Sensitivities

GreekDefinition
Delta (Δ)∂C/∂S ≈ N(d1)
Gamma (Γ)∂²C/∂S²
Theta (Θ)∂C/∂t
Vega∂C/∂σ
Rho (ρ)∂C/∂r

The gamma-theta relationship is central to options trading: long gamma positions bleed theta daily but profit from large realized moves. A position is profitable when realized volatility exceeds implied volatility.

6Black-Scholes in Practice

Real traders use Black-Scholes as a quoting convention via implied volatility, not as a literal pricing model. Implied volatility—the σ you back out from observed market prices—varies across strikes and expiries, producing the volatility smile (or skew for equities). This directly violates the model's constant-σ assumption.

Local Volatility (Dupire): σ is a deterministic function of S and t, calibrated to the full implied vol surface.
Stochastic Volatility (Heston, SABR): σ itself follows a stochastic process, capturing mean-reversion and vol-of-vol dynamics.
Jump-Diffusion (Merton, Kou): Poisson jump processes are added for fat tails and sudden price discontinuities.

Understanding these extensions—and why Black-Scholes is still taught—is exactly the kind of conceptual depth top quant firms expect. Review Myntbit's quant interview guides to see how each major firm tests derivatives knowledge.

7Interview Questions & Answers

The following 10 Q&A pairs cover the most commonly-asked Black-Scholes questions across quant researcher, quant trader, and quant analyst interviews. For firm-specific variants and worked numerical problems, see Myntbit's stochastic calculus practice problems.

1

Walk me through the Black-Scholes derivation from first principles.

Start with GBM: dS = μS dt + σS dW. Apply Itô’s Lemma to option value V(S,t) to get dV in terms of dt and dW. Form the delta-hedged portfolio Π = V − (∂V/∂S)·S, which eliminates the stochastic dW term. By no-arbitrage, this riskless portfolio earns the risk-free rate: dΠ = rΠ dt. Equating the two expressions for dΠ gives the Black-Scholes PDE. Solving the PDE with terminal condition V(S,T) = max(S−K,0) via a heat-equation substitution yields the closed-form formula.

2

What does N(d2) represent? How is it different from N(d1)?

N(d2) is the risk-neutral probability that the call expires in the money — formally Pᵠ(S_T > K). N(d1) is the option’s delta: the hedge ratio and also the risk-adjusted probability of exercise that accounts for the conditional expected stock value. Because lognormal returns are positively skewed, the expected stock price given S_T > K exceeds the forward price, so N(d1) > N(d2). The gap is exactly σ√T.

3

Why is Black-Scholes still used if its assumptions are clearly violated?

Because implied volatility provides a model-free, universal quoting convention. Traders don’t believe in constant vol; they use Black-Scholes to translate a single number (IV) into an option price, enabling direct comparisons across strikes, expiries, and underlyings. The model’s analytic tractability and universal adoption make it the benchmark even when everyone acknowledges it is incomplete.

4

What is the volatility smile, and what does it tell you about Black-Scholes?

The volatility smile is the pattern where implied volatilities differ by strike for options sharing the same expiry. Under Black-Scholes, σ is constant, which predicts a flat IV surface. The smile (or skew for equities, where OTM puts have higher IV than OTM calls) reflects market pricing of fat tails, crash risk, and supply/demand imbalances. It demonstrates that markets assign far more probability to extreme moves than the lognormal distribution predicts.

5

How do you delta-hedge an options position in practice?

Delta is the number of shares required to offset one unit of option exposure. For a long call, short Δ = N(d1) shares to be delta-neutral. As S changes, delta changes (due to gamma), requiring continuous rebalancing. In discrete time, the cumulative P&L from rebalancing — called “gamma scalping” — depends on whether realized volatility exceeds implied volatility. If realized vol > implied vol, the long gamma position is profitable after accounting for theta decay.

6

What happens to the option price as volatility approaches zero?

As σ → 0, the call price converges to max(S − K·e^(−rT), 0) — the discounted intrinsic value. The option becomes a digital payoff: worth its discounted intrinsic value if in the money, zero if out of the money. There is no optionality value remaining; you know with certainty whether the option will finish in the money.

7

Derive put-call parity and explain how it relates to Black-Scholes.

By no-arbitrage, a portfolio of long call + short put (same strike K, expiry T) has the same payoff as a long forward contract on S with delivery price K. Therefore: C − P = S − K·e^(−rT). This relationship is model-free — it holds for any arbitrage-free pricing model, including Black-Scholes. You can verify Black-Scholes is consistent: plugging the BS call and put formulas into C − P yields S − K·e^(−rT) identically.

8

What is the risk-neutral measure and why is it used in derivatives pricing?

The risk-neutral measure Q is the equivalent martingale measure under which all assets discounted at the risk-free rate are martingales. Under Q, all assets grow at rate r regardless of their actual risk profile. Option prices are then discounted expected payoffs: C = e^(−rT)·Eᵠ[max(S_T − K, 0)]. This eliminates risk preferences from the pricing problem — we don’t need to know the real-world drift μ, only σ and r. The Girsanov theorem formalizes the measure change from real-world P to Q.

9

How do dividends affect the Black-Scholes formula?

For a continuous dividend yield q, use the Merton (1973) extension: adjust d1 = [ln(S/K) + (r − q + σ²/2)T] / (σ√T) and replace S with S·e^(−qT) in the formula. Dividends reduce the effective forward price of the stock, lowering call values and raising put values. For discrete dividends, practitioners typically subtract the present value of expected dividends from S. For American calls on dividend-paying stocks, early exercise before the ex-dividend date may be optimal.

10

Can Black-Scholes price American options?

Not directly. For American calls on non-dividend-paying stocks, early exercise is never optimal (it is always better to sell the option), so the American price equals the European BS price. For American puts or calls on dividend-paying stocks, early exercise may be optimal, and there is no closed-form solution. Practitioners use binomial trees (Cox-Ross-Rubinstein), finite difference PDE solvers, or Monte Carlo with Longstaff-Schwartz for American option pricing.

8Preparing for the Interview

Black-Scholes questions range from conceptual explanations to live derivations to numerical problems. Top quant firms—particularly market-makers and HFTs—often ask candidates to derive the PDE on a whiteboard and explain the intuition behind each step without notes.

Conclusion

The Black-Scholes model is simultaneously a mathematical landmark and a practical shortcut. Mastering it means understanding the derivation (GBM → Itô → delta-hedge → PDE → heat equation), the probabilistic interpretation (risk-neutral pricing), the key sensitivities (the Greeks), and the real-world limitations (volatility smile, fat tails, early exercise).

Candidates who can move fluidly between all four levels are the ones who land quant roles at elite firms.

Frequently Asked Questions

Related Guides

Ready to Practice Derivatives Interview Questions?

Work through Black-Scholes derivations, Greeks calculations, and options pricing problems calibrated to real quant interview difficulty.