How can we determine when are we supposed to use addition or multiplication in combinations?
Consider the question:
What is the number of ways of choosing 4 cards from a pack of 52 playing cards? In how many of these
(A) four cards are of the same suit?
(B) four cards belong to four different suits?
In the solution for A, addition between all $4$ combinations have been taken into consideration, whereas for facecards, multiplication has been done. How can we determine which to use when?
Also, in the question:
"two are red cards and two are black cards"
My solution is:
Since there are $26$ red and black cards, to select two red and two black, we will do:
$$52C26 \cdot 26C2+ 52C26 \cdot 26C2$$
But this is wrong why?
For every selection of $2$ red cards there are $^{26}C_2$ ways to match them with $2$ black cards. As there are also $^{26}C_2$ ways of choosing $2$ red cards, the number of ways of choosing $2$ red and $2$ black is: $$n = ^{26}C_2\cdot ^{26}C_2 = 105625$$
For (A) $$n = ^{13}C_4 + ^{13}C_4 + ^{13}C_4 + ^{13}C_4\ \text{or}\ 4\cdot ^{13}C_4$$
For (B) $$n = 13\cdot 13\cdot 13\cdot 13 = 13^4$$