- How does the minimal maximum number of guesses change when the number of possible colors changes?
What if there are five colors? 5 guesses
Seven colors? 6 guesses
k colors? unknownunknown, but see below for bounds when k is large
For this problem, hold the length of the secret code constant at 4. - How does the minimal maximum number of guesses change when the length of the secret code changes?
What if it is length three? 5 guesses
Five? unknownunknown
n? unknownunknown
For this problem, hold the number of possible colors constant at 6.
In Theorem 1, the authors also prove that if we hold the length of the secret code constant at 3 and have k colors where k ≥ 5, the minimal maximum number of guesses is ⌊(k - 1)/3⌋ + 4.following:
- If we hold the length of the secret code constant at 3 and have k colors where k ≥ 5, the minimal maximum number of guesses is ⌊(k - 1)/3⌋ + 4.
- If we hold the length of the secret code constant at 4 and have k colors where k ≥ 16, the minimal maximum number of guesses is between ⌊k/4⌋ + 4 and ⌊k/4⌋ + 6.