Skip to content
Vamshi Jandhyala

Books · The Fiddler: Solutions

Chapter 4

Can You Spell Like a Queen Bee?

↓ Download PDF handout

In Spelling Bee, a word game from the New York Times, finding every word earns the rank of Queen Bee. That maximum score is never shown. The cutoff for Genius is shown, and it is 7070 per cent of the maximum, rounded to the nearest whole number, so dividing the Genius cutoff by 0.70.7 approximates the maximum. It does not always pin it down, since several maxima can round to the same cutoff.

Suppose a round of Spelling Bee has some very large, randomly chosen maximum. What is the probability that the maximum can be determined exactly from its Genius cutoff?

The Fiddler, Zach Wissner-Gross, August 28, 2026(original post)

The official solution appeared in the post of September 4, 2026 and gives 4040 per cent for the main puzzle, agreeing with the answer below, and picking out the same four maxima in every ten. The Extra Credit half of that post is paywalled, so 7/107/10 is my own and has not been checked against it.

Solution

Write MM for the maximum and G(M)=round(0.7M)G(M) = \operatorname{round}(0.7M) for the Genius cutoff. The question asks for the density of those MM that share their cutoff with no other maximum.

The thing to watch is not GG but how it changes. Step MM up by one and 0.7M0.7M rises by 0.70.7, so GG either holds still or climbs by one, and can do nothing else. Two maxima collide exactly when GG holds still, and since 0.70.7 is greater than a half, GG can never hold still twice in a row. Collisions therefore come in pairs and never in threes, which is what makes the counting easy.

Now the bookkeeping. Over a long run, GG must climb at an average rate of 0.70.7 per step, so a fraction 0.70.7 of the steps climb and the remaining 0.30.3 hold still. Each stationary step spoils exactly two maxima, the one on either side of it, and no maximum is spoiled twice because no two stationary steps are adjacent. The ambiguous maxima therefore have density 2×0.32 \times 0.3, and  Pr(M is determined)  =  12(10.7)  =  25. \boxed{\ \Pr(\text{$M$ is determined}) \;=\; 1 - 2(1 - 0.7) \;=\; \tfrac{2}{5}. \ }

Since 0.7=7/100.7 = 7/10, everything repeats every ten, and the cycle is worth seeing. Ten maxima are squeezed onto seven cutoffs:

MM 0 1 2 3 4 5 6 7 8 9
GG 0 1 1 2 3 4 4 5 6 6
determined? yes yes yes yes

Seven cutoffs for ten maxima means three cutoffs get used twice, spoiling six maxima and leaving four. Four in ten is 2/52/5, which is what the density argument said without needing the table.

The argument never used the digit 77, only that 0.70.7 lies between a half and one. So in general a cutoff at a fraction pp of the maximum determines it with probability 2p12p - 1. At p=12p = \tfrac12 nothing is ever determined, which is right, since then every cutoff would serve exactly two maxima, and the answer improves linearly as the cutoff climbs towards the maximum itself.

The computation

The check enumerates cutoffs and looks for collisions, in exact rational arithmetic so that no tie is settled by floating point.

import math
from fractions import Fraction
from collections import Counter

def rnd(x):                                   # nearest whole number, halves up
    return math.floor(x + Fraction(1, 2))

def cuts(M, pcts):
    return tuple(rnd(Fraction(p*M, 100)) for p in pcts)

def density(pcts, lo=100_000, span=20_000):
    T = {M: cuts(M, pcts) for M in range(lo-300, lo+span+300)}
    c = Counter(T.values())
    return Fraction(sum(c[T[M]] == 1 for M in range(lo, lo+span)), span)

print(density([70]))                          # 2/5

Twenty thousand consecutive maxima give exactly 2/52/5. The same enumeration confirms the structural claim the argument rests on, that every collision group has size two and never three.

Extra Credit

Set the rank of Genius aside. The other ranks are Amazing at 5050 per cent of the maximum, Great at 4040, Nice at 2525, Solid at 1515, Good at 88, Moving Up at 55, and Good Start at 22, each rounded to the nearest whole number. For a very large, randomly chosen maximum, what is the probability that it can be determined exactly from these seven cutoffs together?

Two of the seven do no separating at all

Begin with Amazing, the sharpest. Rounding halves upwards, round(M/2)\operatorname{round}(M/2) equals kk for M=2kM = 2k and also for M=2k1M = 2k-1, since k12k - \tfrac12 rounds up. Amazing therefore reads the same on 2k12k-1 and 2k2k and differently on everything else, so on its own it sorts the maxima into the pairs {1,2}, {3,4}, {5,6}, , {2k1,2k}, \{1,2\},\ \{3,4\},\ \{5,6\},\ \dots,\ \{2k-1,\,2k\},\ \dots and gets no further. Every remaining question is about a single pair: a maximum is determined exactly when one of the other six cutoffs tells it apart from its partner.

Good Start is no help either, for a structural reason worth noticing. Its cutoff round(M/50)\operatorname{round}(M/50) steps up as MM passes 50n+2550n + 25, which is odd, so the step falls between an even MM and the odd one after it. That is the gap between two pairs and never the gap inside one. Amazing locates the pair, Good Start agrees with it, and neither can look inside.

Five cutoffs are left to do the work: 55, 88, 1515, 2525 and 4040 per cent.

Counting what is left

A pair {2k1,2k}\{2k-1, 2k\} survives as an ambiguity exactly when all five of those read the same on both halves. Cutoff pp separates them when a rounding boundary falls between p(2k1)/100p(2k-1)/100 and p(2k)/100p(2k)/100, an interval of width p/100p/100, so whether it separates depends only on the residue of MM. The pattern turns out to repeat every 2020, not every 100100 as the percentages first suggest, because 88 per cent never casts the deciding vote.

That makes the count small enough to write out. Of every twenty consecutive maxima exactly six are ambiguous, M0, 7, 8, 15, 16, 19(mod20),M \equiv 0,\ 7,\ 8,\ 15,\ 16,\ 19 \pmod{20}, which is three of the ten pairs, namely {19,0}\{19,0\}, {7,8}\{7,8\} and {15,16}\{15,16\}. Hence  Pr(M is determined)  =  1620  =  710. \boxed{\ \Pr(\text{$M$ is determined}) \;=\; 1 - \tfrac{6}{20} \;=\; \tfrac{7}{10}. \ }

The residues of MM modulo 100100, tens down the side and units along the bottom. A filled cell is a maximum the seven cutoffs cannot pin down, because its partner under Amazing reads identically on all of them. The rows alternate, which is the period of 2020 showing itself: six residues in every twenty, in three adjacent pairs.

Seven cutoffs beat one, but by less than one might expect, 7/107/10 against 2/52/5. They are nowhere near independent: all seven are rounded percentages of the same number, so they tend to break at the same places, two of them cannot separate a pair at all, and the five that can are strongly correlated with each other. Treating them as independent would predict about 0.80.8 rather than 0.70.7. Adding ranks reaches diminishing returns quickly.

A caveat about halves

This answer depends on how ties are rounded, and not cosmetically. Amazing at 5050 per cent lands exactly on a half for every odd maximum, which is as common a tie as one could arrange. Rounding halves upwards, the ordinary reading of rounded to the nearest whole number, gives 7/107/10. Rounding halves to the nearest even number instead gives 9/209/20, a materially different answer. The main puzzle is not sensitive in this way and gives 2/52/5 under either convention, because at 7070 per cent the ties are rarer and fall where they do no damage.

The computation

Same enumeration, with the seven percentages in place of the one.

print(density([2, 5, 8, 15, 25, 40, 50]))     # 7/10

Forty thousand consecutive maxima give exactly 7/107/10, and the ambiguous ones occupy six residues modulo 2020, confirming that the period is 2020 and not 100100. The enumeration also confirms the two structural claims: every colliding group is a pair of the form (2k1,2k)(2k-1, 2k), and across four thousand such pairs the 22 and 5050 per cent cutoffs separate none of them, while 2525 per cent separates half, 4040 per cent two fifths, 1515 per cent a fifth, 55 per cent a tenth and 88 per cent two twenty-fifths.