The first unit of the week, in which we discussed a simple model for prediction the weather, finished with the following exercise: Given
Today
sunny
cloudy
rainy
sunny
0.4
0.3
0.1
Tomorrow
cloudy
0.4
0.3
0.6
rainy
0.2
0.4
0.3
fill in the following table, which predicts the weather the day after tomorrow given the weather today:
Today
sunny
cloudy
rainy
Day after
sunny
tomorrow
cloudy
rainy
Now here is the hard part: Do so without using your knowledge about how to perform a matrix-matrix multiplication, since you won't learn about that until later this week...
The entries in the table turn out to be the entries in the transition matrix \(Q \) that was described just above the exercise:
These then become the entries in the table. If you knew all the above, well, GOOD FOR YOU!
However, there are all kinds of issues that one really should discuss. How do you know such a matrix exists? Why is matrix-matrix multiplication defined this way? We answer that in the next few units.