Thanks for the reply.
to observe state (1) at end is calculated as follows:
> 0 - 0 - 0
> \ \
> 1 - 1
> \
> 2
>
Probability of going from state 0 to state 1 and staying at state (1):
P(0, 1) * P(1, 1). Then we also have probability of staying at
state(0) and then jumping to state(1): So P(0, 0) * P(0, 1).
So, overall probability of seeing state(1) is: P(0, 1) * P(1, 1) +
P(0, 0) * P(0, 1).
I guess this needs to be normalized by the sum of individual
probabilities:
(P(0, 1) * P(1, 1) + P(0, 0) * P(0, 1)) /(P(0, 1) + P(1, 1) + P(0, 0)
+ P(0, 1))...Should be 2 in this case but anyway..
Have I understood this correctly?
Thanks,
Anja