Finding the Number of Words with Fixed Vowel Order

ritwik06
Messages
577
Reaction score
0

Homework Statement


Consider the word MATHEMATICS. There are some vowels: AEAI
The remaining 7 letters are MTHMTCS. Find the number of different 11 lettered words formed from these particular letters (repetition not allowed) such that all the vowels occur in the same order AEAI.
For example:
SCAHTEAIMMT



The Attempt at a Solution


The total number of words that can be formed is 11! without any restrictions.
If we fix the A at place 1:
no. of combinations of 3 from remaining: 10C3
If we fix the A at place 2:
no. of combinations of 3 from remaining: 9C3
If we fix the A at place 3:
no. of combinations of 3 from remaining: 8C3
...
...
Therefore the number of arrangements should be: 10C3+9C3+8C3+...+3C3
=330
which gives me a wrong answer. Why? What should I do to get a correct answer?
 
Physics news on Phys.org
You aren't accounting for the ways to place the consonants after the vowels are fixed. You are also counting the vowel placements the hard way. Why not just 11C4? Who cares where 'A' is??
 
Dick said:
You aren't accounting for the ways to place the consonants after the vowels are fixed. You are also counting the vowel placements the hard way. Why not just 11C4? Who cares where 'A' is??

Ok, I admit I am wrong. I am completely stuck with the question. Please help me out!
 
Its seems a bit hard to me. Nothing is fixed except the order of the vowels. What shall I do to this. Assuming seven places betwen each vowel doesn't help. I have also tried to fix the consonants first. Help :smile:
regards
 
Last edited:
You AREN'T wrong so far. You just aren't finished. You counted the vowel placements correctly (though as, I say, the hard way). So take one of your vowel arrangements. There are seven empty spaces left and you have seven consonants to put in them. How many ways can you do that?? The number of consonant arrangements doesn't depend on the particular vowel arrangement, right? So you can just multiply them.
 
Dick said:
You AREN'T wrong so far. You just aren't finished. You counted the vowel placements correctly (though as, I say, the hard way). So take one of your vowel arrangements. There are seven empty spaces left and you have seven consonants to put in them. How many ways can you do that?? The number of consonant arrangements doesn't depend on the particular vowel arrangement, right? So you can just multiply them.

Yeah, I have realized that by now. Thanks a lot for ur help :smile:
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top