MathCalcs

Inverse of a Matrix

Inverse matrix is a matrix also called inverse transformation matrix, which undoes the transformation done by original matrix. Transformation means matrix multiplication.

Inverse of a matrix A is denoted by A-1.

How to Calculate Inverse of a Matrix?

Finding the inverse of a matrix is very simple. Just multiply the adjoing of a matrix with 1 divided by determinant of matrix.

Formula:

\(D = \frac{1}{\text{det}(M)} \)
\(M^{-1} = D \cdot \text{adj}(M) \)

where,


Its the same formula for 2x2 matrix as well as 3x3 matrix. The only difference is in the calculation of adjoint and determinant, which becomes more time and resource consuming as the order of matrix increases.

Therefore, we use matrix calculators to perform these matrix operations


Geometric Interpretation

Imagine a matrix M which transforms a vector K into a vector L.

\(L = M \cdot K \)

Now the inverse of matrix M, denoted by M-1, will transform the vector L back to K.

\(K = M^{-1} \cdot L \)

The matrix M-1 is undoes the transformation done by matrix M. Its is like a reverse transformation.


Identity Matrix

Identity Matrix is a matrix that does nothing. If a vector K goes through a transformation with identity matrix, it remains same.

\(K = I \cdot K \)

Multiplication of Matrix and its Inverse

Identity Matrix is born when a matrix is multiplied with its inverse.

If M and M-1 are multiplied together, the result is an identity matrix. Identity matrix is a matrix that does nothing.

\( M \cdot M^{-1} = I \)

where,

\(I = \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix} \)
\( M = \text{square matrix of order 2} \)

The Invertible Matrix Theorem

There are set of rules that tells whether a matrix is invertible or not. These rules are called invertible matrix theorem.

There are different variation of invertible matrix theorem. But the idea behind them is always the same.

The basic rules are as follows:

Other rules are just extension of these basic rules.


Non-Invertible Matrices

Not all matrices have inverse. There are some matrices that do not have inverse.

Singular Matrix

Singular matrices are square matrix that do not have inverse. Singular matrices have determinant of zero. Singular matrices are also called degenerate matrices.

Non-Square Matrix

Non-square matrices do not have inverse. Its because they don't have equal number of rows and columns.


Properties of Inverse of a Matrix

The properties of matrix inverse are:


Frequently Asked Questions

What is the importance of inverse of a matrix?

Inverse of a matrix is very useful in different fields of mathematics and science. Some of the uses are:


What is the inverse of a identity matrix?

The inverse of a identity matrix is itself.


Math Calcs

A playground of Linear Algebra Resources and Tutorials

©2024. All Rights Reserved