Consider the following question (taken from this website)
In how many words the letter of word RAINBOW be arranged so that only 2 vowels always remain together?
In the link provided, @trueblueanil provided a simple solution as
$4!$ (due to arrangements of 4 consonants)
$\times 5\text{P}2$ (Position blocks of $2$ and $1$ vowel in two gaps )
$3!$ (due to arrangements of the 3 letters)
My Question
I was trying for similar problems, but did not find any. I feel, this problem is getting more complex if the word has more number of vowels and consonants.
Consider a word AAAEEEBBBDDDCCCC (6 vowels, 10 constants with some letters repeating). Now, how to find number of arrangements where only 2 vowels always remain together?
I think, the strategy adopted for the solved problem may not be a practical one here due to the complexity
(a) complexity due to repetition
(b) more cases to include like
(2 vowels together and remaining separated)
or (2 vowels together, other 2 vowels together and remaining separated)
or (2 vowels together, other 2 vowels together and other 2 vowels together)
What is the best general strategy to solve this problem (for example, another question can be only 2 vowels always remain together)