Difficulty: Medium
Correct Answer: 720
Explanation:
Problem restatement
Treat the vowels in 'OPTICAL' as a single block so that they always stay adjacent, and count the total distinct arrangements.
Given data
Concept/Approach
Group the 3 vowels as one block [V]. Then arrange [V] with the 4 consonants (total 5 items), and finally permute the vowels inside [V].
Step-by-step calculation
Arrange 5 items ([V], P, T, C, L): 5! = 120 Permute vowels within [V] (O, I, A): 3! = 6 Total arrangements = 120 × 6 = 720
Verification/Alternative
No repeated letters, so no division by factorials for duplicates. The block method is exact.
Common pitfalls
Final Answer
720
Discussion & Comments