Puneet Varma (Editor)

Geometric median

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

The geometric median of a discrete set of sample points in a Euclidean space is the point minimizing the sum of distances to the sample points. This generalizes the median, which has the property of minimizing the sum of distances for one-dimensional data, and provides a central tendency in higher dimensions. It is also known as the 1-median, spatial median, Euclidean minisum point, or Torricelli point.

Contents

The geometric median is an important estimator of location in statistics, where it is also known as the L1 estimator. It is also a standard problem in facility location, where it models the problem of locating a facility to minimize the cost of transportation.

The special case of the problem for three points in the plane (that is, m = 3 and n = 2 in the definition below) is sometimes also known as Fermat's problem; it arises in the construction of minimal Steiner trees, and was originally posed as a problem by Pierre de Fermat and solved by Evangelista Torricelli. Its solution is now known as the Fermat point of the triangle formed by the three sample points. The geometric median may in turn be generalized to the problem of minimizing the sum of weighted distances, known as the Weber problem after Alfred Weber's discussion of the problem in his 1909 book on facility location. Some sources instead call Weber's problem the Fermat–Weber problem, but others use this name for the unweighted geometric median problem.

Wesolowsky (1993) provides a survey of the geometric median problem. See Fekete, Mitchell & Beurer (2005) for generalizations of the problem to non-discrete point sets.

Definition

Formally, for a given set of m points x 1 , x 2 , , x m with each x i R n , the geometric median is defined as

Geometric Median = a r g m i n y R n i = 1 m x i y 2

Note that argmin means the value of the argument y which minimizes the sum. In this case, it is the point y from where the sum of all Euclidean distances to the x i 's is minimum.

Properties

  • For the 1-dimensional case, the geometric median coincides with the median. This is because the univariate median also minimizes the sum of distances from the points.
  • The geometric median is unique whenever the points are not collinear.
  • The geometric median is equivariant for Euclidean similarity transformations, including translation and rotation. This means that one would get the same result either by transforming the geometric median, or by applying the same transformation to the sample data and finding the geometric median of the transformed data. This property follows from the fact that the geometric median is defined only from pairwise distances, and doesn't depend on the system of orthogonal Cartesian coordinates by which the sample data is represented. In contrast, the component-wise median for a multivariate data set is not in general rotation invariant, nor is it independent of the choice of coordinates.
  • The geometric median has a breakdown point of 0.5. That is, up to half of the sample data may be arbitrarily corrupted, and the median of the samples will still provide a robust estimator for the location of the uncorrupted data.
  • Special cases

  • For 3 (non-collinear) points, if any angle of the triangle formed by those points is 120° or more, then the geometric median is the point making that angle. If all the angles are less than 120°, the geometric median is the point inside the triangle which subtends an angle of 120° to each three pairs of triangle vertices. This is also known as the Fermat point of the triangle formed by the three vertices. (If the three points are collinear then the geometric median is the point between the two other points, as is the case with a one-dimensional median.)
  • For 4 coplanar points, if one of the four points is inside the triangle formed by the other three points, then the geometric median is that point. Otherwise, the four points form a convex quadrilateral and the geometric median is the crossing point of the diagonals of the quadrilateral. The geometric median of four coplanar points is the same as the unique Radon point of the four points.
  • Computation

    Despite the geometric median's being an easy-to-understand concept, computing it poses a challenge. The centroid or center of mass, defined similarly to the geometric median as minimizing the sum of the squares of the distances to each point, can be found by a simple formula — its coordinates are the averages of the coordinates of the points — but no such formula is known for the geometric median, and it has been shown that no explicit formula, nor an exact algorithm involving only arithmetic operations and kth roots can exist in general. Therefore, only numerical or symbolic approximations to the solution of this problem are possible under this model of computation.

    However, it is straightforward to calculate an approximation to the geometric median using an iterative procedure in which each step produces a more accurate approximation. Procedures of this type can be derived from the fact that the sum of distances to the sample points is a convex function, since the distance to each sample point is convex and the sum of convex functions remains convex. Therefore, procedures that decrease the sum of distances at each step cannot get trapped in a local optimum.

    One common approach of this type, called Weiszfeld's algorithm after the work of Endre Weiszfeld, is a form of iteratively re-weighted least squares. This algorithm defines a set of weights that are inversely proportional to the distances from the current estimate to the samples, and creates a new estimate that is the weighted average of the samples according to these weights. That is,

    y i + 1 = ( j = 1 m x j x j y i ) / ( j = 1 m 1 x j y i ) .

    This method converges for almost all initial positions, but may fail to converge when one of its estimates falls on one of the given points. It can be modified to handle these cases so that it converges for all initial points.

    Bose, Maheshwari & Morin (2003) describe more sophisticated geometric optimization procedures for finding approximately optimal solutions to this problem. As Nie, Parrilo & Sturmfels (2008) show, the problem can also be represented as a semidefinite program.

    Cohen et al. (2016) show how to compute the geometric median to arbitrary precision in nearly linear time.

    Characterization of the geometric median

    If y is distinct from all the given points, xj, then y is the geometric median if and only if it satisfies:

    0 = j = 1 m x j y x j y .

    This is equivalent to:

    y = ( j = 1 m x j x j y ) / ( j = 1 m 1 x j y ) ,

    which is closely related to Weiszfeld's algorithm.

    In general, y is the geometric median if and only if there are vectors uj such that:

    0 = j = 1 m u j

    where for xjy,

    u j = x j y x j y

    and for xj = y,

    u j 1.

    An equivalent formulation of this condition is

    1 j m , x j y x j y x j y | { j 1 j m , x j = y } | .

    Generalizations

    The geometric median can be generalized from Euclidean spaces to general Riemannian manifolds (and even metric spaces) using the same idea which is used to define the Fréchet mean on a Riemannian manifold. Let M be a Riemannian manifold with corresponding distance function d ( , ) , let w 1 , , w n be n weights summing to 1, and let x 1 , , x n be n observations from M . Then we define the weighted geometric median m (or weighted Fréchet median) of the data points as

    m = a r g m i n x M i = 1 n w i d ( x , x i ) .

    If all the weights are equal, we say simply that m is the geometric median.

    References

    Geometric median Wikipedia