Four rooks are randomly placed on a $4 \times 4$ chessboard. Suppose no rook can attack another. Under this condition, what is the probability that the leading diagonal of the chessboard has no rooks at all?
Since no rook can attack another, we know that each row and each column contains exactly one rook each. Let $A_i$ be the event that row $i$ has its rook on the diagonal. Then $P\{A_i\} = \frac{1}{4}$ for each $i = 1,\dots,4$.
We want to find the probability that the diagonal of the chessboard has no rooks at all, or equivalently that none of the rows have their rook on the diagonal. Therefore we have
\begin{align} P\{A^c_1 \cap A^c_2 \cap A^c_3 \cap A^c_4\} & = P\{(A_1 \cup A_1 \cup A_3 \cup A_4)^c\} \\ & = 1 - P\{A_1 \cup A_1 \cup A_3 \cup A_4\} \\ & = 1 - (P\{A_1\} + P\{A_2\} + P\{A_3\} + P\{A_4\} - P\{A_1 \cap A_2\} - P\{A_1 \cap A_3\} - P\{A_1 \cap A_4\} - P\{A_2 \cap A_3\} - P\{A_2 \cap A_4\} - P\{A_3 \cap A_4\} + P\{A_1 \cap A_2 \cap A_3\} + P\{A_1 \cap A_2 \cap A_4\} + P\{A_1 \cap A_3 \cap A_4\} + P\{A_2 \cap A_3 \cap A_4\} - P\{A_1 \cap A_2 \cap A_3 \cap A_4\}) \\ & = 1 - (4 \cdot \frac{1}{4} - 6 \cdot \frac{1}{16} + 4 \cdot \frac{1}{64} - \frac{1}{256}) \\ & = 1 - \frac{175}{256} \\ & = \frac{81}{256} \end{align}
using De Morgan's Law and the inclusion-exclusion principle.
However, it seems that this is incorrect since if we consider the number of ways that we can place the rooks such that no rook can attack each other we have $\frac{(4!)^2}{4!} = 4! = 24$ [as per this answer for a similar problem] and so the answer should have denominator of 24. Having said that I don't see where my answer is wrong, so would someone be able to show me the correct solution?