I'm going to blow my brains out.
I have 27 cards of red, blue and green cards. There is 9 of each color. I draw 12 cards. What is the probability that I have AT LEAST 6 blues, AT LEAST 1 red and AT LEAST 1 green.
I saw other problems online that I thought were similar ("...at least one ace in 5 draws") and yet this problem eludes me.
My reasoning: There is a total of (27 choose 12) ways to pick any combination of 12 cards, hence the denominator. There is (9 choose 6) ways to pick from blue, (9 choose 1) ways to pick from red and green. We have used 6+1+1=8 cards leaving 27-8=19 cards remaining in the deck. We still have to draw 4 more cards and since our conditions at this point are satisfied, any 4 of the remaining 19 cards will do, so we append (19 choose 4).
$$ \frac{\binom{9}{6}\binom{9}{1}\binom{9}{1}\binom{19}{4}}{\binom{27}{12}}=1.5\dots $$
I don't care for HOW to solve the problem. I want to know WHY this is wrong. What am I misunderstanding about combinations that is causing this.
Think about a smaller example: 2 red cards and 2 blue cards in the deck: $r_1,r_2,b_1,b_2$. Draw 2 cards. What's the probability you get at least one red card?
All possible 2-card hands are equally likely, so the answer is $\frac{\text{number of different 2-card hands with at least one red card}}{\text{total number of different 2-card hands}}.$
The denominator is $\binom42=|\{r_1r_2,r_1b_1,r_1b_2,r_2b_1,r_2b_2,b_1b_2\}|=6$ and the numerator is $|\{r_1r_2,r_1b_1,r_1b_2,r_2b_1,r_2b_2\}|=5$, so the answer is $\frac56$. (In this case it would have been easier to count the complement.)
The problem you're having is with the numerator. Your approach says: the number of ways to first choose one red card and then choose any one of the remaining 3 cards is $\binom21\binom31=6.$ This is true, but it counts "$r_1$ then $r_2$" and "$r_2$ then $r_1$" as two different ways, whereas you only want to count the hand $r_1r_2$ once (because it was only counted once in the denominator).
Counting ordered pairs instead of unordered pairs is a valid approach, but you have to do it correctly in both the numerator and the denominator. In that case, the denominator is $P(4,2)=12$ and the numerator is (number of ways to first choose a red card and then any other card) + (number of ways to first choose a non-red card and then a red card) = $\binom21\binom31+\binom21\binom21=10$, so the probability is $\frac{10}{12}=\frac56.$