Problem: Determine the number of permutations of the characters for: AABBBC
How can I calculate a problem like this generally, given a set of characters and a number of times each has to appear?
Problem: Determine the number of permutations of the characters for: AABBBC
How can I calculate a problem like this generally, given a set of characters and a number of times each has to appear?
Presumably you know six distinct letters can be rearranged in $6!$ distinct ways. A straightforward count of permutations.
Now suppose two of those letters were not distinct. $\rm BEA_1A_2CD$ is indistinguishable from $\rm BEA_2A_1CD$ when the numbers rub off, and so forth. Every arrangement is one of a set of arrangement where only the identical letters are in different positions. There are $2!$ ways to arrange two distinct letters, so what we need to do is divide by that.
There are $6!/2!$ distinct ways to rearrange $\rm AABCDE$.
Can you now count the distinct ways to rarrange $\rm AABBBC$?