I have the following Markov Chain
\begin{bmatrix}
0 & 1 & 0 & 0 \\
0 & \frac{1}{3} & \frac{2}{3} & 0 \\
0 & 0 & 0 & 1 \\
\frac{3}{5} & 0 & 0 & \frac{2}{5}\\
\end{bmatrix}
Now the question is. Let T be the time to, for the first time, arrive in state 1, after leaving from state 1. Calculate the expectation and variance of T. The first part I did, calculcating recursively led me to a mean first return time of $\frac{31}{6}$. However I cannot figure out how to calculate the variance.
Edit:
The first part I did like this.
$u_{11}$ = 1 + $u_{21}$
$u_{21}$ = 1 + $\frac{1}{3}u_{21}$ + $\frac{2}{3}u_{31}$
$u_{31}$ = 1 + $u_{41}$
$u_{41}$ = 1 + $\frac{2}{5}u_{41}$
and solving gives me $u_{11}$ = $\frac{31}{6}$.