List all size $4$ subsets from the set $\{A,B,C,D,E,F\}$
So first I realized this is a permutation because subsets are the same off they have the same elements. So to figure out how many subsets there would be 6p4 which is 15. However I am having trouble listing the actual subsets. Is there a more organized way to go about this so I can ensure I’m not missing any? This is what I have so far:
$\{A,B,C,D\} \{B,C,D,E\} \{C,D,E,F\} \{D,E,F,A\} \{E,F,A,B\} \{F,A,B,C\} \{B,C,D,F\} \{A,B,E,F\} \{A,B,D,F\} \{C,D,A,F\}$
This might make your life slightly easier a bit.
Choosing $4$ elements out of $6$ is equivalent to choose $2$ elements out of $6$ and then discard them.
For example if I were to discard $\{A, B\}$, the set that I am listing is $\{A,B\}^c=\{C,D,E,F\}$.
Do the same thing as the rest $AC, AD, AE, AF, BC, BD, BE, BF, CD, CE, CF, DE, DF, EF$.
In some sense, you just have to write out $A$ to $F$ and systematically cover $2$ letters at the same time using two fingers to list out all the subset of cardinality $4$.