The Math Behind a Double-Six Domino Set (Why There Are 28 Tiles)
Anyone who's played with a standard domino set has probably had the number 28 drilled in without ever being told where it comes from. It isn't arbitrary — it falls straight out of a bit of combinatorics that's worth understanding once, because it explains every other set size too, from the small double-six sets used for two-player games up through the double-eighteen monsters used for very large tables.
What a domino tile actually is
A domino tile is an unordered pair of numbers, each between 0 and some maximum value n. "Unordered" is the key word: a 3-5 tile and a 5-3 tile are the same physical tile, not two different ones — there's no "first" or "second" half that matters. And unlike, say, a hand of playing cards, repeats are allowed: 4-4 is a perfectly normal tile (a "double"), not a forbidden combination.
So the question "how many tiles are in a set?" is really the question "how many unordered pairs, with repeats allowed, can you make from the numbers 0 through n?"
The formula
This is a classic combinatorics problem called combinations with repetition, and for pairs specifically it has a clean closed form:
Total tiles = (n + 1)(n + 2) / 2
Plug in n = 6 for a standard double-six set: (7 × 8) / 2 = 56 / 2 = 28. There's your 28, straight out of the formula rather than a number someone picked by hand.
Where the formula comes from
One way to see why this works: imagine listing every ordered pair (a, b) where a and b each range from 0 to n. That's (n+1) choices for a times (n+1) choices for b, or (n+1)² ordered pairs total. Among those, exactly n+1 of them are doubles (0-0, 1-1, 2-2, and so on up to n-n) — pairs where a and b happen to match.
The remaining (n+1)² − (n+1) pairs are non-doubles, and since each of those was counted twice in our ordered list (3-5 and 5-3 are the same tile, remember), we divide that portion by two and then add the doubles back in untouched:
[(n+1)² − (n+1)] / 2 + (n+1) = (n+1)(n+2) / 2
which is exactly the formula above, arrived at a slightly different way. Either derivation lands on the same number.
Checking it against real sets
The formula holds for every common commercial set size:
- Double-six (n=6): (7 × 8)/2 = 28 tiles — the standard set for two to four players.
- Double-nine (n=9): (10 × 11)/2 = 55 tiles — common for larger groups.
- Double-twelve (n=12): (13 × 14)/2 = 91 tiles — the usual choice for Mexican Train and Chicken Foot.
- Double-fifteen (n=15): (16 × 17)/2 = 136 tiles.
- Double-eighteen (n=18): (19 × 20)/2 = 190 tiles — large enough for very big group games.
You can run any of these through the Domino Set & Combination Counter instead of doing the arithmetic by hand, including a breakdown of how many doubles are in the set and how many tiles carry any particular number.
Two smaller facts that fall out for free
Once you have the main formula, two related counts come almost for free:
- Number of doubles. There's exactly one double for each value from 0 to n, so a set always contains n+1 doubles — 7 in a double-six set, 13 in a double-twelve set.
- Tiles containing a given number. Pick any single value, say 4. It appears on a tile paired with every value from 0 to n, including itself — that's n+1 tiles again. In a double-six set, the number 4 shows up on exactly 7 tiles: 4-0, 4-1, 4-2, 4-3, 4-4, 4-5, and 4-6.
Why this matters beyond trivia
Knowing the exact tile count isn't just a fun fact — it's the baseline for anything that depends on set completeness. If you're checking whether a domino box is missing a piece (see the Tile Inventory Tracker) or working out the odds of drawing a double into your opening hand (see the Draw Probability Calculator), it all starts from this same formula: (n+1)(n+2)/2 tiles, no more, no less.