Boggledygook
Shake the dice, do the math. How many Boggle boards exist? Which words hide on almost every one of them? What's the longest word the dice can ever spell? Scroll down — the answers get weirder than you'd guess.
Three real boards, one per variant, rolled by the actual dice (seed 20260719). Watch the pencil find their words — point values scored by the official rules.
How do you analyze boards you could never list?
Every Boggle board is a roll of real dice: each die lands in some tray cell with some face up. That makes the number of possible boards astronomically large — far too many for any computer to ever enumerate. So we got clever instead of brute-forcing:
- Count exactly with math. A closed formula (dice arrangements × face choices ÷ tray symmetries) gives the exact integer number of distinct boards — no computer enumeration needed.
- Sample fairly. We roll 1,000,000 perfectly uniform random boards per configuration (deterministically seeded, so every number is reproducible) and solve each one with a fast word-finder.
- Cross-check with exact expectations. For word frequencies, a second, independent closed-form calculation gives the exact expected count per board — sampling and math must agree, and they do.
How many boards exist?
A board is a permutation of the game's dice into the tray (D! ways) times a face-up
choice per die (6^D ways), divided by the 8 rotations/reflections of the tray — exact math, proven in
docs/board-math.md. Every digit below is exact.
Fun fact: Boggle's dice have been re-lettered over the years (the spicier 1976 Classic set, the Big Boggle Deluxe set) — but the letters never change the math. Any combination of D dice always makes exactly D!·6^D ÷ 8 boards.
What a typical board holds
The most lucrative boards ever found
Random deals only get so lucky, so we went hunting for each variant's ceiling: start from the best boards of a 200,000-deal random pool, then greedily re-roll one die or swap two dice — the only moves the physical game allows — until no single change adds a word. These are the summits. The pencil cycles through each board's biggest words; click any word to trace it yourself.
Watch a jackpot get engineered
How many words does a random deal hold?
Distinct words per board across 1,000,000 random deals of each variant, for the dictionary picked above. The vertical scale is logarithmic — each gridline down is 10× rarer — so the long right tail of jackpot boards stays visible. Colored ticks on the baseline mark each variant's mean; the dot ending each curve is the luckiest deal of its million.
Words-per-board frequency, 1M deals per variant
Most frequent words
Spellable words by length
Longest possible words
The longest dictionary words that any legal board of this variant can spell. Every entry carries a constructed witness board — numbered steps mark the word's actual path — re-verified by the independent DFS solver.