A deck has 32 cards divided into 4 types, each type has 8 cards. How many ways can we choose 6 cards so that all four types of cards are among them?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Only 2 cases are possible 3,1,1,1 and 2,2,1,1. For 1st cases ways are 4C1×8C3×(8)^3 and for 2nd 4C2×(8C2)^2×(8)^2.