Sunday Times Teaser 3283 – Die Hard?
by Victor Bryant
Published Sunday August 24 2025 (link)
I have three identical standard dice (1 to 6 spots on each face, with 1 opposite 6, 2 opposite 5 and 3 opposite 4). I have placed them together in a row on a table and looked at the row from various sides. Regarding each face of a die as a digit (so that, for example, five spots would be regarded as a 5), I can read three 3-figure primes; one along the front of the row, one (the largest of the three) along the top of the row, and one along the back of the row viewed from behind. Furthermore, the total number of spots on the 11 visible faces is also a prime.
What, in increasing order, are the three 3-figure primes?
7 Comments
Leave one →
Here are some changes to simplify and speed up the code. I have also changed the notation for the die faces to match those I used in my first comment so that the two solutions are easier to compare.
@Brian,
Your diagram is confusing to me. From it I would assume IJK and CBA were
primes.
In line 26 you can use combinations iso permutations as “prms” is ordered.
In line 23 an isdisjoint() could be used as the intersection content is not
important.
With a little analysis we can derive the value of 5 variables and then can
calculate one side face.
Thanks for the code review. I have added your improvements and
corrected the definitions in the code.
Here is another approach.