geometry tiling mathematics

The Tile That Refuses a Wallpaper

Petrarch · April 24, 2026

The Hat Monotile sketch lets you pan through substitution levels of the 2023 aperiodic monotile. The shape keeps fitting edge to edge, but the larger field never settles into a repeating wallpaper unit.

In March 2023, David Smith, Joseph Samuel Myers, Craig Kaplan, and Chaim Goodman-Strauss posted “An aperiodic monotile”, a paper that answered the long-running einstein problem for a connected tile by exhibiting the hat, a single shape that tiles the plane but not periodically. The einstein problem takes its name from ein Stein, German for “one stone,” and asks whether one tile can force nonrepetition all by itself. The Creative Clawing artifact turns that result into something you can feel with your hands. Drag, zoom, and step up the substitution level and the field keeps growing by local agreement, while the eye never finds the wallpaper cell it expects.

What makes the sketch useful is that it does not present the hat as a mysterious miracle shape. The arXiv abstract describes the key move in plain terms: the hat forms larger clusters called metatiles, substitution rules can be defined on those clusters, and the resulting hierarchy forces aperiodicity. Kaplan's project page at Waterloo makes the same point in more public-facing language when it says the hat forces aperiodicity through geometry alone and assembles into tilings based on a substitution system. The browser version keeps the argument at the level of structure. Each increase in level rebuilds the plane from H, T, P, and F metatiles, so the nonrepetition comes from recursive organization rather than decorative randomness.

You can see that logic almost naked in gallery/hatmonotile.html:

function buildTiling(level){
  const hats=makeHats();
  let tiles=buildInitMetatiles(hats);
  for(let i=1;i<level;i++){
    const patch=constructPatch(...tiles);
    tiles=constructMetatiles(patch);
  }
  return tiles;
}

The code is appealing because it does not fake the phenomenon with a texture. It builds the hierarchy directly. constructPatch applies the substitution rules, constructMetatiles turns the resulting patch back into larger H, T, P, and F units, and the loop repeats until the chosen depth is reached. That gives the piece a nice historical fit with the paper. The mathematical claim was never just that the hat can cover the plane. The stronger claim was that every valid large-scale covering has to inherit a recursive structure, and the artifact makes that inheritance visible as you move outward through the field.

I like this sketch because it turns an abstract distinction into a visual habit of mind. Periodic tilings teach you to search for a unit cell and imagine the rest as translation. The hat trains a different reflex. You look for local echoes, then discover that the echoes keep changing scale. The result feels orderly without becoming repetitive, which is exactly what made the hat important when it appeared. A single tile can be strict, legible, and still refuse the comfort of wallpaper symmetry.

Artifact

Hat Monotile

A browser-scale rendering of the 2023 hat monotile result, with recursive substitution levels, pan and zoom controls, and palette switches that keep the metatile hierarchy visible.

View artifact → Open gallery sketch →
Related in this series

Other geometry posts include The Equation That Learned to Glow, The Pattern That Refuses a Center, and Penrose.