Thirty items are arranged in a 6-by-5 array. Calculate the number of ways to form a set of three distinct items such that no two of the selected items are in the same row or same column.
The answer key gives 1200, but I get 7200. My thought process is as such: Choose 1 item, which eliminates itself and its column/rowmates from the pool, leaving 20. Choose another, leaving 12. Choose the last item. My formula for this is
$_{30}C{_1}\cdot_{20}C{_1}\cdot_{12}C_1 = 30\cdot20\cdot12 = 7200$.
What am I doing wrong?
In an attempt to avoid a "division by symmetry" argument (or at least disguise such an argument with binomial coefficients) you can do the following:
This gives a final total as $\binom{5}{3}\cdot \binom{6}{3}\cdot 3\cdot 2 = 1200$