Can You Measure The Mystery Planet?

Riddler Classic

The astronomers of Planet Xiddler are back at it. They have developed a new technology for measuring the radius of a planet by analyzing its cross sections.

And so, they launch a satellite to study a newly discovered, spherical planet. The satellite sends back data about three parallel, equally spaced circular cross sections which have radii A, B and C megameters, with 0 < A < B < C. Based on these values, the scientists calculate the radius of the planet is R megameters. To their astonishment, they find that A, B, C and R are all whole numbers!

What is the smallest possible radius of the newly discovered planet?

Solution

There are 3 cases to look at.

I. Three cross sections are in the same hemisphere.

Adding a few segments and labels yields:

Note that:

$$\sqrt{R^2 - B^2} - \sqrt{R^2 - C^2} = \sqrt{R^2 - A^2} - \sqrt{R^2 - B^2} = d$$

I ran code to determine when this occurs, where $A < B < C < R$.

The smallest radius is $R = 14$ with $A = 7$, $B = 11$, $C = 13$, and $d = \sqrt{5}$

II. C = R.

Adding a few segments and labels yields:

Note that:

$$\sqrt{R^2 - B^2} = \sqrt{R^2 - A^2} - \sqrt{R^2 - B^2} = d$$

I ran code to determine when this occurs, where $A < B < C = R$.

The smallest radius is $R = 8$ with $A = 2$, $B = 7$, $C = 8$, and $d = \sqrt{15}$

III. Cross sections of radius A and B are in one hemisphere, cross section of C is in the other.

Adding a few segments and labels yields:

Note that:

$$\sqrt{R^2 - B^2} + \sqrt{R^2 - C^2} = \sqrt{R^2 - A^2} - \sqrt{R^2 - B^2} = d$$

I ran code to determine when this occurs, where $A < B < C < R$.

The smallest radius is $R = 63$ with $A = 18$, $B = 58$, $C = 62$, and $d = 16\sqrt{5}$

Answer

The smallest radius is 8.

Rohan Lewis

2022.03.26

Code can be found here.