A Markov chain on {0,1,2,3,4,5,6} has absorbing state 0 and reflecting state 6 (i.e., p(6,5)=1). For transient states 1≤i≤5, the transition probabilities depend on imod3:
- If i≡0(mod3) (i.e., i=3): p(i,i−1)=32, p(i,i+1)=31.
- If i≡1(mod3) (i.e., i∈{1,4}): p(i,i−1)=21, p(i,i+1)=21.
- If i≡2(mod3) (i.e., i∈{2,5}): p(i,i−1)=31, p(i,i+1)=32.
Compute E[T0∣X0=3].