Draw Grid Squares from Marked-Vertex Constraints
Turn every marked grid point into a family of possible squares, choose one square for each point, and coordinate the choices so no two square edges occupy the same grid segment.
Your task: one square for each marked point
Choose one grid-aligned square for every marked point. Each square must have exactly one marked corner, meet that point’s minimum side length, and stay inside the board. Different squares may overlap inside or cross at a point, but may not share a unit edge.
- Start with three squares on a 6×6 board: learn the rules, list candidates, and inspect a worked arrangement in Missions 1–3. Build your own arrangement in Mission 4.
- Extend to nine squares on a 10×10 board: Missions 6–7 show how to start with a point that has few choices and inspect a worked arrangement. Mission 8 is your nine-square construction.
An anchor is the marked point used as a square’s corner. A candidate is one square that meets the rules by itself; it must still fit with the squares chosen for other anchors.
Build candidates first, then select a compatible set
All square sides must follow horizontal or vertical grid lines and remain inside the displayed board. One grid gap is one unit; 6×6 means six unit cells across, with seven grid intersections on each boundary. Coordinates start at the top-left: x increases rightward and y downward. A square is not chosen only because it fits. It must use the correct marked vertex, meet the minimum side length, and leave legal choices for every other marked point.
original interpretation made visible
The worked example forbids overlapping edges, not overlapping interiors. Its worked construction contains interior overlap and isolated edge crossings. Those are allowed here. Sharing a collinear grid segment is not.
Decode what is allowed and what is forbidden
Generate candidate squares for each original mark
- Try B1 as each of the four corners. Extending upward leaves the board, so only the two downward directions can work.
- A black anchor needs a side of at least 3. Extending down and right leaves only 2 units before the right boundary, so that direction cannot work.
- Extending down and left leaves 4 units to the left boundary and 6 downward. Only sides 3 and 4 fit. Inspect all four corners of each: B1 is the only marked corner.
| Trial | Keep or reject? |
|---|---|
| Side 2, down and left | Reject: black points need side ≥ 3. |
| Side 3, down and right | Reject: its right edge reaches x = 7, outside the board. |
| Side 3, down and left | Keep: top-left (1, 0), within the board, only B1 marked at a corner. |
| Side 4, down and left | Keep: top-left (0, 0), within the board, only B1 marked at a corner. |
| Side 5 or more, down and left | Reject: the left edge goes beyond x = 0. |
So B1 has exactly two candidates. Use the explorer below to inspect them. Then apply the same corner, size, boundary, and marked-corner checks to W1 and B2.
Candidate explorer
| original mark | Coordinate | Type | Minimum side | Legal candidates |
|---|
Reconstruct original Figure 28-5
Printed construction
| Step | Anchor | Top-left | Side |
|---|
Build a legal solution for Worked example 2
Choose one candidate for each point
Explain compatibility before claiming uniqueness
Reason it through
A square has four vertices, but exactly one must be a given mark. Compare its boundary with each chosen square: no unit edge may be shared. One working arrangement proves existence. Only an exhaustive argument can establish uniqueness.
Nine candidate squares
| ID | Anchor | Top-left | Side |
|---|
Read original Practice 2 and find its restrictive anchors
Practice candidate explorer
| Point | Coordinate | Type | Minimum side | Candidates |
|---|
Reconstruct the worked example’s nine-square reference arrangement
Reference placement ledger
| Step | Anchor | Top-left | Side |
|---|