A country is divided into three geographic regions. It is found that each year 5% of the residents move from region I to region II and 5% move from region I to region III. In region II, 15% move to region I, and 10% move to region III. In region III, 10% move to region I, and 5% to region II. Find the steady-state population distribution.
This is one of the matrices I have
$$P = \begin{pmatrix} 0.9 & 0.05 &0.05\\ 0.15 &0.75& 0.1\\ 0.1 & 0.05 &0.85 \end{pmatrix}$$
write this as
$$ \begin{align} x+y+z &= 1\\ -.1x+.15y+.1z &= 0 \\ .05x-.25y+.05z &= 0\\ .05x+.10y-.15z &= 0 \end{align}$$
How can I get the steady state matrix for all three regions? Am I doing the problem correctly so far?
The stationary distribution is a row vector $\pi$ which satisfies $$ \pi P = \pi$$ so the system of equations you need to solve isn't $P x = 0$, but rather $ \pi P = \pi$ with the additional constraint that the elements of $\pi$ must sum to 1.
If we write $\pi = \begin{pmatrix} x & y & z \end{pmatrix}$ so $x$, $y$ and $z$ are the elements of the vector $\pi$ then you need to solve the system $$\begin{pmatrix} x & y & z \end{pmatrix} . \begin{pmatrix} 0.9 & 0.05 &0.05\\ 0.15 &0.75& 0.1\\ 0.1 & 0.05 &0.85 \end{pmatrix} = \begin{pmatrix} x & y & z \end{pmatrix} $$ with the additional constraint that $x+y+z=1$. We can solve this using Gaussian elimiation to find $$\pi = \begin{pmatrix} 0.541667 & 0.166667 & 0.291667 \end{pmatrix}.$$