CONTENTS

Exercise: Black-Scholes Call Price as a Risk-Neutral Expectation

Problem

Under the risk-neutral measure Q\mathbb{Q}, the stock price follows geometric Brownian motion:

dSt=rStdt+σStdWtQdS_t = r S_t\,dt + \sigma S_t\,dW_t^{\mathbb{Q}}

so ST=S0exp((r12σ2)T+σWTQ)S_T = S_0 \exp\bigl((r - \tfrac{1}{2}\sigma^2)T + \sigma W_T^{\mathbb{Q}}\bigr) with WTQN(0,T)W_T^{\mathbb{Q}} \sim \mathcal{N}(0, T).

The price of a European call with strike KK and maturity TT is

C0=erTEQ[(STK)+]C_0 = e^{-rT}\,\mathbb{E}^{\mathbb{Q}}[(S_T - K)^+]
  1. Split EQ[(STK)+]=EQ[ST1{ST>K}]KQ(ST>K)\mathbb{E}^{\mathbb{Q}}[(S_T - K)^+] = \mathbb{E}^{\mathbb{Q}}[S_T \mathbf{1}_{\{S_T > K\}}] - K \,\mathbb{Q}(S_T > K). Compute Q(ST>K)\mathbb{Q}(S_T > K) in closed form using the normal CDF Φ\Phi. Express your answer in terms of
d2=ln(S0/K)+(r12σ2)TσTd_2 = \frac{\ln(S_0/K) + (r - \tfrac{1}{2}\sigma^2)T}{\sigma\sqrt{T}}
  1. Compute EQ[ST1{ST>K}]\mathbb{E}^{\mathbb{Q}}[S_T \mathbf{1}_{\{S_T > K\}}] by completing the square inside the Gaussian integral. Express your answer in terms of S0,r,TS_0, r, T, and
d1=ln(S0/K)+(r+12σ2)TσTd_1 = \frac{\ln(S_0/K) + (r + \tfrac{1}{2}\sigma^2)T}{\sigma\sqrt{T}}
  1. Combine to obtain the Black-Scholes call formula C0=S0Φ(d1)KerTΦ(d2)C_0 = S_0 \Phi(d_1) - K e^{-rT}\Phi(d_2).
  2. Verify that the μ\mu (real-world drift) nowhere appears. Explain in one sentence why this is expected from risk-neutral pricing.

Hint

For part 2, write ST=S0e(rσ2/2)TeσWTQS_T = S_0 e^{(r - \sigma^2/2)T} e^{\sigma W_T^{\mathbb{Q}}} and use the change of variables z=WTQ/TN(0,1)z = W_T^{\mathbb{Q}}/\sqrt{T} \sim \mathcal{N}(0, 1). Inside the integrand eσTzez2/2e^{\sigma\sqrt{T}z} e^{-z^2/2}, complete the square: σTzz2/2=(zσT)2/2+σ2T/2\sigma\sqrt{T}z - z^2/2 = -(z - \sigma\sqrt{T})^2/2 + \sigma^2 T/2.

Jump to the solution when you're ready.