CONTENTS

Exercise: Building the Probability Space for a Two-Step Binomial Tree

Problem

A stock is worth S0=100S_0 = 100 at time 0. At each step it moves up by a factor u=1.1u = 1.1 or down by a factor d=0.9d = 0.9. There are two time steps, so the tree has paths uuuu, udud, dudu, dddd.

The risk-free rate is r=0.05r = 0.05 per step (continuously compounded).

  1. Write down the sample space Ω\Omega for this two-step model. What does each element ωΩ\omega \in \Omega represent?

  2. Write down the full power-set sigma-algebra F\mathcal{F}. How many elements does it have?

  3. Under the real-world measure P\mathbb{P}, each up-move has probability p=0.6p = 0.6 and each down-move has probability 1p=0.41 - p = 0.4, independently. Assign P\mathbb{P} to each element of Ω\Omega.

  4. Find the risk-neutral measure Q\mathbb{Q} by solving for the risk-neutral probability qq of an up-move at each step. (Assume the stock pays no dividends and that d<er<ud < e^r < u.)

  5. Compare P\mathbb{P} and Q\mathbb{Q} on the event A={uu}A = \{uu\}. Are they equal? Are they equivalent (i.e., do they agree on which events have probability zero)? What does equivalence of measures mean in this context?

Hint

For part 4, the risk-neutral condition is that the discounted stock price erSte^{-r}S_t is a martingale under Q\mathbb{Q}. At each node, this gives:

St=er[qStu+(1q)Std]S_t = e^{-r}[q \cdot S_t u + (1-q) \cdot S_t d]
Jump to the solution when you're ready.