Difficulty: Medium
Correct Answer: 12870
Explanation:
Introduction / Context:We work with uppercase English letters. A standard convention for “symmetric letters” (mirror symmetry about a vertical axis) is {A, H, I, M, O, T, U, V, W, X, Y}. We count 3-letter permutations (no repetition) containing at least one such letter using the complement method.
Given Data / Assumptions:
Concept / Approach:
Step-by-Step Solution:
26P3 = 26 * 25 * 24 = 1560015P3 = 15 * 14 * 13 = 2730Count = 15600 − 2730 = 12870Verification / Alternative check:Direct case splits by number of symmetric letters (1, 2, 3) lead to the same total; complement is faster and less error-prone.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:12870
Discussion & Comments