In how many ways we can choose $k$ squares on $n \times n$ chessboard, so that none of these squares are on the same column nor the same row?
Sorry, but the question is the same as in the title. Here are my poor attempts to the problem.
First we can choose one square from $n$ rows and $n$ columns so there are $n^2$ ways to do it.
Now we can choose one square from $n-1$ column and rows. And so on...
Please help me
We can choose the rows that are used in $\binom nk$ ways, the columns that are used in another $\binom nk$ ways, and then choose which column get assigned to which row in $k!$ ways, for a total of $k!\binom nk^2$ arrangements.