process with integral is martingale

1.3k Views Asked by At

How to show that the process $X_t=tW_t - \int_0^t W_s ds $ is a martingale?

I guess I have to use the definition of martingale and properties of Wiener process, but I stack with this integral. Please, help me. What I've done:

$E(X_t|F_r)=E(tW_t- \int_0^t W_s ds|F_r)=tE(W_t-W_r|F_r)+tE(W_r|F_r)-E(\int_0^t W_s ds|F_r)=tE(W_t-W_r)+tW_r-E(\int_0^t W_s ds|F_r)=tW_r-E(\int_0^t W_s ds|F_r)$

2

There are 2 best solutions below

2
On BEST ANSWER

We want to show that $X_t = tW_t - \int_0^t W_s \mathrm{d}s$ is a martingale. Let $r\leq t$ then $$ \mathbb{E}[X_t\ | \ \mathcal{F}_r]= \mathbb{E}[tW_t\ |\ \mathcal{F}_r] - \mathbb{E}\left[\int_0^t W_s \mathrm{d}s \ | \ \mathcal{F}_r\right]. $$

As you noticed $$\mathbb{E}[tW_t\ |\ \mathcal{F}_r] = \mathbb{E}[t(W_t-W_r) + tW_r\ |\ \mathcal{F}_r] = t \underbrace{\mathbb{E}[W_t - W_r \ | \mathcal{F}_r]}_{=\mathbb{E}[W_t-W_r] = 0} + t \underbrace{\mathbb{E}[W_r\ |\ \mathcal{F}_r]}_{=W_r} = tW_r,$$ now we take the second part, that is, $$\begin{align*}\mathbb{E}\left[\int_0^t W_s \mathrm{d}s \ | \ \mathcal{F}_r\right] =& \mathbb{E}\left[\int_0^r W_s \mathrm{d}s + \int_r^t W_s \mathrm{d}s \ | \ \mathcal{F}_r\right] \\=& \mathbb{E}\left[\int_0^r W_s \mathrm{d}s \ | \ \mathcal{F}_r\right]+ \mathbb{E}\left[\int_r^t W_s \mathrm{d}s \ | \ \mathcal{F}_r\right] \\ =& \int_0^rW_s \mathrm{d} s + \mathbb{E}\left[\int_r^t W_r + (W_s-W_r) \mathrm{d}s \ | \ \mathcal{F}_r\right] \\ =& \int_0^r W_s \mathrm{d}s + \mathbb{E}\left[\int_r^t W_r \mathrm{d}s \ | \ \mathcal{F}_r \right] + \mathbb{E}\left[\int_r^t (W_s-W_r) \mathrm{d}s \ | \ \mathcal{F}_r \right] \\ =& \int_0^r W_s \mathrm{d}s + \mathbb{E}\left[(t-r)W_r \ | \ \mathcal{F}_r \right] + \mathbb{E}\left[\int_r^t (W_s-W_r) \mathrm{d}s \ | \ \mathcal{F}_r \right] \\ =& \int_0^r W_s \mathrm{d}s + (t-r)W_r + \int_r^t \underbrace{\mathbb{E}[W_s - W_r | \mathcal{F}_r]}_{=0} \mathrm{d}s = \\ =& (t-r)W_r + \int_0^r W_s \mathrm{d}s .\end{align*}$$ I have used the fact that $ \mathbb{E}\left[\int_r^t (W_s-W_r) \mathrm{d}s \ | \ \mathcal{F}_r\right]=\int_r^t \mathbb{E}[W_s-W_r | \mathcal{F}_r] \mathrm{d}s$ via Fubini's theorem for more detail on this you may want to see this link.

Hence, $$\mathbb{E}[X_t\ | \ \mathcal{F}_r] = tW_r - (t-r)W_r - \int_0^r W_s \mathrm{d}s =rW_r - \int_0^r W_s \mathrm{d}s = X_r. $$

0
On

Using Integration by Part formula we have : $$t.W_t -\int_0^t W_s ds = \int_0^t s.dW_s+ 0$$ (the $0$-term comes from quadratic covariation between $t$ and $W_t$ which is null)

So $X_t=\int_0^t s.dW_s$, to show that this is indeed a martingale is straightforward using the facts that : $W_t$ is a square integrable martingale and $s$ is a bounded predictable process.

You get the martingale property for $X$ from lemma 3 here.

Best regards