I have a Markov Chain transition probability matrix as the following. The possible states are $\{0,1,2\}$ $$ P = \begin{bmatrix} 0.6 & 0.2 & 0.2 \\ 0.2 & 0.5 & 0.3 \\ 0 & 0 & 1 \end{bmatrix} $$
The question asks me the last non-absorbing state is $0$, starting from state $X_{0} = 0$.
I attempt the following: I let $T = \min\{n \geq 0, X_{n} = 2 \}$ be time of absorption and consider $u_{i} = P(X_{T-1} = 0 | X_{0} = i)$ I set up the equation of using First Step Analysis:
$$ u_{0} = 0.6 u_0 + 0.2u_1 + 0.2u_2 $$
$$ u_{1} = 0.2 u_0 + 0.5 u_1 + 0.3 u_2 $$
$$ u_2 = 1 $$
I solve this and get $u_1 = 44/50$ and $u_0 = 47/50$. But I checked the answer in the back it is said that $u_0 = u_1 = 1$. Does I misunderstand the statement to express in terms of $u_{i}$?