- Vowels: (a, a, a), u, i.
- Consonants: s, t, r, l
- The consonants are all unique, hence, when we pick two consonants, the two consonants will always be different.
- With the task of picking two vowels, there are two broad cases
a) When both vowels picked are a's. Here, we get repeated vowels.
b) When we pick two different vowels (say - a and u, u and i, etc.)
Let's count all the possibilities.
(1) Case 1: (v1, v2, c1, c2) - 2 different vowels, 2 different consonants- #ways to choose 2 unique vowels from 3 distinct options (a, u, i) --- 3C2
- # ways to choose 2 unique consonants from 4 distinct options (s, t, r, l) --- 4C2
- #ways to arrange these 4 unique letters = 4!
-
Total #ways = 3C2 x 4C2 x 4! = 3 x 6 x 24 = 432.(2) Case 2: (v, v, c1, c2) - 2 vowels being the same (i.e., 2 a's), 2 different consonants - #ways to choose 2 a's from the 3 a's (a, a, a) --- 1 (identical letters, there are no "different" ways)
- # ways to choose 2 unique consonants from 4 distinct options (s, t, r, l) --- 4C2
- #ways to arrange these 4 letters = 4! / 2! (because the a's repeat)
-
Total #ways = 1 x 4C2 x 4!/2! = 1 x 6 x 12 = 72.
Final Answer = 432 + 72 = 504. Choice E.
Harsha