How many arrangements are there of the word $STATISTICS$ such that there are:
- No consecutive $S$s
- Vowels in alphabetical order
- $T$'s are consecutive
I've noticed similar questions, but none that define similar rules. In my notes I have the solution as ${5 \choose 2} 2! {6 \choose 3}$, but I think that is wrong.
The first observation we can make is that $AII$ is the only ordering such that rule (2) is not violated. We can also treat $TTT$ as one character, following rule (3).
Ignoring the $S$s for a moment, we have 4 spaces between $AII$ to fit 2 characters, $TTT$ and $C$. This yields ${4 \choose 2}$ possible options.
We multiply by $2!$ because $TTT$ and $C$ can be switched in place.
So now we have some permutation following the form of: $TTTAIIC$ yielding 6 spots to fill with the 3 $S$s, so ${6 \choose 3}$ possible options.
So I think the solution is:
${4 \choose 2} 2! {6 \choose 3}$, not ${5 \choose 2}2!{6 \choose 3}$.
Is my reasoning sound and my original notes wrong? Thanks for your help!