Markov Filtering

A type of Markov Inference for computing the current Belief State (probability distribution) given previous evidence. We want to find this iteratively (via recursion). So we first define Given the above and using the Bayes Rule with Normalization, the base case is Now the recursive case is Apply

  • Use the base case to directly calculate the first probability distribution, make sure to normalize the values

  • Expand the sum in the recursive case

  • Expand the Random Variables in the recursive case with angled brackets

  • Then fill in all probabilities

  • Calculate and normalize the result

  • Filtering 1

  • Filtering 2