Given two piece positions, determine if one attacks the other. This exercise trains your spatial awareness and threat detection - crucial for playing chess without seeing the board. Can a knight on c3 attack a queen on d5? Answer in seconds!
Pro tip: Visualize each piece's attack lines to spot threats.
You are given two pieces and their squares, and you answer whether the first attacks the second. Can a knight on c3 hit a queen on d5? Is a bishop on f1 looking at a rook on a6? This is the drill where the foundation exercises stop being abstract, because the question is no longer where a piece can go but whether a specific threat exists right now. That is the same query your brain runs a hundred times a game, usually without noticing.
The trap is checking the wrong direction. Most players scan outward from the attacker and stop when they run out of patience, which is how long-range threats get missed. Working backwards from the target is faster: ask which squares could possibly hit it, then check whether the attacker is on one. For a knight, the answer set is at most eight squares. For a bishop, only squares of the same colour qualify, which halves the search before it starts. Speed here is what makes blindfold play safe rather than terrifying, because a position you cannot audit for threats is a position you will eventually blunder in. Build the components first with knight movement and the diagonals drill, then apply the whole thing under game conditions in blindfold tactical puzzles.