Probability question regarding independent events, where am I wrong ?

AI Thread Summary
The discussion revolves around calculating the probability of making a correct judgment on only one of two independent events, E1 and E2, with given error probabilities. The initial calculation mistakenly combines the probabilities of correct judgments, leading to an incorrect result of 0.999. The correct approach requires recognizing that the problem asks for the exclusive probability of one event being judged correctly while the other is judged incorrectly. The correct formula for this is P(C1 xor C2) = P(C1) + P(C2) - 2P(C1)·P(C2), or by evaluating the mutually exclusive events directly. Ultimately, the correct probability of making a correct decision regarding only one event is 0.068.
nishantve1
Messages
74
Reaction score
1

Homework Statement



E1 and E2 are two independent events. The probabilities of an error in judgement by a person regarding E1 and E2 are 0.02 and 0.05 respectively. Find the probability that the person will take the correct decision regarding :
only one event

Homework Equations


Two events are independent if occurrence of one is not affected by the other and vice versa .
Let,
C1 be the probability the person judging first one right = (1-0.02) = 0.98
C2 be the probability the person judging the second one right = (1-0.05) = 0.95

The Attempt at a Solution



So if the person judges one event correctly this means the he either judges the first one correctly or the second one correctly
P(only one event) = P(C1 or C2) = P(C1 + C2) =P(C1) + P(C2) - P(C1).P(C2)
=0.999
Which is the wrong anwer . But what's wrong with the logic ?

The hint shows
P(only one event) =
P(E1 is judged correctly and E2 is not judged correctly or E2 is judged correctly and E1 is not judged correctly)

How are these two logics different I mean the first one also finds the probability of one event judgement to be true . Doesn't it ?

Correct answer : 0.068
 
Physics news on Phys.org
P(C1 or C2) = P(C1) + P(C2) − P(C1)·P(C2)
This equation correctly computes the probability of C1 inclusive or C2, not the probability of C1 exclusive or C2, as the problem asks.

Think about it like this: C1 includes the "just C1" event as well as the "C1 and C2" event, and C2 includes the "just C2" event as well as the "C1 and C2" event. When you add their probabilities, you double-count the "C1 and C2" event. Because C1 and C2 are independent, the probability of "C1 and C2" is indeed given by P(C1)·P(C2), but subtracting it once from the sum means you're still single-counting the probability of "C1 and C2." You don't want to count it at all, so you need to subtract that term again. You could modify your formula to get the right answer:

P(C1 xor C2) = P(C1) + P(C2) − 2P(C1)·P(C2)
 
As alternative solution, you can directly evaluate
P(E1 is judged correctly and E2 is not judged correctly or E2 is judged correctly and E1 is not judged correctly)
as
P(C1)(1-P(C2)) + (1-P(C1))P(C2)
As those options are mutually exclusive, you can directly add their probabilites.
 
Back
Top