If we have:
P(C) = 0.01 , P(!C) = 0.99
P(+|C) = 0.9 , P(-|C) = 0.1
P(-|!C) = 0.8, P(+|!C) = 0.2
How can i compute this probablity?
P (C | (T1 and T2)).
T1 and T2 are independent and T1 = +, T2 = +.
This is where i've reached:
P(+ and C) = P(C).P(+|C) = 0.01 x 0.9 = 0.009
P(+ and !C) = P(!C).P(+|!C) = 0.99 x 0.2 = 0.198
P(+) = P(+ and C).P(+ and !C) = 0.207
T1 and T2 are independent so:
P(T1 and T2) = P(+ and +) = P(+) x P(+) = 0.207 x 0.207
P(C|(T2 and T2)) = P(C and (T1 and T2)) / P(T1 and T2)
What's next? I don't know if i'm in the right place.