In mathematics, and in particular linear algebra, a pseudoinverse A+ of a matrix A is a generalization of the inverse matrix.[1] The most widely known type of matrix pseudoinverse is the Moore–Penrose pseudoinverse, which was independently described by E. H. Moore[2] in 1920, Arne Bjerhammar [3] in 1951 and Roger Penrose[4] in 1955. Earlier, Fredholm had introduced the concept of a pseudoinverse of integral operators in 1903. When referring to a matrix, the term pseudoinverse, without further specification, is often used to indicate the Moore–Penrose pseudoinverse. The term generalized inverse is sometimes used as a synonym for pseudoinverse.
A common use of the Moore–Penrose pseudoinverse (hereafter, just pseudoinverse) is to compute a 'best fit' (least squares) solution to a system of linear equations that lacks a unique solution (see below under Applications). Another use is to find the minimum (Euclidean) norm solution to a system of linear equations with multiple solutions. The pseudoinverse facilitates the statement and proof of results in linear algebra.
The pseudoinverse is defined and unique for all matrices whose entries are real or complex numbers. It can be computed using the singular value decomposition.
|
Contents
|
In the following discussion, the following conventions are adopted.
will denote one of the fields of real or complex numbers, denoted
, respectively. The vector space of
matrices over
is denoted by
.
,
and
denote the transpose and Hermitian transpose (also called conjugate transpose) respectively. If
, then
.
, then
denotes the range (image) of
(the space spanned by the column vectors of
) and
denotes the kernel (null space) of
.
,
denotes the
identity matrix.For
, a Moore–Penrose pseudoinverse (hereafter, just pseudoinverse) of
is defined as a matrix
satisfying all of the following four criteria:[4][5]
(AA+ need not be the general identity matrix, but it maps all column vectors of A to themselves);
(A+ is a weak inverse for the multiplicative semigroup);
(AA+ is Hermitian); and
(A+A is also Hermitian).Proofs for some of these facts may be found on a separate page here.
, there is precisely one matrix
, that satisfies the four properties of the definition.[5]A matrix satisfying the first two conditions of the definition is known as a generalized inverse. Generalized inverses always exist but are not in general unique. Uniqueness is a consequence of the last two conditions.
has real entries, then so does
.
is invertible, the pseudoinverse and the inverse coincide:
.[6]:243
.[6]:245
for
.The following identities can be used to cancel certain subexpressions or expand expressions involving pseudoinverses. Proofs for these properties can be found in the proofs subpage.

.
.If
and either,
has orthonormal columns (i.e.
) or,
has orthonormal rows (i.e.
) or,
has all columns linearly independent (full column rank) and
has all rows linearly independent (full row rank),then
.
and
are orthogonal projection operators --- that is, they are Hermitian (
,
) and idempotent (
and
). The following hold:
and 
is the orthogonal projector onto the range of
(which equals the orthogonal complement of the kernel of
).
is the orthogonal projector onto the range of
(which equals the orthogonal complement of the kernel of
).
is the orthogonal projector onto the kernel of
.
is the orthogonal projector onto the kernel of
.[5]


or
do not exist.[5]:263
converges to the matrix A (in the maximum norm or Frobenius norm, say), then (An)+ need not converge to A+. However, if all the matrices have the same rank, (An)+ will converge to A+.It is also possible to define a pseudoinverse for scalars and vectors. This amounts to treating these as matrices. The pseudoinverse of a scalar x is zero if x is zero and the reciprocal of x otherwise:

The pseudoinverse of the null (all zero) vector is the transposed null vector. The pseudoinverse of a non-null vector is the conjugate transposed vector divided by its squared magnitude:

If the columns of
are linearly independent (so that
), then
is invertible. In this case, an explicit formula is:[1]
.It follows that
is then a left inverse of
:
.
If the rows of
are linearly independent (so that
), then
is invertible. In this case, an explicit formula is:
.It follows that
is a right inverse of
:
.
This is a special case of either full column rank or full row rank (treated above). If
has orthonormal columns (
) or orthonormal rows (
), then
.
For a Circulant matrix
, the singular value decomposition is given by the Fourier transform, that is the singular values are the Fourier coefficients. Let
be the Discrete Fourier Transform (DFT) matrix, then
Let
denote the rank of
. Then
can be (rank) decomposed as
where
and
are of rank
. Then
.
For
or
computing the product
or
and their inverses explicitly is often a source of numerical rounding errors and computational cost in practice. An alternative approach using the QR decomposition of
may be used instead.
Considering the case when
is of full column rank, so that
. then the Cholesky decomposition
, where
is an upper triangular matrix, may be used. Multiplication by the inverse is then done easily by solving a system with multiple right-hand-sides,

which may be solved by forward substitution followed by back substitution.
The Cholesky decomposition may be computed without forming
explicitly, by alternatively using the QR decomposition of
, where
has orthonormal columns,
, and
is upper triangular. Then
,so R is the Cholesky factor of
.
The case of full row rank is treated similarly by using the formula
and using a similar argument, swapping the roles of
and
.
A computationally simple and accurate way to compute the pseudoinverse is by using the singular value decomposition.[1][5][8] If
is the singular value decomposition of A, then
. For a diagonal matrix such as
, we get the pseudoinverse by taking the reciprocal of each non-zero element on the diagonal, leaving the zeros in place, and transposing the resulting matrix. In numerical computation, only elements larger than some small tolerance are taken to be nonzero, and the others are replaced by zeros. For example, in the MATLAB or NumPy function pinv, the tolerance is taken to be t = ε•max(m,n)•max(Σ), where ε is the machine epsilon.
The computational cost of this method is dominated by the cost of computing the SVD, which is several times higher than matrix-matrix multiplication, even if a state-of-the art implementation (such as that of LAPACK) is used.
The above procedure shows why taking the pseudoinverse is not a continuous operation: if the original matrix A has a singular value 0 (a diagonal entry of the matrix
above), then modifying A slightly may turn this zero into a tiny positive number, thereby affecting the pseudoinverse dramatically as we now have to take the reciprocal of a tiny number.
Optimized approaches exist for calculating the pseudoinverse of block structured matrices.
Another method for computing the pseudoinverse uses the recursion

which is sometimes referred to as hyper-power sequence. This recursion produces a sequence converging quadratically to the pseudoinverse of
if it is started with an appropriate
satisfying
. The choice
(where
, with
denoting the largest singular value of
) [9] has been argued not to be competitive to the method using the SVD mentioned above, because even for moderately ill-conditioned matrices it takes a long time before
enters the region of quadratic convergence.[10] However, if started with
already close to the Moore–Penrose pseudoinverse and
, for example
, convergence is fast (quadratic).
For the cases where A has full row or column rank, and the inverse of the correlation matrix (
for A with full row rank or
for full column rank) is already known, the pseudoinverse for matrices related to
can be computed by applying the Sherman–Morrison–Woodbury formula to update the inverse of the correlation matrix, which 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[11][12] exist that exploit the relationship.
Similarly, it is possible to update the Cholesky factor when a row or column is added, without creating the inverse of the correlation matrix explicitly. However, updating the pseudoinverse in the general rank-deficient case is much more complicated.[13][14]
The package NumPy provides a pseudo-inverse calculation through its functions matrix.I and linalg.pinv; its pinv uses the SVD-based algorithm. SciPy adds a function scipy.linalg.pinv that uses a least-squares solver. High quality implementations of SVD, QR, and back substitution are available in standard libraries, such as LAPACK. Writing one's own implementation of SVD is a major programming project that requires a significant numerical expertise. In special circumstances, such as parallel computing or embedded computing, however, alternative implementations by QR or even the use of an explicit inverse might be preferable, and custom implementations may be unavoidable.
The pseudoinverse provides a least squares solution to a system of linear equations.[15] For
, given a system of linear equations
,in general, a vector
which solves the system may not exist, or if one exists, it may not be unique. The pseudoinverse solves the "least-squares" problem as follows:
, we have
where
and
denotes the Euclidean norm. This weak inequality holds with equality if and only if
for any vector w; this provides an infinitude of minimizing solutions unless A has full column rank, in which case
is a zero matrix.This result is easily extended to systems with multiple right-hand sides, when the Euclidean norm is replaced by the Frobenius norm. Let
.
, we have
where
and
denotes the Frobenius norm.If the linear system

has any solutions, they are all given by
![x = A^+ b + [I - A^+ A]w](http://wpcontent.answcdn.com/wikipedia/en/math/5/3/1/5315141a1f75a6ed7727f46dd91c53a3.png)
for arbitrary vector w. Solution(s) exist if and only if
. If the latter holds, then the solution is unique if and only if A has full column rank, in which case
is a zero matrix.
For linear systems
with non-unique solutions (such as under-determined systems), the pseudoinverse may be used to construct the solution of minimum Euclidean norm
among all solutions.
is satisfiable, the vector
is a solution, and satisfies
for all solutions.This result is easily extended to systems with multiple right-hand sides, when the Euclidean norm is replaced by the Frobenius norm. Let
.
is satisfiable, the matrix
is a solution, and satisfies
for all solutions.This description suggests the following geometric construction for the result of applying the pseudoinverse of an m×n matrix A to a vector. To find
for given b in Rm, first project b orthogonally onto the range of A, finding a point p(b) in the range. Then form A-1({p(b)}), i.e. find those vectors in Rn that A sends to p(b). This will be an affine subspace of Rn parallel to the kernel of A. The element of this subspace that has the smallest length (i.e. is closest to the origin) is the answer
we are looking for. It can be found by taking an arbitrary member of A-1({p(b)}) and projecting it orthogonally onto the orthogonal complement of the kernel of A.
Using the pseudoinverse and a matrix norm, one can define a condition number for any matrix:

A large condition number implies that the problem of finding least-squares solutions to the corresponding system of linear equations is ill-conditioned in the sense that small errors in the entries of A can lead to huge errors in the entries of the solution.[16]
In order to solve more general least-squares problems, one can define Moore–Penrose pseudoinverses for all continuous linear operators A : H1 → H2 between two Hilbert spaces H1 and H2, using the same four conditions as in our definition above. It turns out that not every continuous linear operator has a continuous linear pseudo-inverse in this sense.[16] Those that do are precisely the ones whose range is closed in H2.
In abstract algebra, a Moore–Penrose pseudoinverse may be defined on a *-regular semigroup. This abstract definition coincides with the one in linear algebra.
|
||||||||||||||
This entry is from Wikipedia, the leading user-contributed encyclopedia. It may not have been reviewed by professional editors (see full disclaimer)