5

I have $X_t = e^{5B_t}$ and Where $B_t$ is brownian motion at time $t$. $M_t = X_t \cdot e^{-bt}$

I need to find a value for $b$ such that $M_t$ is a martingale.

I am encountering difficulty, however.

$$\mathbb{E}[ e^{5B_t}e^{-bt} | \mathcal{F}_s] \text{for} s\leq t$$ $$= e^{-bt}\mathbb{E}[ e^{5B_t} | \mathcal{F}_s]$$ $$= e^{-bt}\mathbb{E}[ e^{5(B_t-B_s)+5B_s} | \mathcal{F}_s]$$ $$=\exp\left\{\frac{25(t-s)}{2}+5B_s-bt\right\}$$

Now since $M_t$ is a martingale if $E[M_t | \mathcal{F}_s] = M_s$

We require that $$\exp\left\{\frac{25(t-s)}{2}+5B_s-bt\right\} = \exp\{5B_s-bs\}$$

Isn't this impossible to solve? Or have I made a mistake?

edit: $b= 12.5$

mpiktas
  • 33,140
  • 5
  • 82
  • 138
elbarto
  • 437
  • 4
  • 12

2 Answers2

5

You should apply Ito's lemma: Let $Y_t = 5 B_t - bt$ then $$ M_t = \exp(5 B_t -bt) = \exp(Y_t) $$ thus $$ d\exp(Y_t) = dM_t = M_t dY_t + M_t \frac{1}{2} 25 dt = M_t (5 dB_t - b dt + 12.5 dt). $$ It will be a martingale if the drift terms cancel. Thus if $b = 12.5$.

Richi W
  • 3,216
  • 3
  • 30
  • 53
4

You are almost there. Write $bt=bs+b(t-s)$ and think how the second summand relates to $25/2(t-s)$.

mpiktas
  • 33,140
  • 5
  • 82
  • 138