[Math] Given distances (shortest paths) between four cities, how to show that they cannot be in the same plane

differential-geometryeuclidean-geometrygeometryquadrilateral

In the example below we are given distances between four cities. The author of the book says that these distances "suffice to prove that the world is not flat".

  • Do I understand this correctly that this just means: Checking that we cannot place four points on plane with these distances? Or am I supposed to interpret this claim differently?
  • How can this be shown? I.e., how can I use the distances below to show that it is not possible to find the points on the plane with these distances?

If I understand the problem correctly, I am supposed to find some property which is fulfilled for distance between the vertices of any quadrilateral in a plane. And then show that the given distances do not fulfill this property.


The following excerpt is taken from Einstein Gravity in a Nutshell by Zee, page 66

The logic of differential geometry

Differential geometry, as developed by Gauss and Riemann, tells us that given the metric, we can calculate the curvature. The logic goes as follows. The metric tells you the distance between two nearby points. Integrating, you can obtain the distance along any curve joining two points, not necessarily nearby. Find the curve with the shortest distance. By definition, this curve is the "straight line" between these two points. Once you know how to find the "straight line" between any two points, you can test all of Euclid’s theorems to see whether our space is flat. For example, as described in the prologue, the mite geometers could now draw a small circle around any point, measure its circumference, and see if it is equal to $2\pi$ times the radius. (See appendix 1.) Thus, the metric can tell us about curvature.

Take an everyday example: given an airline table of distances, you can deduce that the world is curved without ever going outside. If I tell you the three distances between Paris, Berlin, and Barcelona, you can draw a triangle on a flat piece of paper with the three cities at the vertices. But now if I also give you the distances between Rome and each of these three cities, you would find that you can’t extend the triangle to a planar quadrangle (figure 1). So the distances between four points suffice to prove that the world is not flat. But the metric tells you the distances between an infinite number of points.

Distances between Berlin, Barcelona, Paris and Rome


I have looked up distances between these four cities on WolframAlpha:

$$\begin{array}{|c|c|c|c|c|}
\hline
& \text{Bar} & \text{Ber} & \text{Rom} & \text{Par} \\\hline
\text{Bar} & 0 & 1498 & 861.8 & 829.2\\\hline
\text{Ber} & & 0 & 1184 & 878.7 \\\hline
\text{Rom} & & & 0 & 1109 \\\hline
\text{Par} & & & & 0 \\\hline
\end{array}$$

Best Answer

I also posted this to the other question.

The two diagonals $p$ and $q$ of a plane quadrilateral and the four side lengths $a$, $b$, $c$, $d$ are related by the Cayley-Menger determinant: $$\det\pmatrix{0&a^2&p^2&d^2&1\cr a^2&0&b^2&q^2&1\cr p^2&b^2&0&c^2&1\cr d^2&q^2&c^2&0&1\cr1&1&1&1&0\cr}=0$$ See https://en.wikipedia.org/wiki/Quadrilateral#Properties_of_the_diagonals_in_some_quadrilaterals

So, if you don't get zero, your points are not in a plane.

Related Question