From The Sunday Times, 10th August 1975 [link]
A farmer grows apples in an orchard divided into plots —three to the East and three to the West of a central path. The apples are of two types — for eating (Cox, Laxton, Pearmain) and for cider making (Tremlitt, Coppin, Kingston).
Adjacent plots contain apples of different basic type. The apples are of six colours (red, green, russet, golden, orange, yellow) and of six tastes (sweet, sour, acid, tart, pleasant, bitter).
They ripen at different times, either early or late in July, August and September. Those ripening in early or late September are in plots directly opposite. Those South of Pearmain do not ripen in August. Tart are directly West of the acid variety, which ripens in early August. Yellow apples and those maturing in late September are adjacent. Yellow and orange are of the same type. Orange are North of pleasant and also North of Pearmain. Kingstons are adjacent to golden. Green is South of bitter.
Cox ripen in early July, and Laxtons ripen early in a different month. Tremlitts are red, and Kingstons mature after Coppins, which are not sour.
If cider apples taste unpleasant, what are the characteristics of the apples in North East plot? (Name, colour, taste, ripens).
This puzzle is included in the book The Sunday Times Book of Brain-Teasers: Book 2 (1981).
I think the puzzle as published in The Sunday Times and in the book is open to interpretation, and my first attempt using a reasonable interpretation gave two solutions (neither of which are the published solution). After examining the given solution in the book I think the following wording is clearer:
A farmer grows apples in an orchard divided into plots — three to the East and three to the West of a central track. Adjacent plots are separated by a shared fence. The apples are of two basic types — for eating (Cox, Laxton, Pearmain) and for cider making (Tremlitt, Coppin, Kingston).
Neighbouring plots contain apples of different basic type. The apples are of six colours (red, green, russet, golden, orange, yellow) and of six tastes (sweet, sour, acid, tart, pleasant, bitter).
They ripen at different times, either early or late in July, August and September. Those ripening in early or late September are in plots directly opposite each other. Those directly South of Pearmain do not ripen in August. Tart are directly West of the acid variety, which ripens in early August. Yellow apples and those maturing in late September are in adjacent plots. Yellow and orange are of the same basic type. Orange are directly North of Permain, which are pleasant. Kingstons and golden are in adjacent plots. Green is directly South of bitter.
Cox ripen in early July, and Laxtons ripen early in a different month. Tremlitts are red, and Kingstons mature after Coppins, which are not sour.
If cider apples are neither pleasant nor sweet, what are the characteristics of the apples in North-East plot?
[teaser734]
Jim Randell 9:02 am on 20 May 2026 Permalink |
We place the corners of the park at (±52, ±52), and the circle is centred on (0, 0) with a radius of 19.
If the point on the circumference of the circle is (x, y), and the distance to the nearest corner (+52, +52) is a, and the distance to the furthest corner (−52, −52) is b, then we have the following equations:
And we can eliminate x and y to get:
So we can look for two squares that sum to give the required value.
The following Python program runs in 70ms. (Internal runtime is 51µs).
from enigma import ( sq, sum_of_squares, circle_intersect_circle, peek, point_dist, printf ) S = 4 * sq(52) + 2 * sq(19) for (a, b) in sum_of_squares(S, 2): printf("a={a} b={b} [S={S}]") # find one of the intersection points p = peek(circle_intersect_circle(((52, 52), a), ((-52, -52), b)), default=None) if p is None: continue printf("-> p={p}") # determine distance to the corners for q in [(52, 52), (-52, -52), (-52, 52), (52, -52)]: d = point_dist(p, q) printf("-> dist to {q} = {d:.6f}") printf()Solution: The distances are 63 m and 87 m.
However there is a problem with this answer.
If we look at the distances to each of the corners, we find that the integer distances are not the distances to the nearest and furthest corners (at least not the nearest and furthest from (x, y)).
(The integer distances are shown in red).
The distances are:
The shortest distance is DX and the longest distance is BX.
But the puzzle can be saved if the radius of the circle is changed from 19 m to 18 m, then the integer distances are 58 m and 90 m, and these are the nearest and furthest distances:
In this case the distances are:
In fact for N = 52 there are solutions when R = 18, 27, 48.
And there are solutions with integer distances that are not the nearest/furthest distances when R = 19, 26, 33, 39, 51.
LikeLike