CONTENTS

Exercise: Computing and Interpreting Gamma Across Strikes and Expiries

Prerequisites: Gamma, Delta

Problem

Under Black-Scholes with S=100,r=0.05,q=0,σ=0.2S = 100, r = 0.05, q = 0, \sigma = 0.2:

  1. Compute Γ\Gamma across strikes K{80,90,100,110,120}K \in \{80, 90, 100, 110, 120\} for T=0.5T = 0.5. Plot (or tabulate) and identify where gamma is maximised.

  2. For K=100K = 100, compute Γ\Gamma across expiries T{1.0,0.5,0.1,0.01}T \in \{1.0, 0.5, 0.1, 0.01\}. What trend do you see?

  3. Verify by finite difference. For S=100,K=100,T=0.5S = 100, K = 100, T = 0.5, compute Γ\Gamma numerically via the central difference (Δ(S+h)Δ(Sh))/(2h)(\Delta(S + h) - \Delta(S - h))/(2h) with h=0.01h = 0.01. Compare to closed form.
  4. Call–put gamma equality. Compute put gamma (by direct differentiation of put formula) at S=K=100,T=0.5S = K = 100, T = 0.5. Verify it equals call gamma, as required by put-call parity.

Hint

Put formula: P(S,t)=Ker(Tt)Φ(d2)Seq(Tt)Φ(d1)P(S, t) = Ke^{-r(T-t)}\Phi(-d_2) - Se^{-q(T-t)}\Phi(-d_1).

Jump to the solution when you're ready.