How many ways to select $N$ things out of $2N$ things where $N$ things are alike and other $N$ things are unlike ?
I am suspecting something like :-
First choose $K$ things from $N$ unlike things in $C(N,K)$ and now its turn for $N-K$ things to be choosen from $N$ alike things.
Answer is given $2^N$ but I have no idea how to get that from my approach .
I don't get the question. If $N$ things are alike and other $N$ are alike, then we can choose $N$ as $N+0, (N-1)+1, ... , 0+N$ where $A+B$ means we took $A$ of the first kind and $B$ of the second. Therefore, $N+1$ way.Ah, unlike. Then it is obvious - to choose $N$ things is the same as choose any subset of $N$ unlike things and then add an appropriate number of alike. But there are $2^N$ subsets of $N$-element set. – 2017-01-29