CONTENTS

Exercise: Reiner-Rubinstein closed-form for DOC

For a down-and-out call with BKB \le K (barrier below strike), under Black-Scholes:

DOC=CBS(S0,K)(S0B)12νCBS ⁣(B2S0,K),\text{DOC} = C_{\text{BS}}(S_0, K) - \left(\frac{S_0}{B}\right)^{1 - 2\nu} C_{\text{BS}}\!\left(\frac{B^2}{S_0}, K\right),

where ν=(r+σ2/2)/σ2\nu = (r + \sigma^2/2)/\sigma^2, and CBSC_{\text{BS}} is the standard Black-Scholes call price.

(The exponent convention varies in the literature; some use 12(r/σ2)1 - 2(r/\sigma^2).)

Tasks

  1. Implement the Reiner-Rubinstein formula. Verify against S0=100,K=100,B=80,T=1,r=0.05,σ=0.2S_0 = 100, K = 100, B = 80, T = 1, r = 0.05, \sigma = 0.2. The result should match the FDM result from the previous exercise.

  2. Reflection principle interpretation. The term (S0/B)12νCBS(B2/S0,K)(S_0/B)^{1-2\nu} C_{\text{BS}}(B^2/S_0, K) is the "reflected" vanilla call. Argue heuristically why a Brownian motion's reflected paths give this formula.
  3. Limiting cases.
    • B0B \to 0: the barrier is unreachable; DOC \to vanilla. Verify.
    • BKB \to K: the barrier is at the strike; DOC ?\to ?. Explore numerically.
    • B>KB > K: the formula doesn't apply directly; why?
  4. Greeks. Compute the analytical delta of the DOC by differentiating the closed-form. Compare with FDM-based delta near the spot.