Combinatorics – Ways to Place 8 Identical Rooks on a Chess Board Without Attacking Each Other

combinatoricsproblem solving

In how many different ways can we place $8$ identical rooks on a chess board so that no two of them attack each other?

I tried to draw diagrams onto a $8\times8$ square but I'm only getting $16$ ways. Does that sound right?

Thanks for the help!

Best Answer

Let's do this piece by piece.

First, let's consider the first rook, we can place it anywhere on the board, thus we have $8^2=64$ choices for that.

Now, for the second one, we can't be in the row or column of that first one, so leaving us with $7^2=49$ choices.

Then so on, we have $6^2=36$ for the third one, $25$ for the fourth one, and so on $\dots$

But, however, we have to remember the rooks are not labeled, thus it doesn't matter specifically about a specific rook's position.

Thus, we have a total of $\frac{(8!)^2}{8!}=40320$ ways.

Related Question