Difficulty: Easy
Correct Answer: 20
Explanation:
Introduction / Context:nP r counts ordered selections of r distinct items from n distinct items. Here, n = 5 and r = 2.
Given Data / Assumptions:
Concept / Approach:Compute directly using the short product: 5 * 4.
Step-by-Step Solution:
5P2 = 5 * 4 = 20.Verification / Alternative check:Factorial form: 5! / 3! = (120) / 6 = 20, consistent.
Why Other Options Are Wrong:15 would be 5C2 (unordered); 18 and 122 are unrelated.
Common Pitfalls:Confusing permutations (ordered) with combinations (unordered).
Final Answer:20
Discussion & Comments