Difficulty: Easy
Correct Answer: 45
Explanation:
Introduction / Context:This is a standard combinatorics question. Each handshake is a unique pair of people. Counting such pairs is equivalent to selecting 2 people from 10 without order, which is a combinations problem.
Given Data / Assumptions:
Concept / Approach:Number of unique handshakes = number of unordered pairs = nC2 = n*(n - 1)/2. Substitute n = 10 to find the count. Alternatively, use double-count logic and divide by 2 to avoid overcounting.
Step-by-Step Solution:
Compute nC2 = 10 * 9 / 2.10 * 9 = 90; 90 / 2 = 45.Total handshakes = 45.Verification / Alternative check:Check by summation: first person shakes 9 hands, second shakes 8 new hands, ... down to 1; sum = 9 + 8 + … + 1 = 45. Matches the formula.
Why Other Options Are Wrong:
Common Pitfalls:Counting ordered pairs instead of unordered, or forgetting to divide by 2. Always ensure each handshake is counted once.
Final Answer:45
Discussion & Comments