Technical overview of the ratings system: Difference between revisions
From Information Rating System Wiki
More actions
Content deleted Content added
No edit summary |
No edit summary |
||
Line 19: | Line 19: | ||
You combine these probabilities using some aggregation technique. One such technique is Bayes' equation: |
You combine these probabilities using some aggregation technique. One such technique is Bayes' equation: |
||
<math display="block">Pcomb = {{0.6(0.8)}\over {0.6(0.8)+0.4(0.2)}} = 0.857 |
|||
</math> |
|||
Pcomb = 0.6*0.8/(0.6*0.8 + 0.4*0.2) = 0.857 |
Pcomb = 0.6*0.8/(0.6*0.8 + 0.4*0.2) = 0.857 |
Revision as of 21:01, 26 August 2024
Let's take a very simple situation. You want to know whether it is going to rain tomorrow. You don't know so you ask two knowledgeable sources this question. One of them believes it will rain with a probability of 60%. The other believes it will rain with a probability of 80%. We can sketch this situation as follows:
You combine these probabilities using some aggregation technique. One such technique is Bayes' equation:
Pcomb = 0.6*0.8/(0.6*0.8 + 0.4*0.2) = 0.857
Another technique is a straight average of the two answers:
Pcomb = (0.6 + 0.8) / 2 = 0.7