Probability Transition Matrix and Markov Chains

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
5 replies · 6K views
cse63146
Messages
435
Reaction score
0

Homework Statement



Given a Probability transition matrix, starting in X0= 1, determine the probability that the process never reaches state 2.

Homework Equations





The Attempt at a Solution


State 2 is not an observing state, so I'm not sure how to find this probability.

Any help would be greately appreciated.
 
Physics news on Phys.org
Have you considered calculating the steady-state version of the matrix and using that to calculate your final probabilities?
 
lanedance said:
is this for a specific transition matrix?

Yes, it is. S = {0,1,2,3}, and the matrix is

[tex]\begin{bmatrix}1 & 0 & 0 & 0 \\ 0.1 & 0.2 & 0.5& 0.2 \\ 0.1 & 0.2 & 0.6 & 0.1 \\ 0.2 & 0.2 & 0.3 & 0.3\end{bmatrix}[/tex]
where the columns are (0,1,2,3) and the rows are (0,1,2,3)'.

Do you know how to find the probability that it never reaches state 2?
 
first note [1,0,0,0] is an absorbing state, so there is no chance of trasitioning out of the state

as we are only interested in whether the state ever tranistions through state 2, why not change the matrix so whenever a state is in S=2 it is trapped there
[tex]\begin{bmatrix}1 & 0 & 0 & 0 \\ 0.1 & 0.2 & 0.5& 0.2 \\ 0 & 0 & 1 & 0 \\ 0.2 & 0.2 & 0.3 & 0.3\end{bmatrix}[/tex]

now consider what happens to the vector [0,1,0,0] with repated application of the bove matrix... it will either eventually transition to S=0 and be trapped there having never been through S=2, or it will pass through S=2 and be trapped there, simulating the end of a chain when a state reached S=2
 
Last edited:
I did it somewhat different. Let T = Never reach State 2

[tex]U_i = P(T|X_0 = i)[/tex] for i = 0,1,2,3

U_1 = 1 and U_2 = 0. This would just leave U_1 and U_3 (two unknowns) and also 2 equations. I would solve for both of them, and U_1 would give me the desired probability.

Would that approach work as well?