Neha Patil (Editor)

Orthogonal Procrustes problem

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

The orthogonal Procrustes problem is a matrix approximation problem in linear algebra. In its classical form, one is given two matrices A and B and asked to find an orthogonal matrix R which most closely maps A to B . Specifically,

Contents

R = arg min Ω Ω A B F s u b j e c t   t o Ω T Ω = I ,

where F denotes the Frobenius norm.

The name Procrustes refers to a bandit from Greek mythology who made his victims fit his bed by either stretching their limbs or cutting them off.

Solution

This problem was originally solved by Peter Schönemann in a 1964 thesis. The individual solution was later published. A proof is also given in

This problem is equivalent to finding the nearest orthogonal matrix to a given matrix M = B A T . To find this orthogonal matrix R , one uses the singular value decomposition

M = U Σ V T

to write

R = U V T .

Proof

One proof depends on basic properties of the standard matrix inner product that induces the Frobenius norm:

R = arg min Ω | | Ω A B F 2 = arg min Ω Ω A B , Ω A B = arg min Ω A F 2 + B F 2 2 Ω A , B = arg max Ω Ω , B A T = arg max Ω V T Ω T U , Σ = U ( arg max Ω Ω , Σ ) V T = U V T .

Generalized/constrained Procrustes problems

There are a number of related problems to the classical orthogonal Procrustes problem. One might generalize it by seeking the closest matrix in which the columns are orthogonal, but not necessarily orthonormal.

Alternately, one might constrain it by only allowing rotation matrices (i.e. orthogonal matrices with determinant 1, also known as special orthogonal matrices). In this case, one can write (using the above decomposition M = U Σ V T )

R = U Σ V T ,

where Σ is a modified Σ , with the smallest singular value replaced by sign ( det ( U V T ) ) (+1 or -1), and the other singular values replaced by 1, so that the determinant of R is guaranteed to be positive. For more information, see the Kabsch algorithm.

References

Orthogonal Procrustes problem Wikipedia