Teaser 2762: What a gem!
From The Sunday Times, 30th August 2015 [link] [link]
A friend showed me a beautiful gem with shiny flat faces and lots of planes of symmetry. After a quick examination I was able to declare that it was “perfectly square”. This puzzled my friend because none of the faces had four edges. So I explained by pointing out that the gem’s number of faces was a perfect square, its number of edges was a perfect square, and its number of vertices was a perfect square.
How many faces did it have, and how many of those were triangular?
[teaser2762]








Jim Randell 2:37 pm on 5 November 2020 Permalink |
This is a similar puzzle to Enigma 1376, and we can use a similar program to find possible (vertex, face, edge) counts.
from enigma import irange, subsets, printf # some squares squares = set(i * i for i in irange(2, 15)) # for a simple polyhedron V + F - E = 2 for (V, F) in subsets(squares, size=2, select="M"): E = V + F - 2 # also 2E >= 3F and 3V if 3 * max(V, F) > 2 * E: continue # E should be a square if E not in squares: continue printf("E={E} V={V} F={F}")We find the candidates are the same, i.e.: (V=9, F=9, E=16).
So we are looking at an elongated square pyramid or an octagonal pyramid. And only the octagonal pyramid has no quadrilateral faces.
Solution: The gem has 9 faces. 8 of the faces are triangular.
And the other face is octagonal:
LikeLike