I'm trying to apply the probability addition rule to the problem below.
There are 12 different socks in a drawer. The table below shows the different varieties:
| Thickness | chunky (C) or thin (T) |
| Style | stripy (S) or dotty (D) or plain (P) |
| Colour | red (R) or blue (B) |
| Thickness | Style | Colour |
|---|---|---|
| C | S | R |
| C | S | B |
| C | D | R |
| C | D | B |
| C | P | R |
| C | P | B |
| T | S | R |
| T | S | B |
| T | D | R |
| T | D | B |
| T | P | R |
| T | P | B |
Based on the table, some simple observations:
- Probability that a chunky sock is taken out: 6:12
- Probability that a stripy red sock is taken out: 2:12
This is where i'm getting confused based on applying the laws:
Probability that a dotty and red sock is taken out:
- probability of dotty sock = 4:12
- probability of red sock = 6:12
- applying multiplication law, probability of dotty and red sock = 4/12 * 6/12 = 1:6
- 1:6 seems to correctly reflect observed data in table, so I assume multiplication law is correctly applied in this case?
Probability that a sock that is neither plain nor blue is taken out:
- probability of plain sock = 4:12
- probability of blue sock = 6:12
- applying addition law, probability of plain or blue sock = 4/12 + 6/12 = 10:12
- therefore probability of neither plain or blue sock is everything else i.e 2:12 = 1:6
- observed data in table suggest this should be 4:12 = 1:3
- What might be wrong in my understanding of the problem and/or application of the addition law?
Answer suggests they are equivalent.
They are equivalent; that is De Morgan's Law, which states that ¬(∨)=¬∧¬
Assume my question differs in some meaningful way from the above?
– Harry B Dec 26 '20 at 20:07