ichabod
Legned
Let me try:
Set up the matrix of transition probabilities. This is a matrix such that the i, j entry is the probability that the dragon will move
from room i to room j, given that they are in room i. Note that the rows must all sum to 1 (he has to be somewhere). Now look at the columns as a system of equations. If the first column has a 0.5 in the second row and a 0.75 in the fifth row, then m1=0.5*m2+0.75*m5. Once you have all the equations (you should have one for each room), set m1 to 1, and calculate all the other m's. Now, since these are supposed to be probabilities, they should add up to 1. So sum all of the m's, and divide each m by the total. Now mi is the probability that the dragon is in room i, at some random point in time long after he started moving around.
Set up the matrix of transition probabilities. This is a matrix such that the i, j entry is the probability that the dragon will move
from room i to room j, given that they are in room i. Note that the rows must all sum to 1 (he has to be somewhere). Now look at the columns as a system of equations. If the first column has a 0.5 in the second row and a 0.75 in the fifth row, then m1=0.5*m2+0.75*m5. Once you have all the equations (you should have one for each room), set m1 to 1, and calculate all the other m's. Now, since these are supposed to be probabilities, they should add up to 1. So sum all of the m's, and divide each m by the total. Now mi is the probability that the dragon is in room i, at some random point in time long after he started moving around.