A matrix A is invertible if and only if its determinant |A| not equal to 0. If |A| = 0, the matrix is called singular and does not have an inverse.
An inverse matrix of a square matrix A is a matrix A^(-1) such that: A.A^(-1)=A^(-1).A=I where I is the identity matrix of the same order as A.
Yes, the inverse of a matrix (if it exists) is unique. This means that for any matrix A, there is only one matrix A^(-1) that satisfies A^(-1).A=A.A^(-1)=I.
Join ALLEN!
(Session 2026 - 27)
Choose class
Choose your goal
Preferred Mode
Choose State
Inverse Matrix
An inverse matrix of a square matrix A is a matrix A−1 such that when multiplied with A, it results in the identity matrix I: A.A−1=A−1.A=I.
A matrix is invertible if its determinant is non-zero (∣A∣=0). If the inverse exists, it is unique. Inverse matrices are crucial for solving systems of linear equations and performing various matrix operations.
1.0What is a Matrix?
A matrix is a rectangular array of numbers or elements arranged in rows and columns. It is typically represented as a11a21...am1a12a22...am2............a1na2n...a1n, where m is the number of rows and n is the number of columns. Matrices are used in various fields such as mathematics, physics, computer science, and engineering, particularly for solving systems of linear equations, transformations, and data representation.
A square matrix A is said to be invertible (or non-singular) if and only if its determinant is non-zero, i.e., ∣A∣=0. In this case, there exists a matrix B such that:
AB = I = BA
Here, B is called the inverse (or reciprocal) of A and is denoted as A−1. Therefore, the relationship can be expressed as:
A−1=Bif and only ifAB=I=BA
Additionally, the following identity holds for any invertible matrix A: A.adj(A)=∣A∣In
Multiplying both sides by , we get: A−1.A.(adjA)=A−1.∣A∣In
This simplifies to:
Thus, we have the necessary and sufficient condition for a square matrix A to be invertible: ∣A∣=0.
∴A−1=∣A∣adjA
Key Points to Remember
The inverse of a matrix exists only if the matrix is square (same number of rows and columns).
A matrix must be non-singular (its determinant should not be zero) to have an inverse.
3.0Inverse Formula For a 2 × 2 Matrix
For a 2 × 2 matrix:
A=(acbd)
The formula to find the inverse of matrix A is:
A−1=ad−bc1(d−c−ba)
Here, ad - bc is the determinant of the matrix. If the determinant is zero, the matrix does not have an inverse.
4.0Inverse Formula For a 3 × 3 Matrix
If A is a 3 × 3 matrix:
A=adgbehcfi
The inverse of a 3 × 3 matrix is calculated using the matrix of minors, cofactors, and adjugates, which is a more complex process but essential for larger matrices.
For a 2×2 matrix, swap the elements on the main diagonal and change the signs of the off-diagonal elements.
Multiply by 1/det(A):
A−1=51(4−1−32)
So, the inverse matrix is:
A−1=(545−15−352)
Step-by-Step Guide for a 3 × 3 Matrix
Finding the inverse of a 3 × 3 matrix requires more steps, but it involves finding the determinant, the matrix of minors, and then using the cofactor and adjugate methods. You can refer to detailed examples or use online tools to calculate it faster.
Example of Inverse Matrix
Example 1: 2 × 2 Matrix
Given the matrix:A=(5273)
Step 1: Calculate the determinant:
det(A)=(5)(3)–(7)(2)
=15–14=1
Step 2: Swap the elements of the diagonal and negate the off-diagonal elements:
If A=[02−1−220],B=011101and M = AB, then M-1 is equal to
(A)[22−21]
(B)[31−313161]
(C)[3131−3161]
(D)[31−31−3161]
Ans. (C)
Solution:
M=[02−1−220]011101=[1−222]
∣M∣=6,adj M=[22−21]
M−1=61[22−21]=[3131−3161]
6.0Properties Of The Inverse Of A Matrix
Product of Invertible Matrices: If A and B are invertible matrices of the same order, then the inverse of their product is given by: (AB)−1=B−1A−1
Note: If A1,A2,....,An are invertible square matrices of order n, then:
(A1A2....An)−1=An−1An−a−1....A2−1A1−1
Transpose of an Invertible Matrix: If A is an invertible matrix, then its transpose ATis also invertible, and: (AT)−1=(A−1)T
Inverse Properties:
(a) The inverse of the inverse of AA is AA, i.e., (A−1)−1=A.
(b) For any positive integer k, the inverse of Akis , k(A−1)k=A−k
Determinant of the Inverse: If A is an invertible matrix, then:∣A−1∣=∣A∣1
Idempotent Matrix: If an idempotent matrix (i.e., a matrix A such that A2=A) is invertible, its inverse must be the identity matrix.
Nilpotent Matrix: A nilpotent matrix, which satisfies for some positive integer k, cannot be invertible because its determinant is zero.
Orthogonal Matrix: An orthogonal matrix A is always invertible, and its inverse is its transpose: A−1=AT
Involutory Matrix: For an involutory matrix A, which satisfies A2=I, we have: A=A−1
7.0Cancellation Law
Let A, B, C be square matrices of the same order n. If A is a non-singular matrix (i.e., ∣A∣=0), then the following cancellation laws hold:
Left Cancellation Law: If AB = AC, then B = C.
Right Cancellation Law: If BA = CA, then B = C.
Note: These cancellation laws hold only when A is non-singular, meaning .
8.0Sample Questions on Inverse Matrix
How do you find the inverse of a matrix?
Ans: For a 2 × 2 matrix A=(acbd), the inverse is given by:
A−1=∣A∣1(d−c−ba)
where |A| = ad – bc.
For larger matrices, you can use methods like Gaussian elimination, adjoint method, or matrix inversion formulas.
What is the adjoint of a matrix, and how is it related to the inverse?
Ans: The adjoint (or adjugate) of a matrix A is the transpose of the cofactor matrix of A. The inverse of A can be expressed as: A−1=∣A∣1.adj(A) where |A| is the determinant of A.