Join Date: Jan 2021
Posts: 159
I'm posting a problem I have the solution to, and understand why that solution makes sense. What I don't understand is why an alternate method doesn't arrive at the same correct answer.
Problem: You have 10 marbles: 4 red. 3 green, 2 white, 1 purple. If you grab 5 marbles, how many combinations have at least 1 white marble?
The solution: There's 10C5 = 252 combos of 5, and 8C5 = 56 combos with no white marbles. So taking the total combos minus the 0-white combos = 196. Makes sense, but why does the following not also work:
Scenario A with 2 whites pre-chosen: 8C3 = 56. Scenario B with 1 white pre-chosen: 8C4 = 70. (I discard the second white here to avoid double-counting with Scenario A, so we still have 8 marbles we are choosing from, and need to choose 4 to combine with the 1 white).
But 56 + 70 doesn't equal 196 so I am sad, what is the flaw in the second method?