From The Sunday Times, 21st January 1962 [link]
This unusual instrument is operated by selecting one of the four switch positions: A, B, C, D, and turning the power on. The effects are:
A: The pratching valve glows and the queech obulates;
B: The queech obulates and the urfer curls up, but the rumption does not get hot;
C: The sneeveling rod turns clockwise, the pratching valve glows and the queech fails to obulate;
D: The troglodyser gives off hydrogen but the urfer does not curl up.
Whenever the pratching valve glows, the rumption gets hot. Unless the sneeveling rod turns clockwise, the queech cannot obulate, but if the sneeveling rod is turning clockwise the troglodyser will not emit hydrogen. If the urfer does not curl up, you may be sure that the rumption is not getting hot.
In order to get milk chocolate from the machine, you must ensure:
(a) that the sneeveling rod is turning clockwise AND;
(b) that if the troglodyser is not emitting hydrogen, the queech is not obulating.
1. Which switch position would you select to get milk chocolate?
If, tiring of chocolate, you wish to receive the Third Programme, you must take care:
(a) that the rumption does not get hot AND;
(b) either that the urfer doesn’t curl and the queech doesn’t obulate or that the pratching valve glows and the troglodyser fails to emit hydrogen.
2. Which switch position gives you the Third Programme?
No setter was given for this puzzle.
This puzzle crops up in several places on the web. (Although maybe it’s just because it’s easy to search for: “the queech obulates” doesn’t show up in many unrelated pages).
And it is sometimes claimed it “appeared in a national newspaper in the 1930s” (although the BBC Third Programme was only broadcast from 1946 to 1967 (after which it became BBC Radio 3)), but the wording always seems to be the same as the wording in this puzzle, so it seems likely this is the original source (at least in this format).
“Omnibombulator” is also the title of a 1995 book by Dick King-Smith.
[teaser44]
Jim Randell 10:37 am on 22 December 2020 Permalink |
Alphametically, we can consider the number to be: ABCDECFG (the 3rd and 6th digits are the same).
And we can use the [[
SubstitutedExpression]] solver from the enigma.py library to solve the puzzle.The following run file executes in 68ms. (Internal runtime of the generated program is 3.0ms).
Solution: The number is 23674605.
LikeLike
Frits 2:34 pm on 22 December 2020 Permalink |
@Jim: “When out of their correct order, three only of my last four digits have consecutive numerical value”.
You seem to have interpreted it as “at least three”.
LikeLike
Jim Randell 4:30 pm on 22 December 2020 Permalink |
@Frits: Yes, this would be a more accurate (and specific) test:
It doesn’t change the solutions found. But I’ll update my code.
LikeLike
Frits 12:59 pm on 22 December 2020 Permalink |
“three of the digits are consecutive (in some order)” could (probably) also be achieved by:
# ^ is bitwise XOR operator check = lambda li: li[2] == li[1] + 1 and \ ((li[3] == li[2] + 1) ^ (li[1] == li[0] + 1)) "check(sorted([E, C, F, G])"LikeLike