Define a Galloping Queen as a chess piece whose legal move is that of a Knight , and that of a Queen .
In how many ways can you place 2 non-attacking Galloping Queen's on an chessboard?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
We can simplify things by looking at the "difference in position" and seeing if it fits a queen or knight move:
This gives 1120, where we divided by 2 in the last step because each pair of points gets counted twice.
For a more mathematical approach, we can work with values of ( a , b ) which satisfy a b = 0 , ∣ a ∣ = ∣ b ∣ , or ∣ a b ∣ = 2 , and then back out how many pairs of ( x , y ) this corresponds to. This would get a little messy (don't overcount!), and is a great example of where I'd rather just use a computer rather than working it out...