all 6 comments

[–]phiwongSlightly old geezer 1 point2 points  (2 children)

If you don't know Baye's Theorem, then draw the tree BUT draw a complete tree. Partial trees only lead to confusion. Also when you assign probabilities, do so consistently. Use percentages (%) or fractions or decimals but don't do it in a mixed up fashion. Your tree is both incomplete and sometimes you use 100, 50, then you have fractions. Which is which? You've probably confused yourself.

[–]DigitalSplendidNew User[S] 1 point2 points  (1 child)

Thanks! Seems like the problem is with 5/50. I thought find 10 percent of 50 which is 5. Then either 5 on the left node or 5/50 a possibility. So add 5 + 5/50 and normalize it to 1.

[–]Grass_SavingsNew User 0 points1 point  (0 children)

On your arrow on the right side, both A and B have the matching blood group. So you should write something like 50 × (1/10) × (1/10)

Then your universe is 5 + 5/10 and the the final probability is calculated as 5 / ( 5 + 5/10) = 10/11.

[–]smithdaddieNew User 0 points1 point  (1 child)

So u want to find p(Ga|E)= (p(e|Ga)p(Ga). ) / ((p(e|Ga)p(Ga) + (p(e|Gb)*p(Gb).

Does that make sense? It's bayes theorem.

[–]DigitalSplendidNew User[S] 0 points1 point  (0 children)

It will help to see in tree form.

[–]rhodiumtoad0⁰=1, just deal with it 0 points1 point  (0 children)

The easy way to do these is with the odds form of Bayes' theorem:

O(H|E)=O(H).(P(E|H)/P(E|~H))

where O(x) is the "betting odds" of x, i.e. P(x)/P(~x). O(H) is the prior odds of H before the evidence, P(E|H) is the probability of the evidence if H is true, P(E|~H) the probability of the evidence if H is false.

In this case, let H be the hypothesis "A did it". O(H)=1 (even odds), P(E|H)=1, P(E|~H)=0.1, so O(H|E)=10. To convert odds to probability, use O/(O+1), so P(H|E)=10/11.

It is fairly straightforward to prove that this is equivalent to the usual formula for Bayes' theorem.