Solving Noisy Weather Sensor Probability: Day 5 Sunny

  • Thread starter Thread starter carllacan
  • Start date Start date
  • Tags Tags
    Sensor Weather
carllacan
Messages
272
Reaction score
3

Homework Statement



An imperfect sensor measures the weather (which can only be either sunny, cloudy or rainy) in a fixed place. Suppose we know the weather on the first day was sunny. In the following days we obtain the measurements cloudy, cloudy, rainy, sunny.

What is the probability that the weather at day 5 is indeed sunny as our sensor says?

Homework Equations



The noise of the sensor is given by a known stochastic matrix:

<br /> S_{ij} = p(z_n = j | x_n = i)<br />

where z_n refers to a measurement and x_n to the real state at day n, and i and j refer to the possible weathers (sunny, cloudy, rainy).

The Attempt at a Solution



I just tried to find a general formulation, as I saw that I would probably need it later.

By straightforward application of Bayes Rule I've found the expression:

<br /> p(x_n = i | z_n = j) = \frac{p(z_n = j | x_n = i)p(x_n = i)}{p(z_n = j)}<br />

Now, here is where I have trouble. How can I find out the real probability that one day had a certain weather?

In a previous exercise I was presented with a similar situation and was given a stochastic matrix that described the probability of weather on a certain day based on the weather of the previous day. I am not sure that it applies also to this exercise. Is there any way to solve it with the given data?
 
Last edited:
Physics news on Phys.org
I had misread the statement of the problem. I have update the info now. Can someone help me?
 
I've worked out this code for the Bayes Filter, would you mind telling me if I've done it right?
Code:
function newx = posterior(z, x0, transmat, sensmat)
  if size(z)(2) = 0
    newx = x0
  end
  
  prior = posterior(z(1:end-1), x0, transmat, sensmat)*transmat(:,x)	
  norm = sensmat*prior   
  newx = sensmat(x)(z)* prior / norm
endfunction
 
Last edited:
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...

Similar threads

Replies
3
Views
1K
Replies
118
Views
11K
3
Replies
105
Views
14K
Replies
125
Views
19K
Replies
152
Views
9K
Replies
42
Views
7K
Back
Top