Probability theory! I try and try some more with this problem, and I just can't seem to get my head around it.
A weather forecast app can forecast 4 kinds of weather—rainy, sunny, snowy and cloudy. The accuracy of rainy forecast is 0.8, while the accuracy of sunny, snowy and cloudy forecast is 0.9. In the past 5 years, Paris had 10 percent rainy days. If the app shows that tomorrow is a rainy day, what is the probability that it is not going to rain?
I use bayes and the law of total probability, which implies:
$ p(NoRain|Rainyforecast) = \frac{p(Rainyforecast|NoRain)p(NoRain)}{p(Rainyforecast|NoRain)p(NoRain)+p(Rainyforecast|Rain)p(Rain)} $ How do I find the $p(Rainyforecast|NoRain),p(Rainyforecast|Rain)$? I can kind off deduce, that I have to relate them to the other forecast models, but I don't quite see how.
Thanks!