Difficulty: Medium
Correct Answer: 25200
Explanation:
Problem restatementChoose 3 consonants and 2 vowels and arrange the 5 chosen letters in all possible orders.
Given data
Concept/ApproachIndependent selection followed by permutations: choose letters first, then arrange them (all distinct).
Step-by-step calculation Choose consonants: C(7, 3) = 35 Choose vowels: C(4, 2) = 6 Arrange 5 letters: 5! = 120 Total = 35 × 6 × 120 = 25200
Verification/AlternativeThe multiplication principle applies: selections are independent and letters are distinct.
Common pitfalls
Final Answer25200
Discussion & Comments