Gram-Schmidt process
In mathematics and numerical analysis, the Gram-Schmidt process of linear algebra is a method of orthogonalizing a set of vectors in an inner product space, most commonly the Euclidean space Rn. Orthogonalization in this context means the following: we start with vectors v1,...,vk which are linearly independent and we want to find mutually orthogonal vectors u1,...,uk which generate the same subspace as the vectors v1,...,vk.
We denote the inner (dot) product of the two vectors u and v by (u . v). The Gram-Schmidt process works as follows:
- u1 = v1
- u2 = v2 - [(v2 . u1)/(u1 . u1)]u1
- u3 = v3 - [(v3 . u1)/(u1 . u1)]u1 - [(v3 . u2)/(u2 . u2)]u2
- ...
- uk = vk - [(vk . u1)/(u1 . u1)]u1 - [(vk . u2)/(u2 . u2)]u2 - ... - [(vk . uk-1)/(uk-1 . uk-1)]uk-1
Geometrically, this method proceeds as follows: to compute ui, it projects vi orthogonally onto the subspace U generated by u1,...,ui-1, which is the same as the subspace generated by v1,...,vi-1. ui is then defined to be the difference between vi and this projection, guaranteed to be orthogonal to all of the vectors in the subspace U.
If one is interested in an orthonormal system u1,...,uk (i.e. the vectors are mutually orthogonal and all have norm 1), then one can divide ui by its norm (ui . ui).
The Gram-Schmidt process also applies to a linearly independent infinite sequence {vi}i. The result is an orthogonal (or orthonormal) sequence {ui}'i such that for natural number n: the algebraic span of v1,...,vn is the same as that of 'u1,...,un''.
When performing orthogonalization on a computer, the Householder transformation is usually preferred over the Gram-Schmidt process since it is more numerically stable, i.e. rounding errors tend to have less serious effects.
The method is named for Jorgen Pedersen Gram and Erhard Schmidt, but is older, and to be found in the work of Laplace and Cauchy. In the theory of Lie group decompositions it is generalized by the Iwasawa decomposition.