Gram-Schmidt process Guide, Meaning , Facts, Information and Description
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.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.
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 Gram-Schmidt process
If we define the projection operator by considering:
To check that these formulas yield an orthogonal sequence, first compute <u1, u2> by substituting the above formula for u2: you will get zero. Then use this to compute <u1, u3> again by substituting the formula for u3: you will get zero. The general proof proceeds by mathematical induction.
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.
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.
