After The School
Class 12MathematicsChapter 3: Matrices

3.5 Invertible Matrices

Definition of inverse, 2x2 inverse formula, and worked example.

3.5 Invertible Matrices

A square matrix AA of order nn is invertible if there exists a matrix BB such that:

AB=BA=InAB = BA = I_n

Then B=A1B = A^{-1}.

Inverse of a 2×22 \times 2 Matrix

For A=[abcd]A = \begin{bmatrix} a & b \\ c & d \end{bmatrix}, if det(A)=adbc0\det(A) = ad - bc \neq 0:

A1=1adbc[dbca]A^{-1} = \frac{1}{ad - bc} \begin{bmatrix} d & -b \\ -c & a \end{bmatrix}

Example

Find the inverse of A=[2314]A = \begin{bmatrix} 2 & 3 \\ 1 & 4 \end{bmatrix}.

det(A)=2(4)3(1)=83=5\det(A) = 2(4) - 3(1) = 8 - 3 = 5 A1=15[4312]=[45351525]A^{-1} = \frac{1}{5} \begin{bmatrix} 4 & -3 \\ -1 & 2 \end{bmatrix} = \begin{bmatrix} \frac{4}{5} & -\frac{3}{5} \\ -\frac{1}{5} & \frac{2}{5} \end{bmatrix}