Hi All,
We're asked to find the number of ways that the letters D, I, G, I, T be arranged so that the two I's are NOT next to each other. Since the two "I"s cannot be side-by-side, there are a limited number of ways to arrange the 5 letters. As such, with a little permutation math and some 'brute force', we can map out the possibilities:
If the first letter is an I, then the second letter CANNOT be an I (it would have to be one of the other 3 non-I letters)...
i 3
From here, any of the remaining letters can be in the 3rd spot. After placing one, either of the remaining two letters can be in the 4th spot and the last letter would be in the 5th spot...
i 3 3 2 1
This would give us (3)(3)(2)(1) = 18 possible arrangements with an I in the 1st spot.
If a non-I is in the 1st spot and an I is in the 2nd spot, then we have...
3 i _ _ _
A non-I would have to be in the 3rd spot, then either remaining letter could be 4th...
3 i 2 2 1
This would give us (3)(2)(2)(1) = 12 possible arrangements
Next, we could have two non-Is to start off, then Is in the 3rd and 5th spots...
3 2 i 1 i
This would give us (3)(2)(1) = 6 possible arrangements
There are no other options to account for, so we have 18+12+6 total arrangements.
Final Answer: A
GMAT assassins aren't born, they're made,
Rich