The Hardest Hangman (2024)

What’s the hardest word to guess, when playing hangman? I’ll come back to that.

Last year, Nick Berry wrote a fantastic blog post about the optimal strategy for Hangman. He showed that the best guessesto make to get your first “hit” in a game of hangman arenot the most-commonly occurring letters in written English, because these aren’t the most commonly-occurringletters in individual words. He also showed that the first guesses should be adjusted based on the length of the word (the most common letter in 5-letter words is ‘S’, but the mostcommon letter in 6-letter words is ‘E’). In short: hangman’s a more-complex game than you probably thought it was! I’d like to take his work a step further, and work out which word isthehardest word: that is – assuming you’re playing an optimal strategy, what word takes the most-guesses?

First, though, we need to understand how hangman is perfectly played. Based on the assumption that the “executioner” player is choosing words randomly, and that no clue is given as tothe nature of the word, we can determine the best possible move for all possible states of the game by using a data structure known as a tree. Suppose our opponent has chosen athree-letter word, and has drawn three dashes to indicate this. We know from Nick’s article that the best letter to guess is A. And then, if our guess iswrong, the nextbest letter to guess is E. But what if our first guess is right? Well, then we’ve got an “A” in one or more positions on the board, and we need to work out thenext bestmove: it’s unlikely to be “E” – very few three-letter words have both an “A” and an “E” – and of course what letter we should guess next depends entirely on whatpositionsthe letters are in.

What we’re actually doing here is afiltering exercise: of all of the possible letters we could choose, we’re considering what possible results that could have. Then foreach of those results, we’re considering what guesses we could makenext, and so on. At each stage, we compare all of the possible moves to a dictionary of all possiblewords, and filter out all of the words itcan’t be: after our first guess in the diagram above, if we guess “A” and the board now shows “_ A _”, then we know that of the600+ three-letter words in the English language, we’re dealing with one of only about 134. We further refine our guess by playing the odds: of those words, more of them have a “C” inthan any other letter, so that’s our second guess. If it has a C in, that limits the options further, and we can plan the next guess accordingly. If itdoesn’t have a Cin, thatstill provides us with valuable information: we’re now looking for a three-letter word with an A in the second position and no letter C: that cuts itdown to 124 words (and our next guess should be ‘T’). This tree-based mechanism for working out the best moves is comparable to that used by other game-playing computers. Hangman issimple enough that it can be “solved” by contemporary computers (like draughts –solved in 2007 – but unlike chess: while modern chess-playingcomputers can beat humans, it’s still theoretically possible to build future computers that will beat today’s computers).

Now that we can simulate the way that a perfect player would play against a truly-random executioner, we can use this to simulate games of hangman forevery possible word(I’m using version 0.7 of this British-English dictionary).In other words, we set up two computer players: the first chooses a word from the dictionary, the second plays “perfectly” to try to guess the word, and we record how many guesses ittook. So that’s what I did. Here’s the Ruby code I used. It’s heavily-commented andprobably pretty understandable/good learning material, if you’re into that kind of thing. Or if you fancy optimising it, there’s plenty of scope for that too (I knocked it out on alunch break; don’t expect too much!). Or you could use it as the basis to make a playable hangman game. Go wild.

Running the program, we can see that the hardest three-letter word is “xxv”, which would take 22 guesses (20 of them wrong!) to get. But aside from the roman numeral for 25, I don’tthink that “xxv” is actually a word. Perhaps my dictionary’s not very good. “Oak”, though, is definitely a word, and at 20 guesses (17 wrong), it’s easily enough to hang your opponentno matter how many strokes it takes to complete the gallows.

There are more tougher words in the four-letter set, like the devious “quiz”, “jazz”, “zinc”, and “faux”. Pick one of those and your opponent – unless they’ve seen this blog post! – isincredibly unlikely to guess it before they’re swinging from a rope.

As we get into the 5, 6, and 7-letter words you’ll begin to notice a pattern: that thehardest words with any given number of letters geteasier the longerthey are. That’s kind of what you’d expect, I suppose: if there were a hypothetical word that contained every letter in the alphabet, then nobody would ever fail to (eventually) get it.

When we make a graph of each word length, showing which proportion of the words require a given number of “wrong” guesses (by an optimised player), we discover a “sweet spot” window inwhich we’ll find all of the words that an optimised player will always fail to guess (assuming that we permit up to 10 incorrect guesses before they’re disqualified). Thewindow seems small for the number of times I remember seeing people actually lose at hangman, which implies to me that human players consistently play sub-optimally, and do notadequately counteract that failing by applying an equal level of “smart”, intuitive play (knowing one’s opponent and their vocabulary, looking for hints in the way the game ispresented, etc.).

In case you’re interested, then, here are the theoretically-hardest words to throw at your hangman opponent. While many of the words there feel like they would quite-rightly bedifficult, others feel like they’d be easier than their ranking would imply: this is probably because they contain unusual numbers of vowels or vowels in unusual-but-telling positions,which humans (with their habit, inefficient under normal circ*mstances, of guessing anextended series of vowels to begin with) might be faster to guess than acomputer.

WordGuesses taken“Wrong” guesses needed
quiz2420
jazz2219
jazzy2218
quaff2218
zinc2117
oak2017
vex2017
vox2017
foxing2216
foxed2116
queued2016
fuzzy2016
quay2016
pinup2016
fox1916
yuk1916
vaquero2215
jazzier2115
quizzed2115
hazing2115
favour2115
yoking2115
quays2015
quark2015
joked2015
guyed2015
foyer2015
bumph2015
huge1915
quip1915
gibe1915
rump1915
guan1915
quizzed1915
oaks1915
murk1915
fezzes1915
yuck1915
keno1915
kazoo1915
Download a longer list
(there’s plenty more which you’d expect to “win” with)

If you use this to give you an edge in your next game, let me know how it works out for you!

The Hardest Hangman (10)×The Hardest Hangman (11)×The Hardest Hangman (12)×The Hardest Hangman (13)×The Hardest Hangman (14)×The Hardest Hangman (15)×The Hardest Hangman (16)×The Hardest Hangman (17)×The Hardest Hangman (18)×
The Hardest Hangman (2024)

FAQs

What is the hardest answer to hangman? ›

According to research the hardest word to guess in “hangman” is “Jazz”, this is because the word is composed of 75% of uncommon letters. Other words are: Buzz.

What is the hardest 4 letter word to guess? ›

There are more tougher words in the four-letter set, like the devious “quiz”, “jazz”, “zinc”, and “faux”. Pick one of those and your opponent – unless they've seen this blog post! – is incredibly unlikely to guess it before they're swinging from a rope.

What is the best guess for hangman? ›

Hangman Game Strategies

The most common used English letter is 'e' so one better starts by guessing it. The 4 other vowels ('a', 'o', 'i', 'u') are next popular after 'e'. The other most commonly used letters are 't', 'n', 's', 'h', 'r', 'd' and 'l'.

How do you always beat hangman? ›

My basic strategy is this:
  1. For a pattern such as ..e.. with tried letters: e,s,t.
  2. Check against words of only n digits (in this case 5)
  3. Create a list of possible words. ...
  4. Cycle through each word, counting up the number of times every letter appears.
  5. Your optimal next guess is the most likely letter.
Mar 30, 2012

What is the hardest hangword? ›

The hardest word to guess in hangman, according to science, is: Jazz. Composed of 75 percent uncommon letters (J and Z) and allowing only three chances at picking correctly, jazz is the perfect storm of Hangman trickery. It's kind of fitting, really. They say jazz is all about the notes they don't play.

What is a hard word to guess? ›

7 most difficult English words that will let you forget what you wanted to say
  • Rural. ...
  • Sixth. ...
  • Sesquipedalian. ...
  • Phenomenon. ...
  • Onomatopoeia. ...
  • Supercalifragilisticexpialidocious. ...
  • Worcestershire.

What are 4-letter random words? ›

Some common 4-letter words for kids are, come, bell, bear, play, sing, bird, bean, game, rice, four, five, tree, keep, dark, moon, cool, etc.

What are the unique 4-letter words? ›

Four Letter Words to Build Your Child's Vocabulary
DarkLampMeat
FeetOgreBunk
CrabFretHere
HopeTurnGear
MopeMintDice
25 more rows

What is the world's longest word? ›

The longest word in any of the major English language dictionaries is pneumonoultramicroscopicsilicovolcanoconiosis (45 letters), a word that refers to a lung disease contracted from the inhalation of very fine silica particles, specifically from a volcano; medically, it is the same as silicosis.

How do you make a hangman harder? ›

If the host ends up drawing the entire hangman, the players lose and the game is over. To make the game harder, make a rule saying that the players can only guess the secret word once before they lose. To make it easier, the host can reveal the first letter of the word, as well as any letters similar to the first one.

What is the easiest word to guess in hangman? ›

What are the easiest hangman words? Assuming the guesser speaks/spells English to a good standard… Either a one- letter word such as “a" or “I” … or a very long one with lots of different, common letters in it such as “antibacterial" or “gesticulation".

What is a better word for hangman? ›

'Spaceman' is an alternative to hangman. It uses easy to draw shapes, it follows the same rules and it is easily identifiable by its name.

Can you cheat in hangman? ›

The player, however, make use of a cheating strategy that makes it as a hard as possible for the other player to win the game. The idea behind this strategy is simple. Instead of choosing a fixed word of a given length at the start of the game, the player initially considers all words of length as possible candidates.

Can you guess the whole word in hangman? ›

The player guessing the word may, at any time, attempt to guess the whole word. If the word is correct, the game is over and the guesser wins. Otherwise, the other player may choose to penalize the guesser by adding an element to the diagram.

Is hangman good for your brain? ›

Beyond its social benefits, Hangingman also offers cognitive advantages. The game challenges players to think critically, analyze patterns, and make educated guesses based on limited information. This mental exercise can enhance problem-solving skills, improve vocabulary, and boost overall cognitive development.

What is a very hard word in hangman? ›

Apparently Jazz is the hardest hangman word there is. Most people will try vowels first then common consonants. They'll get the "A" fine, but beyond that by the time they'll think to pick "J" or "Z" it's too late, they're dead.

What are some good words for hangman? ›

With bigger words you have more possible correct letter guesses, so finding words with unusual letter combinations like schlemiel, baccarat, dithyramb, bookcase, cookbook (that one has only one vowel repeated four times, and that “kb” combination), lyricist and so on will help confuse guessers.

What happens if you fail hangman? ›

Notes. Losing Hangman in the alternate route will result in the game crashing after a minor jumpscare. However, the game will make an autosave before this happens, and reopening the game will immediately load the data, resulting in no progress loss.

Top Articles
Latest Posts
Article information

Author: Mrs. Angelic Larkin

Last Updated:

Views: 6296

Rating: 4.7 / 5 (67 voted)

Reviews: 90% of readers found this page helpful

Author information

Name: Mrs. Angelic Larkin

Birthday: 1992-06-28

Address: Apt. 413 8275 Mueller Overpass, South Magnolia, IA 99527-6023

Phone: +6824704719725

Job: District Real-Estate Facilitator

Hobby: Letterboxing, Vacation, Poi, Homebrewing, Mountain biking, Slacklining, Cabaret

Introduction: My name is Mrs. Angelic Larkin, I am a cute, charming, funny, determined, inexpensive, joyous, cheerful person who loves writing and wants to share my knowledge and understanding with you.