|
|
PseudoinverseIn mathematics, and in particular linear algebra, the pseudoinverse of a matrix is a generalization of the inverse matrix IG2003. More precisely, this article talks about the Moore-Penrose pseudoinverse which was apparently independently described by Moore Moore1920 and Penrose Penrose1955. A common use of the pseudoinverse is as an approximate or 'best' (Least squares) solution to a system of linear equations (see below under Applications). The pseudoinverse is defined and unique for all matrices whose entries are real or complex numbers. Usually, the pseudoinverse is computed using singular value decomposition. Properties of the pseudoinverse is the unique matrix which satisfies the following criteria: - (That is, is hermitian).
Here is the conjugate transpose of a matrix M. An alternative way to define the pseudoinverse is via a limiting process: -
= \lim_{\delta \to 0} A^T (A A^T + \delta^2 I)^{-1} (see Tikhonov regularization). These exist, even if and do not exist. Useful rules -
-
-
- , for
Special cases If the columns of are linearly independent, does exist. In this case the summand vanishes in the first limit expression above and is a left inverse. -
-
If the rows of are linearly independent, does exist. In this case the summand vanishes in the second limit expression above and is a right inverse. -
-
If both columns and rows are linearly independent (that is for quadratic, non-singular matrices), the Pseudoinverse is identical with the inverse, it has all properties of the inverse. -
-
-
If A and B are such matrices that the product is defined and either one of them is unitary, then it holds that . It is possible to define a pseudoinverse for scalars and vectors, too. This amounts to treating these as matrices. The pseudoinverse of a scalar is zero if is zero and the reciprocal of otherwise: -
\\ x^{-1} & \mbox{otherwise} \end{matrix}\right. The pseudoinverse of the null vector is the transposed null vector. The pseudoinverse of other vectors is the transposed vector divided by its squared magnitude: -
\\ {x^T \over x^T x} & \mbox{otherwise} \end{matrix}\right. For proof, simply check that these definitions meet the defining criteria for the pseudoinverse. Finding the pseudoinverse of a matrix Let k be the rank of a matrix A. Then A can be decomposed as , where B is a -matrix and C is a matrix. Then -
A^+ = C^*(CC^*)^{-1}(B^*B)^{-1}B^*. If k is equal to m or n, then B or C can be chosen to as the identity matrix and the formula reduces to or A computationally simpler way to get the pseudoinverse is using the singular value decomposition (SVD). If be the singular value decomposition of A, then For a diagonal matrix such as , we get the pseudoinverse by inverting each non-zero element on the diagonal. If a pseudoinverse is already known for a given matrix, and the pseudoinverse is desired for a related matrix, the pseudoinverse for the related matrix can be computed using specialized algorithms that may need less work. In particular, if the related matrix differs from the original one by only a changed, added or deleted row or column, incremental algorithms exist that exploit the relationship am hesitant to write these down here, as I am not sure whether they provide an advantage over SVD at all. When I worked with them, I was not aware of the SVD method or at least I don't remember having been. Send me a note and I may find the time to write them up for WP. Applications The pseudoinverse provides a Least squares solution approximation to a system of linear equations (SLE) Penrose1956. Given a SLE , we look for an that minimizes , where denotes the Euclidean norm. The general solution to an inhomogeneous SLE is the sum of a single solution of the inhomogeneous system and the general solution of the corresponding homogeneous system . Lemma: If exists, the solution can always be written as the sum of the pseudoinverse solution of the inhomogeneous system and a solution of the homogeneous system: -
Proof: -
\ &=& b + A y - A y \\ \ &=& b \end{matrix}. Here, the vector is arbitrary (apart from the dimensionality). In both summands, the pseudoinverse appears. If we write it as , the equation looks like this: -
The first summand is the pseudoinverse solution. In the sense of the least squares error, it is the best linear approximation to the actual solution. This means that the correction summand has minimal euclidean norm. The second summand represents a solution of the homogeneous system , because is the projection on the kernel (null space) of A, while is the projection onto the image (range) of A (the space spanned by the column vectors of A). References - IG2003 Adi Ben-Israel, Thomas N.E. Greville: Generalized Inverses. ISBN 0387002936, Springer-Verlag (2003)
- Moore1920 E. H. Moore: On the reciprocal of the general algebraic matrix. Bull.Amer.Math.Soc. 26, 394-395 (1920)
- Penrose1955 Roger Penrose: A generalized inverse for matrices. Proc. Cambridge Philos. Soc. 51, 406-413 (1955)
- Penrose1956 Roger Penrose: On best approximate solution of linear matrix equations. Proc. Cambridge Philos. Soc. 52, 17-19 (1956)
|
 |