A set of square blocks is arranged into a square. How many different combinations of blocks can be selected from that set so that no two are in the same row or column?
- A)
- B)
- C)
- D)
- E)
Answer
C
Key insight
Pick the 3 rows and 3 columns (10 ways each), then match rows to columns in 3! ways: 10 x 10 x 6 = 600.
Solution
A valid set of three blocks uses three distinct rows and three distinct columns, and the set is determined by which rows, which columns, and how they are paired up.
- Choose the rows: ways.
- Choose the columns: ways.
- Assign each chosen row to a different chosen column: ways.
Every combination of blocks arises from exactly one such choice, so the count is
The answer is .
Why this works
"No two share a row or column" is a partial permutation: each block occupies its own row and column, like non-attacking rooks. Separating the which rows/columns decision from the how they pair decision keeps the count unordered from the start, avoiding a division by at the end.
Alternative approach
Pick blocks one at a time: choices for the first, then (avoiding its row and column), then . That counts ordered triples, , so divide by to get .
The trap
Counting ordered selections (25 x 16 x 9 = 3600) and forgetting to divide by 3! for the unordered combination.
Common mistakes
- Counting ordered selections (25 x 16 x 9 = 3600) and forgetting to divide by 3! for the unordered combination.
- Choosing rows and columns but omitting the pairings, which gives .
Techniques
Map the objects to something easier to count · Set up the equation/formula and compute; no special trick needed