Almost every small patch of pieces you could build is impossible. For a 2×2 square, 99.72% of the ways to place four pieces can never be made to match.
Eternity II has 256 square tiles, each with a color on all four sides. 196 of
them are interior pieces, the ones with no grey borderedge, so the only
ones that ever sit inside the board. Take a few of those, drop them into a
small shape, and rotate them however you like. Most of the time the colors
simply won't line up, no matter what you try.
The bigger the shape, the worse it gets. Two pieces side by side fail to fit
about 39% of the time. Add a third in an L and you're stuck 83% of the time.
Close up a 2×2 square and 99.72% of all placements are dead on arrival: only
about 1 in 358 works.
A rough estimate explains why the number is so high. Two adjacent pieces
share one edge. Each interior piece carries colors from the 17-color interior
palette, so a random pair of half-edges matches with probability roughly
Pr[one edge matches]≈171≈6%.
A 2×2 square has four internal edges to satisfy at once. Rotations give each
piece four chances, but the four edges are coupled, so a back-of-the-envelope
independence estimate puts the chance all four match at very roughly
which is already under one percent. The exact exhaustive count lands at 0.28%
feasible, that is 99.72% forbidden
(0.28%=1,431,033,2403,993,696). The estimate is
crude because the edges aren't independent and the colors aren't uniform, but
it gets the order of magnitude right and shows why closing a square is so
much harder than placing a single pair.
The scarcity starts one level below whole pieces, at the colors. An interior
cell shows two of the 17 interior colors on any given corner, the two edges
that meet there, which is 17×17=289 possible ordered color pairs. Not
all of them exist. Back in 2008 the community noticed that 20 of those 289
pairs are voids: no interior piece, in any rotation, presents that particular
pair of colors on adjacent edges
(msg 5027). So a partial board that
forces a cell to answer with one of those 20 corner-pairs is dead on the spot,
before a single piece is tried, and a fast solver can reject it with one table
lookup. It is the same lesson as the 2×2 count, pushed down to the smallest unit
that can be impossible: the constraints bite so early that whole categories of
local demand have no legal answer at all.
A finished, correct board has zero forbidden patches: by definition,
everything matches. So counting the forbidden patches in a board tells you
roughly how far it is from a real solution, even when two boards have the
same number of matched edges. Weak boards are full of forbidden squares; the
best boards ever found have only a couple of dozen left.
It also shows, from another angle, why the puzzle shrugs off clever local
fixes. When 99.72% of small squares are impossible, the pieces that do fit
together are rare and specific. There's almost no room to shuffle things
around without breaking something. The good arrangements are scarce and
rigid.
Counting forbidden squares turns the idea into a usable signal. Pick a real
record board: the number of forbidden 2×2 windows falls as the matched-edge
score rises. Two boards with the same edge-score can still differ here: the
one with fewer forbidden squares is structurally closer to a solution, which
is why some solvers track forbidden-patch count as a tiebreak.
▶Interactive: count feasible vs forbidden placementsExplore →
Count the forbidden squares — live
Pick a real record board. We scan all 225 of its 2×2 windows and, for each, ask the exact question: can those four pieces be rotated so the little square matches? The ones where the answer is no are forbidden — outlined in red. A perfect 480 board would have none. Watch the count fall as the board gets better.
18 forbidden of 225 windows
470 / 480 matched edges
Forbidden count vs score — every known top board
Across every known board the trend is monotone: the 470s sit near 18 forbidden squares, the 467s near 23, and weaker boards have dozens. So two boards with the same edge-score aren't equal — the one with fewer forbidden squares is structurally closer to a real solution. It is a second axis of progress the edge-count alone hides. (Counts are over fully-placed interior windows, computed live from each board's edges.)