To understand the Pseudo inverse of a matrix, first learn matrices, their inverse, and then the pseudo inverse.
A matrix is an array of values arranged in rows and columns. The inverse of a matrix is a matrix that gives the identity of a matrix when multiplied by itself.
\(A \cdot A^{-1} = I
\)
\(
A^{-1} \text{ is the inverse of matrix A}
\)
\(
\text{and I is an identity matrix}
\)
However, not all matrices have an inverse. The inverse of a matrix is only possible
However, not all matrices are square matrices and have non-zero determinants. That's where Pseudo Inverse comes into the picture.
Pseudo Inverse, also known as Moore-Penrose Inverse, is a generalization of the inverse of a matrix that is not invertible. So now, we can solve the system of linear equations even if the matrix is not invertible.
It was introduced by E. H. Moore in 1920 and independently by Arne Bjerhammar in 1951. It was later generalized by Roger Penrose in 1955. So it got the name Moore-Penrose Inverse.
I didn't find any reference as to why it doesn't have the name of Bjerhammar in it.
Read more about the History of Moore-Penrose inverseLet M be a matrix of size j x k. Then the pseudo Inverse of Matrix M is denoted by M^+ and is defined as:
\(
M^{+} = (M^T \cdot M)^{-1} \cdot M^T
\)
Where
\(M^T\)is the transpose of matrix M
\(M^-1\)is the inverse of matrix M
To calculate the pseudo inverse, either use the pseudo inverse calculator or follow the below steps:
\(
F^{+} = (F^T \cdot F)^{-1} \cdot F^T
\)
The properties of Pseudo Inverse of a matrix are:
Pseudo inverse can be used to find to solve the system of linear equation even if the matrix has no inverse. Not only that, it is also widely used in:
Pseudo Inverse can be used to solve linear equations even if the matrix is not invertible.
Pseudo Inverse, also known as Moore-Penrose Inverse, is a near-to inverse of a matrix that is not invertible.
The difference between inverse and pseudo-inverse matrix is:
The inverse is Limited to a square matrix only and requires the matrix to be non-degenerate. It represents a one-to-one reversal of matrix transformation.
Pseudo Inverse applies to any size matrix and can be computed even for degenerate matrix. It acts like an inverse of a matrix.
The pseudo inverse of a diagonal matrix is the matrix, where all the elements except zero elements are replaced by their reciprocal.
Suppose if A is a diagonal matrix, then A+ is a matrix where all the non-zero elements are replaced by their reciprocal.
i.e; aii = 1/aii if aii != 0
The pseudo inverse of a zero matrix is its transpose.
If the matrix is invertible, then pseudo inverse and inverse of matrix are same. But if the matrix is not invertible, then pseudo inverse is a near-to inverse of matrix.
Yes, pseudo inverse of a zero matrix is its transpose.