Sunday Times Teaser 3323 – Planet 9 from outer space
by Stephen Hogg
Published Sunday May 31 2026 (link)
T’zer was the ninth planet of the Sol-Vit system. Over time, astronomers on T’zer observed each of the eight innermost planets when the lines from the sun to the planet and the planet to T’zer were perpendicular. Radar showed the eight T’zer-to-planet distances at these positions were different whole numbers of light-chrons. Simultaneously, measuring the angle between the sun’s centre and the planet, they then calculated each planet’s distance from the sun (they were all whole numbers of light-chrons). T’zer’s calculated distance from the sun was always the same whole number of light-chrons due to its circular orbit.
Astrologers grumbled about this latter distance being under the 80 light-chrons used, historically, when producing horoscopes.
What is T’zer’s distance from its sun (in light-chrons)?
-
Frits permalink1234567891011121314151617181920from math import isqrtdef is_sq(x):return isqrt(x) ** 2 == x# T'zer's distance from its sunfor t in range(9, 80):# calculate each planet's distance from the sunds = set()for x in range(1, int(((t2 := t * t) / 2)**.5) + 1):if is_sq(t2 - x * x):y = int((t2 - x * x)**.5)ds.add((x, y))ds.add((y, x))# can we identify at least eight innermost planets?if len(ds) > 7:print(f"answer: {t} light-chrons")