Gram–Schmidt process explained
In mathematics, particularly linear algebra and numerical analysis, the Gram–Schmidt process or Gram-Schmidt algorithm is a way of finding a set of two or more vectors that are perpendicular to each other.
equipped with the
standard inner product. The Gram–Schmidt process takes a
finite,
linearly independent set of vectors
for and generates an
orthogonal set
that spans the same
-dimensional subspace of
as
.
The method is named after Jørgen Pedersen Gram and Erhard Schmidt, but Pierre-Simon Laplace had been familiar with it before Gram and Schmidt.[1] In the theory of Lie group decompositions, it is generalized by the Iwasawa decomposition.
The application of the Gram–Schmidt process to the column vectors of a full column rank matrix yields the QR decomposition (it is decomposed into an orthogonal and a triangular matrix).
The Gram–Schmidt process
The vector projection of a vector
on a nonzero vector
is defined as
where
denotes the
inner product of the vectors
and
. This means that
is the orthogonal projection of
onto the line spanned by
. If
is the zero vector, then
is defined as the zero vector.
Given
vectors
the Gram–Schmidt process defines the vectors
as follows:
The sequence
is the required system of orthogonal vectors, and the normalized vectors
form an
orthonormal set. The calculation of the sequence
is known as
Gram–Schmidt orthogonalization, and the calculation of the sequence
is known as
Gram–Schmidt orthonormalization.
To check that these formulas yield an orthogonal sequence, first compute
by substituting the above formula for
: we get zero. Then use this to compute
again by substituting the formula for
: we get zero. For arbitrary
the proof is accomplished by
mathematical induction.
Geometrically, this method proceeds as follows: to compute
, it projects
orthogonally onto the subspace
generated by
, which is the same as the subspace generated by
. The vector
is then defined to be the difference between
and this projection, guaranteed to be orthogonal to all of the vectors in the subspace
.
The Gram–Schmidt process also applies to a linearly independent countably infinite sequence . The result is an orthogonal (or orthonormal) sequence such that for natural number : the algebraic span of
is the same as that of
.
If the Gram–Schmidt process is applied to a linearly dependent sequence, it outputs the vector on the
th step, assuming that
is a linear combination of
. If an orthonormal basis is to be produced, then the algorithm should test for zero vectors in the output and discard them because no multiple of a zero vector can have a length of 1. The number of vectors output by the algorithm will then be the dimension of the space spanned by the original inputs.
A variant of the Gram–Schmidt process using transfinite recursion applied to a (possibly uncountably) infinite sequence of vectors
yields a set of orthonormal vectors
with
such that for any
, the completion of the span of
\{u\beta:\beta<min(\alpha,\kappa)\}
is the same as that of In particular, when applied to a (algebraic) basis of a
Hilbert space (or, more generally, a basis of any dense subspace), it yields a (functional-analytic) orthonormal basis. Note that in the general case often the strict inequality
holds, even if the starting set was linearly independent, and the span of
need not be a subspace of the span of
(rather, it's a subspace of its completion).
Example
Euclidean space
Consider the following set of vectors in
(with the conventional inner product)
Now, perform Gram–Schmidt, to obtain an orthogonal set of vectors:
We check that the vectors
and
are indeed orthogonal:
noting that if the
dot product of two vectors is 0 then they are orthogonal.
For non-zero vectors, we can then normalize the vectors by dividing out their sizes as shown above:
Properties
Denote by
\operatorname{GS}(v1,...,vk)
the result of applying the Gram–Schmidt process to a collection of vectors
. This yields a map
\operatorname{GS}\colon(\Rn)k\to(\Rn)k
.
It has the following properties:
- It is continuous
- It is orientation preserving in the sense that
\operatorname{or}(v1,...,vk)=\operatorname{or}(\operatorname{GS}(v1,...,vk))
.
- It commutes with orthogonal maps:
Let
be orthogonal (with respect to the given inner product). Then we have
Further, a parametrized version of the Gram–Schmidt process yields a (strong) deformation retraction of the general linear group
onto the orthogonal group
.
Numerical stability
When this process is implemented on a computer, the vectors
are often not quite orthogonal, due to
rounding errors. For the Gram–Schmidt process as described above (sometimes referred to as "classical Gram–Schmidt") this loss of orthogonality is particularly bad; therefore, it is said that the (classical) Gram–Schmidt process is
numerically unstable.
The Gram–Schmidt process can be stabilized by a small modification; this version is sometimes referred to as modified Gram-Schmidt or MGS. This approach gives the same result as the original formula in exact arithmetic and introduces smaller errors in finite-precision arithmetic.
Instead of computing the vector asit is computed as
This method is used in the previous animation, when the intermediate
vector is used when orthogonalizing the blue vector
.
Here is another description of the modified algorithm. Given the vectors
, in our first step we produce vectors
by removing components along the direction of
. In formulas,
:=vk-
| \langlevk,v1\rangle |
\langlev1,v1\rangle |
v1
. After this step we already have two of our desired orthogonal vectors
, namely
, but we also made
already orthogonal to
. Next, we orthogonalize those remaining vectors against
. This means we compute
by subtraction
. Now we have stored the vectors
where the first three vectors are already
and the remaining vectors are already orthogonal to
. As should be clear now, the next step orthogonalizes
against
. Proceeding in this manner we find the full set of orthogonal vectors
. If orthonormal vectors are desired, then we normalize as we go, so that the denominators in the subtraction formulas turn into ones.
Algorithm
The following MATLAB algorithm implements classical Gram–Schmidt orthonormalization. The vectors (columns of matrix V
, so that V(:,j)
is the
th vector) are replaced by orthonormal vectors (columns of
U
) which span the same subspace.
function U = gramschmidt(V) [n, k] = size(V); U = zeros(n,k); U(:,1) = V(:,1) / norm(V(:,1)); for i = 2:k U(:,i) = V(:,i); for j = 1:i-1 U(:,i) = U(:,i) - (U(:,j)'*U(:,i)) * U(:,j); end U(:,i) = U(:,i) / norm(U(:,i)); endend
The cost of this algorithm is asymptotically floating point operations, where is the dimensionality of the vectors.
Via Gaussian elimination
If the rows are written as a matrix
, then applying
Gaussian elimination to the augmented matrix
will produce the orthogonalized vectors in place of
. However the matrix
must be brought to
row echelon form, using only the
row operation of adding a scalar multiple of one row to another.
[2] For example, taking
v1=\begin{bmatrix}3&1\end{bmatrix},v2=\begin{bmatrix}2&2\end{bmatrix}
as above, we have
And reducing this to row echelon form produces
The normalized vectors are thenas in the example above.
Determinant formula
The result of the Gram–Schmidt process may be expressed in a non-recursive formula using determinants.
where
and, for
,
is the Gram determinant
Note that the expression for
is a "formal" determinant, i.e. the matrix contains both scalars and vectors; the meaning of this expression is defined to be the result of a
cofactor expansion along the row of vectors.
The determinant formula for the Gram-Schmidt is computationally (exponentially) slower than the recursive algorithms described above; it is mainly of theoretical interest.
Expressed using geometric algebra
Expressed using notation used in geometric algebra, the unnormalized results of the Gram–Schmidt process can be expressed aswhich is equivalent to the expression using the
operator defined above. The results can equivalently be expressed as
[3] which is closely related to the expression using determinants above.
Alternatives
Other orthogonalization algorithms use Householder transformations or Givens rotations. The algorithms using Householder transformations are more stable than the stabilized Gram–Schmidt process. On the other hand, the Gram–Schmidt process produces the
th orthogonalized vector after the
th iteration, while orthogonalization using
Householder reflections produces all the vectors only at the end. This makes only the Gram–Schmidt process applicable for
iterative methods like the
Arnoldi iteration.
Yet another alternative is motivated by the use of Cholesky decomposition for inverting the matrix of the normal equations in linear least squares. Let
be a full column rank matrix, whose columns need to be orthogonalized. The matrix
is
Hermitian and
positive definite, so it can be written as
using the
Cholesky decomposition. The lower triangular matrix
with strictly positive diagonal entries is
invertible. Then columns of the matrix
are
orthonormal and
span the same subspace as the columns of the original matrix
. The explicit use of the product
makes the algorithm unstable, especially if the product's
condition number is large. Nevertheless, this algorithm is used in practice and implemented in some software packages because of its high efficiency and simplicity.
In quantum mechanics there are several orthogonalization schemes with characteristics better suited for certain applications than original Gram–Schmidt. Nevertheless, it remains a popular and effective algorithm for even the largest electronic structure calculations.[4]
Run-time complexity
Gram-Schmidt orthogonalization can be done in strongly-polynomial time. The run-time analysis is similar to that of Gaussian elimination.
See also
References
- Book: Cheney . Ward . Kincaid . David . [{{Google books |plainurl=yes |id=Gg3Uj1GkHK8C |page=544 }} Linear Algebra: Theory and Applications ]. Sudbury, Ma . Jones and Bartlett . 2009 . 978-0-7637-5020-6 . 544, 558 .
- Pursell. Lyle. Trimble. S. Y.. Gram-Schmidt Orthogonalization by Gauss Elimination . The American Mathematical Monthly. 1 January 1991. 98. 6. 544–549. 10.2307/2324877 . 2324877.
- Book: Doran . Chris . Lasenby . Anthony . Geometric Algebra for Physicists . Cambridge University Press . 2007 . 978-0-521-71595-9 . 124 .
- Book: Pursell. Yukihiro. Proceedings of 2011 International Conference for High Performance Computing, Networking, Storage and Analysis . First-principles calculations of electron states of a silicon nanowire with 100,000 atoms on the K computer . etal. 2011. 1:1–1:11. 10.1145/2063384.2063386 . 9781450307710. 14316074.
Sources
External links