Wait, the instructions are a little ambiguous. I clicked "Solution" and it has the dark-squared bishop on a white square! XD Should maybe update the instructions to clarify that the dark-squared bishop is not constrained to dark squares.
that's exactly what happened to me. I ended up spending so much time thinking black bishop can only go to black squares. and agreed this is a bit ambiguous.
Chess puzzle I found in my dad's old book
21–30 of 79 posts
Re: Chess puzzle I found in my dad's old book
#22In fact, there isn’t really a need for two colors. Just color the squares that are threatened by the pieces and leave the rest blank. The meaning will be obvious.
Re: Chess puzzle I found in my dad's old book
#23> The task is to place four black queens and one black bishop on the chessboard so that there is no square not under their attack. In other words, after arranging the five black pieces, it must be impossible to place the white king anywhere without it being in checkmate. That last word should be "check". not "checkmate". A king next to an unprotected queen will be in check but not checkmate as it can capture the quee…
Although unlikely, maybe there exists a solution where all black pieces are protected?
Re: Chess puzzle I found in my dad's old book
#24I solved it with this, a pleasingly symmetric solution. I was surprised that a solution exists with all the queens in a row. . . . . . . . . . . . . . . . Q . . B . . . . . . . . . . Q . . . . . . . . . . . . . Q . . . . . . . . . . . . . Q . . . . . .
Re: Chess puzzle I found in my dad's old book
#25I solved it with this, a pleasingly symmetric solution. I was surprised that a solution exists with all the queens in a row. . . . . . . . . . . . . . . . Q . . B . . . . . . . . . . Q . . . . . . . . . . . . . Q . . . . . . . . . . . . . Q . . . . . .
. B . . . . . .
. . . . . . Q .
. . . B . . . .
Q . . . . . . .
. . . . . B . .
. . Q . . . . .
. . . . . . . B
. . . . Q . . .Re: Chess puzzle I found in my dad's old book
#26> In other words, after arranging the five black pieces, it must be impossible to place the white king anywhere without it being in checkmate.
These two sentences mean very different things in the normal rules of chess. And if you replace the word “checkmate” with the word “check” in the second sentence it still doesn’t mean the same thing as the first sentence.
The first sentence implies that all the pieces must be defended.
Edit: Eh, I guess it depends on how you view the word “attack” since all the pieces are the same colour.
Re: Chess puzzle I found in my dad's old book
#27Neat. Surprisingly, there are 388 solutions, and a lot of them look rather unintuitive. ........ ...Q.... ........ ........ .....Q.. ........ ........ Q..B..Q. Q....... ........ ........ ........ ..QQB..Q ........ ........ ........ My original intuition was to place the queens on unique rows and columns to cover as much as possible but it turns out there are solutions with three of them on the same row. Python script…
I used CP-SAT to enumerate the solutions. A heuristic for "interesting" solutions is those which only admit one valid bishop placement. For example: ........ Q..B..Q. ........ ........ .......Q ........ ........ ...Q.... Where the bishop lies at the intersection of three queens' horizontal attacks. With these queens, no other bishop placement works.
Re: Chess puzzle I found in my dad's old book
#28> The task is to place four black queens and one black bishop on the chessboard so that there is no square not under their attack. In other words, after arranging the five black pieces, it must be impossible to place the white king anywhere without it being in checkmate. That last word should be "check". not "checkmate". A king next to an unprotected queen will be in check but not checkmate as it can capture the quee…