Existence of Points given Distances
Given the Euclidean distances between N points, what’s the minimum dimension where these N points exist? More formally, given a positive integer $N \geq 2$ and non-negative numbers $a_{ij}$ for any $1\leq i, j\leq N$(and $a_{ij}=a_{ji}$), how to determine whether there exist $N$ points in the K-dimensional Euclidean space such that the distance between point $i$ and point $j$ is $a_{ij}$ for for any $1 \leq i, j\leq N$? Yes. Adding new points iteratively to the construction solves this problem easily because the distances between the newly added point and the points in our current construction uniquely(under isometric transformation) determine its position in the space. But here is a more linear-algebraic solution. ...
