Kalpana Kalpana (Editor)

Johnson–Lindenstrauss lemma

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

In mathematics, the Johnson–Lindenstrauss lemma is a result named after William B. Johnson and Joram Lindenstrauss concerning low-distortion embeddings of points from high-dimensional into low-dimensional Euclidean space. The lemma states that a small set of points in a high-dimensional space can be embedded into a space of much lower dimension in such a way that distances between the points are nearly preserved. The map used for the embedding is at least Lipschitz, and can even be taken to be an orthogonal projection.

Contents

The lemma has uses in compressed sensing, manifold learning, dimensionality reduction, and graph embedding. Much of the data stored and manipulated on computers, including text and images, can be represented as points in a high-dimensional space (see vector space model for the case of text). However, the essential algorithms for working with such data tend to become bogged down very quickly as dimension increases. It is therefore desirable to reduce the dimensionality of the data in a way that preserves its relevant structure. The Johnson–Lindenstrauss lemma is a classic result in this vein.

Also the lemma is tight up to a constant factor, i.e. there exists a set of points of size m that needs dimension

Ω ( log ( m ) ε 2 )

in order to preserve the distances between all pair of points.

Lemma

Given 0 < ε < 1, a set X of m points in RN, and a number n > 8 ln(m) / ε 2, there is a linear map ƒ : RN → Rn such that

( 1 ε ) u v 2 f ( u ) f ( v ) 2 ( 1 + ε ) u v 2

for all uv ∈ X.

One proof of the lemma takes ƒ to be a suitable multiple of the orthogonal projection onto a random subspace of dimension n in RN, and exploits the phenomenon of concentration of measure.

Obviously an orthogonal projection will, in general, reduce the average distance between points, but the lemma can be viewed as dealing with relative distances, which do not change under scaling. In a nutshell, you roll the dice and obtain a random projection, which will reduce the average distance, and then you scale up the distances so that the average distance returns to its previous value. If you keep rolling the dice, you will, in polynomial random time, find a projection for which the (scaled) distances satisfy the lemma.

Alternate Statement

A related lemma is the distributional JL lemma. This lemma states that for any 0<ε,δ<1/2 and positive integer d, there exists a distribution over Rk x d, from which the matrix A is drawn such that for k = O(ε−2log(1/δ)) and for any unit-length vector xRd, the claim below holds.

P ( | A x 2 2 1 | > ε ) < δ

One can obtain the JL lemma from the distributional version by setting x = ( u v ) / u v 2 and δ < 1 / n 2 for some pair u,v both in X. Then the JL lemma follows by a union bound over all such pairs.

Speeding up the JL Transform

Given A, computing the matrix vector product takes O(kd) time. There has been a lot of work in coming up with distributions for which the matrix vector product can be computed in less than O(kd) time. There are two major lines of work. The first, Fast Johnson Lindenstrauss Transform (FJLT), was introduced by Ailon and Chazelle in 2006. Another approach is to build a distribution supported over matrices that are sparse.

References

Johnson–Lindenstrauss lemma Wikipedia