Difficulty: Medium
Correct Answer: 96
Explanation:
Introduction / Context:We are forming ordered arrangements (permutations) of length 3 from 6 distinct letters, under the condition that each word contains at least one vowel. Using the complement (no vowels) simplifies the count substantially.
Given Data / Assumptions:
Concept / Approach:
Step-by-Step Solution:
Total = 6P3 = 6 * 5 * 4 = 120No-vowel = 4P3 = 4 * 3 * 2 = 24At least one vowel = 120 − 24 = 96Verification / Alternative check:Direct casework (1 vowel, 2 vowels) is longer but produces the same sum as the complement method; complement is cleanest here.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:96
Discussion & Comments