mail  mail@stemandmusic.in
    
call  +91-9818088802
Donate

Inverse of a Square Matrix

  1. For Any \(N \times N\) Square Matrix \(A\) if there exists such a Matrix \(B\) such that \(AB=BA=I\), (where \(I\) is the \(N \times N\) Identitity Matrix), then the Matrix \(B\) is known as Inverse of Matrix \(A\)(denoted as \(A^{-1}\)).
  2. For Any \(N \times N\) Square Matrix \(A\), \(A^{-1}\) Exists Only If Determinant of \(A\) is Not 0 (i.e. \(|A|\neq0\)).
  3. The Inverse of Inverse of a Matrix gives back the Original Matrix. That is, if \(B=A^{-1}\), then \(A=B^{-1}\).
  4. The Inverse of a Matrix \(A\) (\(A^{-1}\)) can be Calculated by using the Adjoint and Determinant of the Matrix as given in the following formula

    \(A^{-1}={\Large \frac{Adjoint(A)}{|A|}}={\Large \frac{{[Cofactor(A)]}^T}{|A|}}\)

    The Adjoint Matrix of a Matrix is the Transpose of the Cofactor Matrix of the Matrix.
  5. The Inverse of a Matrix \(A\) (\(A^{-1}\)) can also be calculated by performing Elementary Row/Column Operations as given in the Algorithm on Matrix \(A\) and Matrix \(I\) in the following Matrix Equation

    \(AX=I\)

    where \(X=\) Unknown Matrix that is Inverse of the Matrix \(A\) (\(A^{-1}\))  ,  \(I=\)Identity Matrix

    After Elementary Row/Column Operations are performed on Matrix \(A\) on the Left Hand Side of the Matrix Equation, it gets converted to Identity Matrix \(I\) and Matrix on the Right Hand Side of the Matrix Equation (which was previously the Identity Matrix \(I\)) gives the Inverse of the Matrix \(A\) (\(A^{-1}\)).
  6. The Transpose of Inverse of a Matrix is same as Inverse of Transpose of the Matrix (\((A^{-1})^T=(A^T)^{-1}\)). This Matrix is also known as the Dual Matrix of the Matrix.
  7. The Reciprocal/Inverse of Determinant Value of a Matrix is same as Determinant Value of Inverse of a Matrix. That is \(\frac{1}{|A|}=|A^{-1}|\)
  8. The Inverse of a Matrix containing only a Single Non-Zero Value per Vector can be found out by Transponsing the Matrix and Replacing the Non-Zero Values with their Reciprocals. For example
    \( \begin{bmatrix} 0 & 2 & 0\\ 0 & 0 & 7 \\ 8 & 0 & 0\end{bmatrix}^{-1}=\begin{bmatrix} 0 & 0 & \frac{1}{8}\\ \frac{1}{2} & 0 & 0 \\ 0 & \frac{1}{7} & 0\end{bmatrix}\)
  9. The Inverse of any Orthogonal Matrix \(Q\) is same as its Transpose (i.e. \(Q^{-1}=Q^T\)). The Inverse of any Unitary Matrix \(U\) is same as its Conjugate Transpose (i.e. \(U^{-1}=U^\dagger\)).
Related Calculators
Matrix Inverse Calculator,    Matrix Trace, Determinant, Polynomial, Minor, Cofactor, Adjoint and Inverse Calculator
Related Topics
Determinant, Minor, Cofactor and Adjoint of a Square Matrix,    Elementary Row/Column Operations on a Matrix,    Introduction to Matrix Algebra
© Invincible IDeAS. All Rights Reserved