[Math] How many words can be formed, each of $2$ vowels and $3$ consonants from letters of the word “DAUGHTER”.

combinatorics

How many words can be formed, each of $2$ vowels and $3$ consonants from letters of the word "DAUGHTER"

What my textbook has done: it has first taken combinations of vowels and then consonants then multiplied them altogether. Now for each combination of words they can be shuffled in $5!$ ways, so multipliying by $5!$ we get the required answer.

My question is: why has the book used combinations instead of permutations while selecting vowels and consonants?

Thanks.

Best Answer

All the letters are different, so that makes things easier.

Pick the two vowels ($_3C_2$) and pick the three consonants ($_5C_3$) and then pick what order they go in $(5!)$. So the answer is $3 \cdot 10 \cdot 120 = 3600.$

You take combinations of the vowels and consonants because the order of them doesn't matter at that point. You order them in the last step, after you've chosen which ones go in your five-letter word.

In other words, it doesn't matter that I pick $A$, then $U$, instead of $U$, then $A$. It just matters that I picked the set $(A,U)$.