7
$\begingroup$

This question assumes a knowledge of Wordle's innards including a review of its source code. This blog is useful background reading.

Is it possible to fail (six unsuccessful guesses) at original Wordle without making mistakes? In other words, is there a Wordle word (from the solutions list) for which there is a valid (from the guesses list) and efficient (always using every clue perfectly) sequence of six guesses that fail? Consider easy and hard mode to be two versions of the challenge.

$\endgroup$
8
  • 4
    $\begingroup$ Looks like a valid question to me. Basically asking "in the solution tree for Wordle using optimal strategy, is there a word located at distance more than 6 from the root?" $\endgroup$
    – justhalf
    Commented Jan 16, 2022 at 18:46
  • 1
    $\begingroup$ @justhalf exactly. Thank you for transporting me back 35 years to 3rd year information theory class. $\endgroup$
    – jay613
    Commented Jan 16, 2022 at 19:53
  • 1
    $\begingroup$ Btw for completeness, can you put in the question as well what is the difference between easy and hard mode? I don't play Wordle, so not familiar with those. $\endgroup$
    – justhalf
    Commented Jan 17, 2022 at 8:26
  • $\begingroup$ @justhalf This question assumes an exhaustive understanding of the game and its implementation, so I don't think adding basic descriptions of how to play it would enhance the question. Easy mode allows you to ignore prior clues to some extent. This allows certain strategies including guessing (which I think is why it's called easy) and strategies that sacrifice occasional very high scores in favor of a better average score. Hard mode requires each guess to be consistent with prior clues. $\endgroup$
    – jay613
    Commented Jan 17, 2022 at 12:20
  • 1
    $\begingroup$ What is the play optimizing for? Lowest score, or just getting the word? They may have different strategies, leading to different results (and hence, different answers to your question). $\endgroup$
    – Abigail
    Commented Jan 17, 2022 at 16:54

2 Answers 2

8
$\begingroup$

For 'easy' mode:

No, it is not possible to fail with optimal play. Using some of the strategies outlined in answers to What's the optimal strategy for Wordle?, I found several decision trees that will successfully identify any given solution word in five or fewer guesses.

For 'hard' mode:

There might be a few. For example, if the solution word is one of {bound, found, hound, mound, pound, round, sound, wound}, you might run out of luck. You would need to guess something like PRISM or SHARP early in order narrow down that list.

After modifying my code, I have found a few decision trees that miss only two words. The search was nowhere near exhaustive, so these are not necessarily optimal. I have not ruled out the possibility of a 100% successful decision tree.

$\endgroup$
7
  • $\begingroup$ I feel like the hard decision tree would have to look at the cases where you have a lot of words off by 1 letter and try to take as many out as possible right away, then hope to keep everything to 6 guesses $\endgroup$ Commented Jan 16, 2022 at 21:42
  • $\begingroup$ I don't understand "trees that miss only two words" when your example provides a list of 8 words that might be ambiguous at step 5. $\endgroup$
    – jay613
    Commented Jan 17, 2022 at 12:37
  • 1
    $\begingroup$ @jay613 then in his decision tree it must be the case that the earlier guesses can split them apart on different branches, except for two. $\endgroup$
    – justhalf
    Commented Jan 17, 2022 at 13:43
  • $\begingroup$ @Daniel, do you have the decision tree that you mentioned for easy mode somewhere? I would like to see it. $\endgroup$
    – justhalf
    Commented Jan 18, 2022 at 9:35
  • 2
    $\begingroup$ My code has only shown that such trees exist. I have again modified my code to search multiple branches at each guess in order to find more optimal trees. An overnight run, checking each possible solution word as first guess, has identified over 900 that have 100% successful trees in hard mode. Next, I'll work on saving some of those trees so that I can share. $\endgroup$ Commented Jan 18, 2022 at 10:17
0
$\begingroup$

If the requirement is merely that the guesses be valid, and that they be consistent with all clues given thus far, it's possible to not only fail, but get 30 gray squares and still have multiple possible words remaining. If one guesses the words shown below, but the word was (among other possibilities) "newer"/"renew", "green", or "creek", one would get 30 gray squares and still not be able to distinguish among multiple words containing the vowel "e".

"phpht", "xylyl", "mamma", "vivid", "boffo", and "jujus"

$\endgroup$
4
  • 1
    $\begingroup$ A bit of a subversive answer but a good one I think. If you go only by my question and ignore @justhalf's clarification ("optimal strategy"), it is true that you can contrive to lose by making low-value guesses while still remaining faithful to the clues. But any mortal who has lost a game probably knows that instinctively. $\endgroup$
    – jay613
    Commented Jul 12, 2023 at 20:38
  • $\begingroup$ Also xyxyl is not (?any longer?) a valid word but your point remains valid. $\endgroup$
    – jay613
    Commented Jul 12, 2023 at 20:39
  • $\begingroup$ @jay613: Thanks for the heads-up that I'd misspelled xylyl (which I just confirmed is a valid word when correctly spelled) $\endgroup$
    – supercat
    Commented Jul 12, 2023 at 21:13
  • 1
    $\begingroup$ @jay613: I think finding a six-dud sequence is probably a good puzzle; I did it without using a computer search except for finding a list of the 37 five-letter words without a, e, i, o, or u that are valid in the Scrabble(R) brand crossword game. $\endgroup$
    – supercat
    Commented Jul 12, 2023 at 21:21

Not the answer you're looking for? Browse other questions tagged or ask your own question.