From The Sunday Times, 3rd March 1963 [link]
Midsummer Day, 1962 (June 24) was my youngest grandson John’s first birthday, and I was then able to claim that my nine grandchildren were aged 0, 1, 2, 3, 4, 5, 6, 7, and 8 years old (neglecting, of course, the odd days). They were all born in June, and if they are arranged in birthday order through the month the following facts are true:
John is the middle grandchild;
The sum of the dates of the last four is an exact multiple of the sum of the dates of the first four;
The sum of the ages of the last four is two-thirds of the sum of the ages of the first four;
The sum of the years of birth of the first three is equal to the sum of the years of birth of the last three;
The intervals between birthdays are 0, 1, 2, 3, 4, 5, 6, and 7 days, but not in that order;
Also:
My eldest son’s two daughters are exactly two years apart;
The twins were born four hours apart;
Two children are as old as their dates of birth.
What was the date of birth of the grandchild born in 1954?
This puzzle is included in the book Sunday Times Brain Teasers (1974).
There are now 700 Teaser puzzles available on the site.
[teaser101]
Jim Randell 9:12 am on 28 July 2022 Permalink |
(See also: Enigma 1063).
I assume were are talking about a layout like this:
There are 5 lines, and each of the numbers appears on two of the lines.
If we add the lines we will be counting each number twice, and the total will be 5 times the common sum, T.
So, if X is the repeated digit we have:
Hence: X = 5, and T = 20.
To remove duplicate solutions we can suppose the line that doesn’t include X is (B, C, D, E) and that B < E.
The following run file executes in 98ms.
Run: [ @replit ]
#! python3 -m enigma -rr # suppose the line with no repeated digit is BCDE SubstitutedExpression --digits="1-9" --distinct="BCDE" # the 5 lines have the same sum (= 20) "A + C + F + I = 20" "A + D + G + J = 20" "B + C + D + E = 20" "B + F + H + J = 20" "E + G + H + I = 20" # all 9 digits are used "len({A, B, C, D, E, F, G, H, I, J}) = 9" # 5 is in all the lines except BCDE "5 not in {B, C, D, E}" "5 in {A, C, F, I}" "5 in {A, D, G, J}" "5 in {B, F, H, J}" "5 in {E, G, H, I}" # remove duplicate solutions "B < E" --answer="ordered(B, C, D, E)" --template=""Solution: The four numbers on the line without the repeated digit are: 1, 3, 7, 9.
There are 12 essentially different layouts, here is one:
LikeLike