How many combinations are there to arrange the letters in MISSISSIPPI requiring that the 2 S's must be separated?
I found there are 34650 combinations to arrange without restriction.
How to approach this question?
How many combinations are there to arrange the letters in MISSISSIPPI requiring that the 2 S's must be separated?
I found there are 34650 combinations to arrange without restriction.
How to approach this question?
We know that the string will take the form of
$$*S█S█S█S*$$
where $█$ MUST have at least one character and $*$ can be of any length (even 0). I would suggest the following steps:
I leave the math for you to do.
Find all possible ways we can arrange MIIIPPI: 7!/(4!*2!). Then "insert" four S into the 8 space between each possible arrangement of MIIIPPI, e.g. [1]M[2]I[3]I[4]I[5]P[6]P[7]I[8]; This is really ${8}\choose{4}$. Multiplying the two!