Periodic Table Word Speller
Can you spell a word using only element symbols? Ba + C + O + N = BACON ✓
How the Element Speller Works
- Enter a word in the search box. The algorithm tries all combinations of element symbols that spell out your word.
- View all solutions — if multiple element combinations exist, all valid spellings are shown. Click any element tile to see its details.
- Browse Elements — see all 118 elements with their symbols, numbers, and names. Use the search to filter.
- Fun Facts — discover famous element-spellable words and trivia.
The Periodic Table Alphabet
The periodic table contains 118 confirmed elements, each with a unique chemical symbol of 1 or 2 letters. These symbols come from Latin, Greek, German, and English names. Some are obvious — H for Hydrogen, O for Oxygen, N for Nitrogen. Others are historical holdovers — Fe for Iron (Ferrum in Latin), Na for Sodium (Natrium), K for Potassium (Kalium), Au for Gold (Aurum), and Pb for Lead (Plumbum).
With 118 symbols covering various 1- and 2-letter combinations, a surprisingly large fraction of English words can be spelled entirely from element symbols. The key constraint is that each part of the word must exactly match an element symbol (first letter uppercase, optional second letter lowercase in the actual periodic table, but case-insensitive in matching).
Backtracking Algorithm
The element speller uses a recursive backtracking algorithm. For each position in the word, it tries to match a 1-letter symbol first (if such an element exists), then a 2-letter symbol. If either match continues to a complete spelling, it is recorded as a solution. The algorithm explores all branching paths, so if a word can be spelled in multiple ways (e.g., SNOB = S+N+O+B or Sn+O+B), all solutions are found. The algorithm runs in at most O(2^n) time where n is word length, but in practice it terminates quickly because most branches are pruned early when no matching symbol exists.
Breaking Bad and Pop Culture
The most famous use of periodic table spelling is in the title sequence of Breaking Bad (2008-2013), where the element symbols Br (Bromine) and Ba (Barium) are highlighted in the show's title. This visual device cleverly references the show's theme — chemistry teacher turned methamphetamine cook — and inspired a wave of element-spelling games, apps, and merchandise. The Breaking Bad title sequence designer has cited this as one of the most recognizable title sequences in television history.
Notable Spellable Words
CARBON = C + Ar + B + O + N. SCIENCE = Sc + I + En + Ce. NOBLE = No + B + Le. SILICON = Si + Li + Co + N. COPPER = Co + P + P + Er. IRON = I + Ro + N (but Ro doesn't exist, so: I + R is not an element...). Some words that look like they should work don't, and some surprising ones do. That's part of the fun of this tool — the unpredictability keeps it interesting. Try your name, your city, or chemical compound names and see what the periodic table can spell.