0 votes

We are given an MDP with 3 states: Red, Green, Blue (RGB). 

Emission probabilities:  

R --> 1 (p=1/3), 2 (p=1/3), 3 (p=1/3)

G --> 1 (p=1/3), 2 (p=1/3), 3 (p=1/3)

B --> 1 (p=1/3), 2 (p=1/3), 3 (p=1/3)

Transition Matrix

R --> R (p=1/3), G (p=1/3), B (p=1/3)

G --> R (p=1/3), G (p=1/3), B (p=1/3)

B --> R (p=1/3), G (p=1/3), B (p=1/3)

These are the observations: 1, 2, 3, 1, 1, 2, 1, 2, 3, 1, 1, 2, 2

What is the most likely explanation for this observation sequence?
Initial state is not known and is equally likely from all states.

ago in HMM by AlgoMeister (2.0k points)

3 Answers

+1 vote
 
Best answer

Without solving this problem mathematically, I think, it is very obvious that the most likely explanation for this observation sequence is about their equality as emission probabilities and values of transition matrices are the same. Therefore, there is no unique MLE; any state sequence of the same length is equally probable. 

If we solve this problem using the mathematical equations:

P(S,O)=P(s1​) ∏( P(st​ ∣ st−1​) ∏ ​P(ot​ ∣ st​)

P(s1​)=1/3

​P(st∣st−1)= 1/3

​ P(ot∣st)=1/3​

After putting the values into the equation, we get :

P(S, O)=(1/3​) ^ 2T, which means P(S, O) is independent of S, so whichever state sequence is there, they all have the same likelihood. 

ago by AlgoStar (376 points)
selected ago by
0 votes

From given question, we can see that all emission probabilities are equal and all transition probabilities are equal, so every possible hidden state sequence has exactly the same probability. We can write it as below:

  • P(R)=P(G)=P(B)=1/3     (Initial state probabilities)
  • P(1∣R)=P(2∣R)=P(3∣R)=1/3         (Emission probabilities) 
  • P(R∣R)=P(G∣R)=P(B∣R)=1/3       (Transition probabilities)​​

So for any hidden-state sequence of length 13:


P(States, observations) = P(s1) ∏13t=1 P(ot ∣ st) ∏13t=2 ​P(st ​∣ st-1), or simply


P(states,observations) = P(s1​) * P(o1​∣s1​) * P(s2​∣s1​) * P(o2​∣s2​) * P(s3​∣s2) * P(o3​∣s3​).....P(s13∣s12) * P(o13​∣s13​)

P(states,observations)= (1/3)26 

So, all hidden-state sequences are equally likely. For example:

1) B,G,R,B,R,G,G,B,R,R,G,B,B

2) G,G,G,G,G,G,G,G,G,G,G,G,G

3) R,G,B,R,G,B,R,G,B,R,G,B,R

all have the same probability. 
Therefore, there is no single most likely state sequence, as every possible RGB state sequence of length 13 is equally likely.

ago by (236 points)
0 votes
Since all probabilities are same all states are symmetric. This means that any RGB sequence of length 13 is equally likely. Probability for each is: (1/3)^26
ago by (220 points)

Related questions

0 votes
1 answer
asked 1 hour ago in HMM by amrinderarora AlgoMeister (2.0k points)
0 votes
3 answers
0 votes
1 answer
asked May 2, 2021 in HMM by amrinderarora AlgoMeister (2.0k points)
0 votes
1 answer
asked May 8, 2023 in HMM by Max Active (276 points)
0 votes
14 answers
asked Apr 14 in HMM by amrinderarora AlgoMeister (2.0k points)
...