Cayley–Menger determinant

1

In linear algebra, geometry, and trigonometry, the Cayley–Menger determinant is a formula for the content, i.e. the higher-dimensional volume, of a n-dimensional simplex in terms of the squares of all of the distances between pairs of its vertices. The determinant is named after Arthur Cayley and Karl Menger. The n(n-1)/2 pairwise distance polynomials between n points in a real Euclidean space are Euclidean invariants that are associated via the Cayley-Menger relations. These relations served multiple purposes such as generalising Heron's Formula, as well as computing the content of a n-dimensional simplex, and ultimately determining if any real symmetric matrix is a Euclidean distance matrix for some n + 1 points in the field of distance geometry.

History

Karl Menger was a young geometry professor at the University of Vienna and Arthur Cayley was a British mathematician who specialized in algebraic geometry. Menger extended Cayley's algebraic results to propose a new axiom of metric spaces using the concepts of distance geometry up to congruence equivalence, known as the Cayley–Menger determinant. This ended up generalising one of the first discoveries in distance geometry, Heron's formula, which computes the area of a triangle given its side lengths.

Definition

Let be n+1 points in k-dimensional Euclidean space, with k \ge n. These points are the vertices of an n-dimensional simplex: a triangle when n = 2; a tetrahedron when n = 3, and so on. Let d_{ij} be the Euclidean distances between vertices A_i and A_j. The content, i.e. the n-dimensional volume of this simplex, denoted by v_n, can be expressed as a function of determinants of certain matrices, as follows: This is the Cayley–Menger determinant. For n=2 it is a symmetric polynomial in the d_{ij}'s and is thus invariant under permutation of these quantities. This fails for n>2, but it is always invariant under permutation of the vertices. Except for the final row and column of 1s, the matrix in the second form of this equation is a Euclidean distance matrix. Compare this to the usual formula for the oriented volume of a simplex, namely \tfrac1{n!} times the determinant of the n x n matrix composed of the n edge vectors. Unlike the Cayley-Menger determinant, the latter matrix changes with rotation of the simplex, though not with translation; regardless, its determinant and the resulting volume do not change.

Special cases

2-Simplex

To reiterate, a simplex is an n-dimensional polytope and the convex hull of n+1 points which do not lie in any (n-1) dimensional plane. Therefore, a 2-simplex occurs when n=2 and the simplex results in a triangle. Therefore, the formula for determining V_j^2 of a triangle is provided below: As a result, the equation above presents the content of a 2-simplex (area of a planar triangle with side lengths a, b, and c) and it is a generalised form of Heron's Formula.

3-Simplex

Similarly, a 3-simplex occurs when n=3 and the simplex results in a tetrahedron. Therefore, the formula for determining V_j^2 of a tetrahedron is provided below: As a result, the equation above presents the content of a 3-simplex, which is the volume of a tetrahedron where the edge between vertices i and j has length d_{ij}.

Proof

Let the column vectors be n+1 points in n-dimensional Euclidean space. Starting with the volume formula we note that the determinant is unchanged when we add an extra row and column to make an matrix, where |A_j|^2 is the square of the length of the vector A_j. Additionally, we note that the matrix has a determinant of. Thus,

Example

In the case of n = 2, we have that v_2 is the area of a triangle and thus we will denote this by A. By the Cayley–Menger determinant, where the triangle has side lengths a, b and c, The result in the third line is due to the Fibonacci identity. The final line can be rewritten to obtain Heron's formula for the area of a triangle given three sides, which was known to Archimedes prior. In the case of n=3, the quantity v_3 gives the volume of a tetrahedron, which we will denote by V. For distances between A_i and A_j given by d_{ij}, the Cayley–Menger determinant gives

Finding the circumradius of a simplex

Given a nondegenerate n-simplex, it has a circumscribed n-sphere, with radius r. Then the (n + 1) -simplex made of the vertices of the n-simplex and the center of the n-sphere is degenerate. Thus, we have In particular, when n = 2, this gives the circumradius of a triangle in terms of its edge lengths.

Set Classifications

From these determinants, we also have the following classifications:

Straight

A set Λ (with at least three distinct elements) is called straight if and only if, for any three elements A, B, and C of Λ ,

Plane

A set Π (with at least four distinct elements) is called plane if and only if, for any four elements A, B, C and D of Π , but not all triples of elements of Π are straight to each other;

Flat

A set Φ (with at least five distinct elements) is called flat if and only if, for any five elements A, B, C, D and E of Φ, but not all quadruples of elements of Φ are plane to each other; and so on.

Menger's Theorem

Karl Menger made a further discovery after the development of the Cayley–Menger determinant, which became known as Menger's Theorem. The theorem states: In simpler terms, if every subset of n+2 points can be isometrically embedded in an n-dimensional, but not generally (n-1)-dimensional Euclidean space, then the semi-metric is Euclidean of dimension n unless A consists of exactly n+3 points and the Cayley–Menger determinant on those n+3 points is strictly negative. This type of semi-metric would be classified as pseudo-Euclidean.

Realization of a Euclidean distance matrix

Given the Cayley-Menger relations as explained above, the following section will bring forth two algorithms to decide whether a given matrix is a distance matrix corresponding to a Euclidean point set. The first algorithm will do so when given a matrix AND the dimension, d, via a geometric constraint solving algorithm. The second algorithm does so when the dimension, d, is not provided. This algorithm theoretically finds a realization of the full n \times n Euclidean distance matrix in the smallest possible embedding dimension in quadratic time.

Theorem (d is given)

For the sake and context of the following theorem, algorithm, and example, slightly different notation will be used than before resulting in an altered formula for the volume of the n-1 dimensional simplex below than above. As stated before, the purpose to this theorem comes from the following algorithm for realizing a Euclidean Distance Matrix or a Gramian Matrix.

Algorithm

Example

Let each point p_k have coordinates. To place the first three points: In order to find a realization using the above algorithm, the discriminant of the distance quadratic system must be positive, which is equivalent to having positive volume. In general, the volume of the n-1 dimensional simplex formed by the n vertices is given by . In this formula above, is the Cayley–Menger determinant. This volume being positive is equivalent to the determinant of the volume matrix being positive.

Theorem (d not given)

Let K be a positive integer and D be a 1n × n symmetric hollow matrix with nonnegative elements, with n ≥ 2 . D is a Euclidean distance matrix with dim(D) = K if and only if there exist and an index set I = such that where realizes D, where x_h(l) denotes the l^{th} component of the h^{th} vector. The extensive proof of this theorem can be found at the following reference.

Algorithm - K = edmsph(D, x)

Source: I = {1,2} K = 1 I ← I ∪ K ← K + 1 dim aff(span(xj)) < K - 1 end for return K

This article is derived from Wikipedia and licensed under CC BY-SA 4.0. View the original article.

Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc.
Bliptext is not affiliated with or endorsed by Wikipedia or the Wikimedia Foundation.

Edit article