A stochastic process $V_t$ is defined by $$V_t =\sqrt{t(t+W_t^2)}$$ $W_t$ is the Wiener process and $t$ denotes the time ($t > 0$). Use Ito's formula to determine the stochastic differential equation satisfied by $V_t$.
I have taken the known process to be just $W$. Then $a(x,t) = 0$ and $b(x,t)=1$. The process $V$ is: $$V_t = h(W_t,t)\ \text{where}\ h(x,t) = \sqrt{t(t+x^2)}$$
I then calculated the partial derivatives of $h(x,t)$ and substituted all my values into Ito’s formula.
However, no matter how many times I try, I don’t seem to get the correct answer and I am unsure as to why.
I took a slightly different route
$$S_t = V_t^2 = t(t+x^2)$$ $$x^2 = \frac{V_t^2}{t} - t$$
$$dS_t = 2 V_t dV_t=\frac{\partial S_t}{\partial t} dt + \frac{\partial S_t}{\partial x} dW_t + \frac{1}{2} \frac{\partial^2 S_t}{\partial x^2} dt$$
$$\frac{\partial S_t}{\partial t} = 2t + x^2$$ $$\frac{\partial S_t}{\partial x} = 2tx$$ $$\frac{\partial^2 S_t}{\partial x^2} = 2t$$
and so
$$\begin{align*} 2 V_t dV_t &= \left(t + \frac{V_t^2}{t}\right)dt + 2t\left(\frac{V_t^2}{t} - t\right)^\frac{1}{2} dW_t + tdt\\ &= \left(2t + \frac{V_t^2}{t}\right)dt + 2\left(tV_t^2 - t^3\right)^\frac{1}{2} dW_t \end{align*}$$
$$dV_t = \left(\frac{t}{V_t} + \frac{V_t}{2t}\right)dt + \left(t-\frac{t^3}{V_t^2}\right)^\frac{1}{2}dW_t$$
I'm slightly disconcerted that my $dt$ coefficient looks so different to saz's. I'll need to do some rearranging to check whether or not they actually agree...
Edit: As pointed out in the comments I missed the implicit absolute value in the square root and left out the second order term in $dS_t$. Blast.