Tamis
- 7
- 0
Homework Statement
Subpart of the question requires me to find the steady state of the transition matrix:
P=\begin{bmatrix}<br /> 0.1 & 0.7 & 0.2 \\ <br /> 0.1 & 0.8 & 0.1\\ <br /> 0.3 & 0.1 & 0.6<br /> \end{bmatrix}
Homework Equations
We thus need to find vector \boldsymbol{v} in the equation P\boldsymbol{v}=\boldsymbol{v} under the constraint sum(\boldsymbol{v})=1.
The Attempt at a Solution
Basically a system of linear equations with the added constraint:
\begin{matrix}<br /> -0.9x_1 &+& 0.7x_2 &+& 0.2x_3 & = 0 \\ <br /> 0.1x_1 &+& -0.2x_2 &+& 0.1x_3 & = 0 \\ <br /> 0.3x_1 &+& 0.1x_2 &+& -0.4x_3 & = 0 \\ <br /> x_1 &+& x_2 &+& x_3 & = 1 <br /> \end{matrix}
I put this in matrix form:
\begin{bmatrix}<br /> -0.9 & 0.7 & 0.2 & | 0\\ <br /> 0.1 & -0.2 & 0.1 & | 0\\ <br /> 0.3 & 0.1 & -0.4 & | 0\\<br /> 1 & 1 & 1 & | 1<br /> \end{bmatrix}
and solve:
\begin{bmatrix}<br /> 1 & 0 & 0 & | \frac{1}{3}\\ <br /> 0 & 1 & 0 & | \frac{1}{3}\\ <br /> 0 & 0 & 0 & | 0\\<br /> 0 & 0 & 1 & | \frac{1}{3}<br /> \end{bmatrix}
However this is wrong as the answer states:
\boldsymbol{v}=\begin{bmatrix}<br /> 0.1+0.2\frac{3}{16} \\<br /> 0.9-1.2\frac{3}{16} \\<br /> \frac{3}{16} \\<br /> \end{bmatrix}
Can anyone tell me were i am going wrong? Not entirely sure how to find the steady state of a markov chain. The only examples i can find are examples of steady states in 2x2 transition matrices.