Matrices

Invertible Matrices

I am sure we all might have multiplied a number with it’s reciprocal to find the value of a particular equation avoiding the division operation for simplicity. This is exactly what inversion means. As in the case of matrices, there is no division operator, we multiply by the inverse matrix for dividing purpose.

Suggested Videos

Play
Play
Play
previous arrow
next arrow
previous arrownext arrow
Slider

 

For example, if you had to solve (5/8) x = 10, you could still divide both sides by 5/8, but it would probably be easier to multiply both sides by 8/5. The reciprocal fraction 8/5 is the inverse of 5/8 when you multiply the two fractions, you get 1, which is, here, called as “the (multiplicative) identity”. 1 is called the identity because multiplying something by 1 doesn’t change its value.

This terminology and these facts are very important for matrices too. If you are given a matrix equation like AB = C, where A and C is given and you are to find out B, you would like to “divide off” the matrix A. But we just learned that division is not possible with matrices.

Well, what if you could find the inverse of A, something similar to finding the reciprocal fraction above? The inverse of A, written as A-1 and pronounced as A inverse, would allow you to cancel off the A from the matrix equation and then solve for B.

AB = C
A–1AB = A–1C
IB = A–1C
B = A–1C

Browse more Topics under Matrices


Matrices

Invertible Matrices

If A is a square matrix of order m, and if there exists another square matrix B of the same order m, such that AB = BA = I, then B is called the inverse matrix of A and it is denoted by A–1. For example, let $$A=\begin{bmatrix} 2 & 3\\ 1 & 2\end{bmatrix} and \: B=\begin{bmatrix} 2 & -3\\ -1 & 2\end{bmatrix}$$ be two matrices.

$$A B =\begin{bmatrix} 2 & 3\\ 1 & 2\end{bmatrix}\begin{bmatrix} 2 & -3\\ -1 & 2\end{bmatrix}$$

$$ A B =\begin{bmatrix} 4  –  3 & -6 + 6\\ 2  – 2 & -3 + 4\end{bmatrix} = \begin{bmatrix} 1 & 0\\ 0 & 1\end{bmatrix}$$

$$ B A=\begin{bmatrix} 1  –  0\\ 0 + 1\end{bmatrix} = I$$

Thus B is the inverse of A. In other words B = A-1  and A is the inverse of B. ie. A = B-1

Theorem 1

(Uniqueness of inverse) The Inverse of a square matrix, if it exists, is unique. Proof Let A = [aij] be a square matrix of order m. If possible, let B and C be two inverses of A. We shall show that B = C. Since B is the inverse of A

AB = BA = I ……….(1)
Since C is also the inverse of A
AC = CA = I ……….(2)
Thus B = BI = B (AC) = (BA) C = IC = C

Theorem 2

If A and B are invertible matrices of the same order, then (AB)–1 = B–1 A–1.

Proof: From the definition of the inverse matrix, we have

(AB) (AB)–1 = 1
A–1 (AB) (AB)–1 = A–1 I
(A–1A) B (AB)–1 = A–1
IB (AB)–1 = A–1
B (AB)–1 = A–1
B–1 B (AB)–1 = B–1 A–1
I (AB)–1  = B–1 A–1
Hence (AB)–1 = B–1 A–1

Inverse of a Matrix by Elementary Operations

If A is a matrix such that inverse of a matrix (A–1) exists, then to find an inverse of a matrix using elementary row or column operations, write   A = IA and apply a sequence of row or column operation on A = IA till we get, I = BA. The matrix B will be the inverse matrix of A. By using elementary operations, find the inverse matrix
inverse matrix

In order to use elementary row operations, we may write A = IA.

inverse matrix
inverse matrix
inverse matrix
inverse matrix

Similarly, we can also obtain the inverse of matrix A by applying elementary column operations.

  • Obtain the inverse of the matrix for 3 × 3 matrix given below

$$A =\begin{bmatrix} 1 & 2 & 0\\ 2  & 0 & -1\\ 2 & 3 & -1\end{bmatrix}$$

  • Now we write A = IA

$$A =\begin{bmatrix} 1 & 0 & 0\\ 0  & 1 & 0\\ 0 & 0 & 1\end{bmatrix}  \begin{bmatrix} 1 & 2 & 0\\ 2  & 0 & -1\\ 2 & 3 & -1\end{bmatrix}$$

  • By applying R2 → −R2 + R3, we get,

$$A =\begin{bmatrix} 1 & 0 & 0\\ 0  & -1 & 0\\ 0 & 0 & 1\end{bmatrix}  \begin{bmatrix} 1 & 2 & 0\\ 0  & 3 & 0\\ 2 & 3 & -1\end{bmatrix}$$

  • By applying R2 → R2 / 3 and R3 → – R3 + 2R1, we get,

$$A =\begin{bmatrix} 1 & 0 & 0\\ 0  & -1/3 & 1/3\\ 2 & 0 & -1 \end{bmatrix}  \begin{bmatrix} 1 & 2 & 0\\ 0  & 1 & 0\\ 0 & 1 & 1\end{bmatrix}$$

  • By applying R1 → R1 – 2R2 and R3 → R3 + R2, we get,

$$A =\begin{bmatrix} 1 & 2/3 & -2/3\\ 0  & -1/3 & 1/3\\ 2 & 1/3 & -4/3 \end{bmatrix}  \begin{bmatrix} 1 & 0 & 0\\ 0  & 1 & 0\\ 0 & 0 & 1\end{bmatrix}$$

  • Therefore,

$$A =\begin{bmatrix} 1 & 2/3 & -2/3 \\ 0  & -1/3 & 1/3\\ 2 & 1/3 & -4/3 \end{bmatrix}  $$

Properties of Inverse of a Square Matrix

  • Square matrix A is invertible if and only if |A|≠ 0
  • (A-1)-1=A
  • (A’)-1 = (A-1)’
  • (AB)-1 = B-1A-1 In general (A1A1A1 … An)-1 = An-1An – 1-1 … A3-1A2-1A1-1
  • If a non-singular square matrix A is symmetric, then A-1 is also symmetric.
  • |A-1| = |A|-1
  • AA-1 = A-1A = I
  • (Ak)-1 = (A-1)Akk ∈ N
  • If $$A = \begin{bmatrix}a & 0 & 0\\ 0 & b & 0 \\ 0 & 0 & c\end{bmatrix}$$ and abc ≠ 0, then A-1 = \begin{bmatrix} 1/a & 0 & 0\\ 0 & 1/b & 0 \\ 0 & 0 & 1/c\end{bmatrix}

Solved Examples For You

Question 1: If A is a square matrix of order 3 and det A  = 5 then what is det [(2A)−1] equal to?

  1. 1/10
  2. 2/5
  3. 8/5
  4. 1/40

Answer : If A is of order 3 then, A-1 is also of order 3. Now, det (cA) = cn (det A) where n is the order of the matrix. And, det A = 1 / det A-1. Thus det [(2A)-1] = 23 det[A] and det[A-1] = 1 / 8 . 5 = 1 / 40

Question 2: How can we find the inverse of a 3 x 3 matrix?

Answer: For finding out the inverse of a 3 x 3 matrix, first of all, we have to evaluate the determinant of that matrix. If the determinant will be zero, the matrix will not be having any inverse. Then, move the matrix by writing the first row again as the first column, the middle row as the central column, and the 3rd row as the 3rd column.

Question 3: How do we calculate the inverse?

Answer: We can do the calculation of the Inverse of a Matrix by the following steps:

1st Step: Calculate the matrix of minors.

2nd Step: Then convert that into the cofactor’s matrix.

3rd Step:  Then, Adjugate.

4th Step: Lastly, multiply it with 1/Determinant.

Question 4: What is the inverse of a 4 x 4 matrix?

Answer: According to the definition; the inverse of an ‘n’ x ‘n’ matrix ‘A’ is the ‘n’ x ‘n’ matrix ‘B’. Just like ‘AB’ = ‘BA’ = ‘I’. Hence, if we will get the inverse of a 4 x 4 matrix ‘A’ to be ‘B’, then for checking our work, we will have to simply multiply ‘AB’ and ‘BA’.

Question 5: Define the rank of a matrix.

Answer: The rank of a matrix is the extreme number of linearly self-determining column vectors in the matrix.

Share with friends

Customize your course in 30 seconds

Which class are you in?
5th
6th
7th
8th
9th
10th
11th
12th
Get ready for all-new Live Classes!
Now learn Live with India's best teachers. Join courses with the best schedule and enjoy fun and interactive classes.
tutor
tutor
Ashhar Firdausi
IIT Roorkee
Biology
tutor
tutor
Dr. Nazma Shaik
VTU
Chemistry
tutor
tutor
Gaurav Tiwari
APJAKTU
Physics
Get Started

One response to “Types of Matrices”

  1. KAINAT says:

    MATHEMATICS WAS TOO DIFFICULT FOR ME BUT WHEN I LEARN FROM TOPPR I FEEL MATHEMATICS IS TOO EASY I LIKE IT

Leave a Reply

Your email address will not be published. Required fields are marked *

Download the App

Watch lectures, practise questions and take tests on the go.

Customize your course in 30 seconds

No thanks.