Math Lab
Home/Class XII/Ch 3/Invertible matrices

Invertible matrices

A square matrix AA is invertible if there exists a matrix BB such that AB=BA=IAB = BA = I. When it exists, BB is unique and is denoted A1A^{-1}. Inverses generalise the reciprocal 1/a1/a from numbers. They let us solve matrix equations AX=CAX = C by writing X=A1CX = A^{-1} C, just as we would solve ax=cax = c by x=c/ax = c/a in ordinary algebra. Not every nonzero matrix has an inverse , only those whose determinant is nonzero, a fact developed in the next chapter.

Definition

Let AA be a square matrix of order nn. AA is invertible (or non-singular) if there exists an n×nn \times n matrix BB with AB=BA=InAB = BA = I_n. The matrix BB is the inverse and is denoted A1A^{-1}.

If no such BB exists, AA is called singular.

Uniqueness of the inverse

Theorem. If AA has an inverse, it is unique.

Proof. Suppose BB and CC both satisfy AB=BA=IAB = BA = I and AC=CA=IAC = CA = I. Then B=BI=B(AC)=(BA)C=IC=CB = BI = B(AC) = (BA)C = IC = C. \blacksquare

Properties of inverses

For invertible AA and BB of the same order:

  1. (A1)1=A(A^{-1})^{-1} = A.
  2. (AB)1=B1A1(AB)^{-1} = B^{-1} A^{-1}. Reverse the order.
  3. (AT)1=(A1)T(A^T)^{-1} = (A^{-1})^T.
  4. (λA)1=1λA1(\lambda A)^{-1} = \tfrac{1}{\lambda} A^{-1} for nonzero scalar λ\lambda.

Proof of (2). (AB)(B1A1)=A(BB1)A1=AIA1=AA1=I(AB)(B^{-1}A^{-1}) = A(BB^{-1})A^{-1} = AIA^{-1} = AA^{-1} = I. Similarly (B1A1)(AB)=I(B^{-1}A^{-1})(AB) = I. \blacksquare

Inverse by elementary row operations

To find A1A^{-1}, write [AI][A | I] as a single augmented matrix and apply elementary row operations until the left half becomes II. Whatever remains on the right is A1A^{-1}. The reason: row operations are left-multiplication by elementary matrices; if their product turns AA into II, the same product turns II into A1A^{-1}.

If at any stage a zero row appears on the left, AA is singular and has no inverse.

Worked computation

Find the inverse of A=(1234)A = \begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix}.

Set up: [AI]=(12103401)[A | I] = \begin{pmatrix} 1 & 2 & | & 1 & 0 \\ 3 & 4 & | & 0 & 1 \end{pmatrix}.

R2R23R1R_2 \to R_2 - 3 R_1: (12100231)\begin{pmatrix} 1 & 2 & | & 1 & 0 \\ 0 & -2 & | & -3 & 1 \end{pmatrix}.

R212R2R_2 \to -\tfrac{1}{2} R_2: (1210013/21/2)\begin{pmatrix} 1 & 2 & | & 1 & 0 \\ 0 & 1 & | & 3/2 & -1/2 \end{pmatrix}.

R1R12R2R_1 \to R_1 - 2 R_2: (1021013/21/2)\begin{pmatrix} 1 & 0 & | & -2 & 1 \\ 0 & 1 & | & 3/2 & -1/2 \end{pmatrix}.

So A1=(213/21/2)A^{-1} = \begin{pmatrix} -2 & 1 \\ 3/2 & -1/2 \end{pmatrix}. Verify: AA1=(1234)(213/21/2)=(1001)A A^{-1} = \begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix}\begin{pmatrix} -2 & 1 \\ 3/2 & -1/2 \end{pmatrix} = \begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix}. \checkmark

Quick 2×22 \times 2 formula

For A=(abcd)A = \begin{pmatrix} a & b \\ c & d \end{pmatrix} with adbc0ad - bc \neq 0,

A1=1adbc(dbca).A^{-1} = \frac{1}{ad - bc} \begin{pmatrix} d & -b \\ -c & a \end{pmatrix}.

The number adbcad - bc is the determinant of AA. If adbc=0ad - bc = 0, AA is singular.

Solving linear systems via inverses

If AX=BAX = B and AA is invertible, then X=A1BX = A^{-1} B. This is the matrix method of solving a linear system. It is computationally less efficient than direct row-reduction, but it has theoretical importance , it expresses the solution in closed form.

Worked examples

Example 1. Find the inverse of A=(2174)A = \begin{pmatrix} 2 & 1 \\ 7 & 4 \end{pmatrix}.

adbc=87=1ad - bc = 8 - 7 = 1. A1=(4172)A^{-1} = \begin{pmatrix} 4 & -1 \\ -7 & 2 \end{pmatrix}.

Example 2. Find the inverse of A=(123014001)A = \begin{pmatrix} 1 & 2 & 3 \\ 0 & 1 & 4 \\ 0 & 0 & 1 \end{pmatrix} by row operations.

R2R24R3R_2 \to R_2 - 4 R_3 in [AI][A|I]:

After more steps, A1=(125014001)A^{-1} = \begin{pmatrix} 1 & -2 & 5 \\ 0 & 1 & -4 \\ 0 & 0 & 1 \end{pmatrix}.

Example 3. Show that A=(1224)A = \begin{pmatrix} 1 & 2 \\ 2 & 4 \end{pmatrix} is singular.

det=44=0\det = 4 - 4 = 0. No inverse.

Example 4. Solve AX=BAX = B where A=(2312),B=(53)A = \begin{pmatrix} 2 & 3 \\ 1 & 2 \end{pmatrix}, B = \begin{pmatrix} 5 \\ 3 \end{pmatrix}.

A1=11(2312)A^{-1} = \tfrac{1}{1}\begin{pmatrix} 2 & -3 \\ -1 & 2 \end{pmatrix}. X=A1B=(1095+6)=(11)X = A^{-1}B = \begin{pmatrix} 10 - 9 \\ -5 + 6 \end{pmatrix} = \begin{pmatrix} 1 \\ 1 \end{pmatrix}.

Example 5. Verify (AB)1=B1A1(AB)^{-1} = B^{-1}A^{-1} for A=(1101),B=(1011)A = \begin{pmatrix} 1 & 1 \\ 0 & 1 \end{pmatrix}, B = \begin{pmatrix} 1 & 0 \\ 1 & 1 \end{pmatrix}.

AB=(2111)AB = \begin{pmatrix} 2 & 1 \\ 1 & 1 \end{pmatrix}, det=1\det = 1, (AB)1=(1112)(AB)^{-1} = \begin{pmatrix} 1 & -1 \\ -1 & 2 \end{pmatrix}.

A1=(1101)A^{-1} = \begin{pmatrix} 1 & -1 \\ 0 & 1 \end{pmatrix}. B1=(1011)B^{-1} = \begin{pmatrix} 1 & 0 \\ -1 & 1 \end{pmatrix}. Product B1A1=(1112)B^{-1}A^{-1} = \begin{pmatrix} 1 & -1 \\ -1 & 2 \end{pmatrix}. \checkmark

Example 6. Show that an elementary matrix is always invertible. Find the inverse of the row-swap matrix (0110)\begin{pmatrix} 0 & 1 \\ 1 & 0 \end{pmatrix}.

det=10\det = -1 \neq 0. The inverse is itself: (0110)(0110)=I\begin{pmatrix} 0 & 1 \\ 1 & 0 \end{pmatrix} \cdot \begin{pmatrix} 0 & 1 \\ 1 & 0 \end{pmatrix} = I. So the matrix is involutory.

Try it yourself

  1. Find the inverse of (3512)\begin{pmatrix} 3 & 5 \\ 1 & 2 \end{pmatrix}.
  2. Find the inverse of (1001)\begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix}.
  3. Is (1236)\begin{pmatrix} 1 & 2 \\ 3 & 6 \end{pmatrix} invertible?
  4. Find A1A^{-1} for A=(010100001)A = \begin{pmatrix} 0 & 1 & 0 \\ 1 & 0 & 0 \\ 0 & 0 & 1 \end{pmatrix}.
  5. Verify (AB)1=B1A1(AB)^{-1} = B^{-1}A^{-1} for matrices of your choice.
  6. Solve {2x+3y=5x+2y=3\begin{cases} 2x + 3y = 5 \\ x + 2y = 3 \end{cases} using inverses.
  7. Show A1=ATA^{-1} = A^T for A=(cosθsinθsinθcosθ)A = \begin{pmatrix} \cos\theta & -\sin\theta \\ \sin\theta & \cos\theta \end{pmatrix}.
  8. Find a 2×22 \times 2 invertible matrix that is its own inverse.
  9. Show: if A2=AA^2 = A and AA is invertible, then A=IA = I.
  10. Show: (λA)1=(1/λ)A1(\lambda A)^{-1} = (1/\lambda) A^{-1} for nonzero λ\lambda.
  11. Find the inverse of A=(200030004)A = \begin{pmatrix} 2 & 0 & 0 \\ 0 & 3 & 0 \\ 0 & 0 & 4 \end{pmatrix}.
  12. If AA is invertible and A3=OA^3 = O, derive a contradiction.
  13. Find the inverse of A=(110011001)A = \begin{pmatrix} 1 & -1 & 0 \\ 0 & 1 & -1 \\ 0 & 0 & 1 \end{pmatrix}.
  14. If AB=IAB = I for square A,BA, B of the same order, must BA=IBA = I? (Answer: yes , explain.)

Pitfalls / Tricks

  • Always check that the matrix is square before asking for an inverse.
  • Always verify detA0\det A \neq 0 , a zero determinant means singular.
  • The reversal (AB)1=B1A1(AB)^{-1} = B^{-1}A^{-1} is crucial; do not forget it.
  • For 2×22 \times 2 matrices the explicit formula is fastest; for larger matrices row operations beat hand-cofactor methods.
  • The inverse of an orthogonal matrix (like a rotation) is its transpose.

This concludes the chapter on matrices. The determinant , central to detecting singularity , is the subject of Chapter 4.

Practice quiz

Quick check on this topic.

Quiz
Quick check : Invertible matrices
6 questions · pick the best answer
Q1

Q2

Q3

Q4

Q5

Q6