[Stochastic Process] Black-Scholes Formula

1. Introduction

Motivation: Find the cost of buying options to prevent arbitrage opportunity.
Definition: Let x(s) be the price of a stock at time s, considered on a time horizon s in [0,t]. The  following actions are available:
  • At any time s, 0 leq s leq t, you can buy or sell shares of stock for X(s)
  • At time s = 0, there are N options available. The cost of option i is c_i per option which allows you to purchase 1 share at time t_i for price k_i.
Objective: the goal is to determine c_i so that no arbitrage opportunity exists.
Approach: By the arbitrage theorem, this requires finding a probability measure so that each bet has zero expected pay off.

We try the following probability measure on X(t): suppose that X(t) is geometric Brownian motion. That is, X(t) = x_0 e^Y(t), where Y(t) = sigma B(t) + mu t.

2. Analyze Bet 0: Purchase 1 share of stock at time s

Now, we consider a discount factor alpha. Then, the expected present value of the stock at time t is
E[e^{-alpha t} X(t) | X(s)] = e^{-alpha t} X(s) e { mu/(t-s) + frac{sigma^2(t-s)}{2}}

Choose mu, sigma such that alpha = mu + sigma^2/2

Then E[e^{-alpha t} X(t) | X(s)] = e^{-alpha t} X(s) e^{-alpha(t-s)} = e^{-alpha s} X(s).

Thus the expected present value of the stock at t equals the present value of the stock when it is purchased at time s. That is, the discount rate exactly equals to the expected rate of the stock returns.


3. Analyze Bet i: Purchase 1 share of option i (at time s =0)

First, we drop the subscript i to simplify notation.

Expected present value of the return on this bet is

- c + E[max (e^{alpha t} X(t)- k), 0]
= -c + E[e^{-alpha t} (X(t) - k)^+]

Setting this equal to zero implies that
ce^{alpha t}  = E[ (X(t) - k)^+] = E[(x_0 e^{Y(t)} - k)^+]
                         = int^{infty}_{-infty} (x_0 e^y - k)^+ frac{1}{2 pi sigma^2 t} e^{-frac{(y-ut)^2}{2 sigma^2 t}} dy

(x_0 e^y - k)+ has value 0 when x_0 e^{Y(t)} - k leq 0, i.e., when Y(t) leq ln(k/x_0)

Thus the integral becomes
ce^{alpha t}  = E[ (X(t) - k)^+] = E[(x_0 e^{Y(t)} - k)^+]
                         = int^{infty}_{ln k/x_0} (x_0 e^y - k)^+ frac{1}{2 pi sigma^2 t} e^{-frac{(y-ut)^2}{2 sigma^2 t}} dy

Now, apply a change of variables:
w = frac{y - mu t}{sigma sqrt(t)}, i.e.,  </span>sigma sqrt(t) w + mu t = y

4. Summary

No arbitrage exists if we find costs and a probability distribution such that expected outcome of every bet is 0.
  • If we suppose that the stock price follow geometric Brownian motion and we choose the option costs according to the above formula, then the expected outcome of every bet is 0.
  • Note: the stock price does not actually need to follow geometric Brownian motion. We are saying that if stock price follow Brownian motion, then the expected outcome of very bet would be 0, so no arbitrage exists.
A few sanity checks
  • When t = infty, cost of option is x_0
  • When t=0, cost of option is x_0 - k
  • As t increases, c increases
  • As k increases, c decreases
  • As x_0 increases, c increases
  • As sigma increase, c increase (assuming mu >0)
  • As alpha increases, c decreases 

Leave a Reply