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 Boggle works
Shake the tray and the dice settle into a grid of letters. Everyone races the same timer, writing down every word they can find by hopping between touching cells — horizontally, vertically, or diagonally. A path may never reuse the same cell twice. Longer words are worth exponentially more, which is why the whole page below obsesses over word length.
| letters | 3 | 4 | 5 | 6 | 7 | 8 | 9+ |
|---|---|---|---|---|---|---|---|
| Classic 4×4 | 1 | 1 | 2 | 3 | 5 | 11 | 11 |
| Big 5×5 | — | 1 | 2 | 3 | 5 | 11 | 11 |
| Super Big 6×6 | — | 1 | 2 | 3 | 5 | 11 | 2×letters |
- The minimum length differs. Classic counts 3-letter words; both bigger trays require 4+. That single rule change is why Classic doesn't automatically win the word-count contest despite having the easiest bar to clear.
- Super Big Boggle keeps paying past 8. Alone among the variants it scores 9+ letter words at 2 points per letter — so a 12-letter monster is worth 24, not 11.
- “Qu” counts as two letters. The Qu die (and the Th/In/Er dice on the bigger sets) spells both letters at once, so squid is a 5-letter, 2-point word built from only 4 cells. Every length and score on this page counts letters, not cells.
Tables transcribed from the Parker Brothers Classic (© 1983) and Big Boggle (© 1979) rule sheets and the Winning Moves Super Big Boggle rules (© 2012). Optional “handicap” (3-letter) and “advanced” (5-letter) house rules are not used anywhere on this page.
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.
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.
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 — scroll the full word list and click any entry to trace it yourself.
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
How much of the dictionary can ever appear?
The curve above splits by word length. Here is the single number it never states — and, for the words that miss out, the physical reason why. Exact (tokenization + dice matching), not sampled.
Why the rest can't happen
Every unplayable word
Which letters do the dice actually give you?
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.