I'm trying to calculate the probability that if 8 rooks are placed on a chessboard, they are placed in a fashion such that none of the rooks can capture another rook. So, no row or column can contain more than one rook.
I figure that the total number of positions they can be placed is C(64, 8). As for the number of places they can be placed without capturing one another, I modeled it as a set of vectors where each element is 1(where a rook is present), or a 0(no rook). So I need to find the number of sets of vectors such that the sum of all vectors is (1,1,1,1,1,1,1,1), that is, no value 1 shares a row or column.
The first vector is C(8,1), the second is C(7, 1) and so on. So I got:
8! / C(64, 8).
I don't feel this is correct though, so some help would be much appreciated.