Win More Hangman
Length-aware letter frequency beats alphabetical guessing every time.
The optimal guess order changes with word length — a solver knows, most humans do not.
Most people guess hangman letters alphabetically or by overall English frequency. Both are suboptimal. The optimal order depends on word length — E is the top letter for 4+ letter words but A wins for 3-letter words. A hangman solver knows the distributions.
Quick answer
The optimal guess order changes with word length — a solver knows, most humans do not.
Key points
- ▸ Overall English order: E T A O I N S H R D L U — fine as a default.
- ▸ Short words (3 letters): A > E > O > I — short words skew toward common vowels more than the overall average suggests.
- ▸ Long words (8+ letters): E > I > N > S > R — every long word has at least one E ~90% of the time.
- ▸ After 2-3 vowels confirmed, switch to consonants: R, S, T, N are more useful than D, L, M.
- ▸ Pattern-aware: once you have _A_E, a solver filters the dictionary and suggests the optimal next letter (often T → LATE/DATE, or M → MATE, or G → GATE).
Examples
- 5-letter wordOptimal order for 5-letter: E A R O I. Get 3 of these and most 5-letter words resolve to a short candidate list.
- Pattern helpConfirmed: _ I _ E R. Solver filters dictionary — RIVER, TIGER, LINER, MINER, FIXER. Next best guess: N (covers LINER, MINER) or R (covers several).
- Double letterConfirmed: _ _ O _ E with 5 letters. Solver finds SMOKE, BROKE, SPOKE, CHOKE. Next guess: K (top hit) then S.
When to use which tool
- CYAN · STABLE — 2-3 candidate words left — next guess likely wins the round.
- GOLD · GUARDED — 4-10 possibilities — pick the letter that splits them most evenly.
- MAGENTA · CRITICAL — 10+ candidates with 2 wrong guesses banked — switch to frequency order and stop gambling.
Related
Frequently asked questions
› Should I always guess the most frequent letter? Trust & accuracy
Close to always — but if the pattern already excludes most words with E, you gain more from a less frequent letter that discriminates better.
› Does the solver work on custom word lists?
The best ones let you paste or pick a list. A kids' word list has different frequencies than a full dictionary — tune accordingly.
› How should I use this guide with a Kefiw tool? How-to
Use the guide as the plan and the linked Kefiw tool as the check. Read the steps first, try the move manually, then use the tool to compare outputs, catch edge cases, and decide whether the result actually fits your task.
› What mistake do tool guides help avoid? Troubleshooting
Tool guides help avoid using a utility mechanically without understanding what you are trying to accomplish. Most word, writing, and text utilities are fast, but speed can hide context mistakes. Know whether you are solving a puzzle, cleaning copy, drafting a line, or checking a rule.
› Can a tool guide help me learn the skill? How-to
A tool guide can help you learn if you pause before accepting the output and ask why it worked. Compare your first guess with the tool result, look for the rule or pattern, and repeat that review. Passive copying solves one task; active review builds the skill.