How many different ways can you place kings on a 3x3 grid such that each king attacks exactly two other kings?
Note : A king is a chess piece that can move to (or attack) any adjacent square, including being diagonally adjacent. All kings are indistinguishable.
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.
There is one way to arrange four kings (one in the middle of each edge),
And wiith three kings you can fill any three squares of any of the 2x2 sub-grids, and for each of the 4 sub-grids there are 4 ways to choose the vacant square, for a total of 16 ways.
This gives a total of 1 + 1 6 = 1 7 ways.