Chapter 280
Can You Save Some Cold Pizza?
The Riddler for September 25, 2020. The Express asks how precise a golfer must be to make par when each swing closes a fixed fraction of the gap, and the Classic is a notoriously hard pizza-on-a-plate geometry problem.
Riddler Express
A golf hole is yards long; the cup is inches across. With every swing you hit the ball percent closer to the centre of the hole (so the remaining distance multiplies by ). The ball drops once it is within the cup’s radius. What is the minimum for which you make par, sinking the ball in exactly four swings?
The Riddler, FiveThirtyEight, September 25, 2020(original post)
Solution
Work in inches. The hole is inches away, and the ball falls once it is within the cup’s radius inches of centre. After four swings the remaining distance is , so par needs Taking the fourth root, You must erase almost of the gap on every swing. (A birdie, three swings, needs the cube root instead, about , which shows how fast the bar rises as you demand fewer strokes.)
The computation
Encode the shrinking distance and find the threshold that lands the ball within the cup radius on the fourth swing.
dist = 400 * 36 # inches to the hole
radius = 4.25 / 2 # cup radius in inches
X = 1 - (radius / dist) ** (1 / 4)
print(round(100 * X, 2)) # 88.98 (percent)
# check: four swings land just inside the cup
print(round(dist * (1 - X) ** 4, 4)) # 2.125
The minimum precision is , just under .
Riddler Classic
You have a semicircular half of a -inch pizza. The smallest circular plate holding the semicircle outright has diameter inches. But you may make a single straight cut and rearrange the two pieces (no overlap, nothing hanging off). What is the diameter of the smallest plate that then holds both pieces?
The Riddler, FiveThirtyEight, September 25, 2020(original post)
Deferred (open problem)
This one is, in the column’s own word, a “humdinger,” and it is not actually solved. A clean lower bound comes from the cheating arrangement where the two pieces may overlap: cut the semicircle into two quarter-circles and stack them, which fit a plate of diameter inches, so no honest answer can be smaller. For a genuine non-overlapping rearrangement the best results were found numerically by minimising the enclosing circle over three parameters (where on the arc the cut starts, where on the diameter it ends, and how the pieces are positioned). A cut perpendicular to the flat edge reaches a plate of about inches; allowing a non-perpendicular cut, the best anyone achieved was about The column flags this explicitly as an open problem, so there is no exact value or verifiable construction to compute here; the answer is recorded as the best-known inches, bounded below by .