[Math] Find the probability of at least two vowels together when letters in word “AEINCB” are rearranged for all random permutations.

permutationsprobability

Find the probability of at least two vowels together when letters in word "AEINCB" are rearranged for all random permutations.

What will be new probabilities when word is changed to either "AEINCBB" or "AEIINCB"?

My Approach so far:

For the word AEINCB, I have tried to sum following arrangements: Two vowels together + 3 vowels together. I can take any of 2 vowels out of 3 and arrange it in 3P2 ways multiplied by remaining letters which can be arranged in 5! ways (4 letters + one vowel group). Similarly followed same approach for 3 vowels together. My answer is 3P2*5! + 3!*4! (3 remaining letters and 1 vowel group). But I feel there is an overlap between these two arrangements and not sure how to remove them. I have not been able to go beyond this for now ("AEINCBB" or "AEIINCB").

Best Answer

All of your questions can be better handled by computing

1 - P(all the vowels are separate)

AEINCB:

To be separate, the vowels can only be placed in the gaps between consonants (dashes):

- N - C - B -

Thus $^4P_3$ ways to place the vowels, 3! ways to permute consonants in their places,

and Pr = $1 - \dfrac{4\cdot3\cdot2\cdot 3!}{6!} = \dfrac{4}{5}$

AEINCBB

Using the same technique, we have - N - C - B - B -

To be separate, the vowels can be placed in $^5P_3 = 60$ ways, and the consonants permuted in 4!/2!= 12 ways, against a total of 7!/2!=2520 ways,

thus Pr = $1 - \dfrac{60\cdot12}{2520}= \dfrac{5}{7}$

The last one I leave for you !