Photo AI

Last Updated Sep 27, 2025

Inverses of Matrices Simplified Revision Notes

Revision notes with simplified explanations to understand Inverses of Matrices quickly and effectively.

user avatar
user avatar
user avatar
user avatar
user avatar

298+ students studying

2.1.5 Inverses of Matrices

What is the Inverse of a Matrix?

infoNote

The inverse of a matrix is a matrix that, when multiplied by the original matrix, gives the identity matrix. Not all matrices have an inverse—only those with a non-zero determinant are invertible. The inverse of a matrix AA is usually denoted as A1A^{-1}

Definition:

For a square matrix AA, if there exists a matrix A1A^{-1} such that:

A×A1=A1×A=IA \times A^{-1} = A^{-1} \times A = I

where II is the identity matrix, then A1A^{-1} is called the inverse of matrix AA.

Conditions for a Matrix to Have an Inverse

infoNote

A matrix has an inverse if and only if its determinant is non-zero. If the determinant is zero, the matrix is called singular, and it does not have an inverse.

Inverse of a 2×22 × 2 Matrix

For a 2×22 × 2 matrix:

A=(abcd)A = \begin{pmatrix} a & b \\ c & d \end{pmatrix}

The inverse A1A^{-1} is given by:

A1=1det(A)(dbca)A^{-1} = \frac{1}{\text{det}(A)} \begin{pmatrix} d & -b \\ -c & a \end{pmatrix}

where det(A)=adbc\text{det}(A) = ad - bc

lightbulbExample

Example: Find the inverse of

A=(1234)A = \begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix}

Step 1: Calculate the determinant:

det(A)=(1×4)(2×3)=46=2\text{det}(A) = (1 \times 4) - (2 \times 3) = 4 - 6 = -2

Step 2: Apply the formula for the inverse:

A1=12(4231)=(213212)A^{-1} = \frac{1}{-2} \begin{pmatrix} 4 & -2 \\ -3 & 1 \end{pmatrix} = \begin{pmatrix} -2 & 1 \\ \frac{3}{2} & -\frac{1}{2} \end{pmatrix}

Thus, the inverse of AA is:

A1=(213212)A^{-1} = \begin{pmatrix} -2 & 1 \\ \frac{3}{2} & -\frac{1}{2} \end{pmatrix}

Inverse of a 3×33 × 3 Matrix

For a 3×33 × 3 matrix, the inverse calculation is more complex and involves finding the matrix of minors, matrix of cofactors, and the adjugate of the matrix.

Calculation Method

Steps for finding the inverse of a 3×33 × 3 matrix AA:

Step 1: Find the Determinant

Step 2: Find the Matrix of Minors

Step 3: Form the Matrix of Cofactors

Step 4: Find the Adjugate

Step 5: Multiply by the Reciprocal of the Determinant


Step 1: Find the Determinant: Calculate the determinant det(A)\text{det}(A). If det(A)=0\text{det}(A) = 0, the matrix is singular and does not have an inverse.


Step 2: Find the Matrix of Minors: For each element in the matrix, calculate the minor, which is the determinant of the 2×22 × 2 matrix that remains after removing the row and column of that element.


Step 3: Form the Matrix of Cofactors: Apply a checkerboard pattern of signs (+ and -) to the minors to create the cofactor matrix.


Step 4: Find the Adjugate: Transpose the cofactor matrix to get the adjugate matrix.


Step 5: Multiply by the Reciprocal of the Determinant: Finally, the inverse is given by:

A1=1det(A)×adjugate(A)A^{-1} = \frac{1}{\text{det}(A)} \times \text{adjugate}(A)

Identity Matrix and Inverses

The identity matrix, denoted II, is a special matrix where all diagonal elements are 11, and all other elements are 00. The identity matrix acts as the neutral element in matrix multiplication, similar to how 11 is the neutral element in multiplication of numbers.

For a 2×22 × 2 identity matrix:

I=(1001)I = \begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix}

If A×A1=IA \times A^{-1} = I, then A1A^{-1} is the inverse of AA.

Properties of Inverses

  1. Only Square Matrices: Only square matrices can have an inverse (i.e., matrices with the same number of rows and columns).
  2. Uniqueness: If a matrix has an inverse, it is unique.
  3. Product of Inverses: If AA and BB are invertible matrices, then:
(AB)1=B1A1(AB)^{-1} = B^{-1} A^{-1}

(Notice the order is reversed when finding the inverse of a product of matrices.)

Applications of Matrix Inverses

Solving Systems of Equations:

If AX=BAX = B, where AA is a square matrix, XX is the column of unknowns, and BB is the result matrix, you can solve for XX by multiplying both sides by A1A^{-1}

X=A1BX = A^{-1} B

Geometric Transformations:

In computer graphics and geometry, inverse matrices are used to reverse transformations (e.g., scaling, rotation).

Inverse of a Matrix

The inverse of a matrix MM is denoted M1M^{-1}. For an inverse, the following is the case:

MM1=M1M=IMM^{-1} = M^{-1}M = I

It's important to note that in this sense a power of 1-1 does not mean reciprocal. It is used in the sense of function notation to mean "inverse."

Worked Examples

lightbulbExample

Example: Find the Inverse of

A=(720211146)A = \begin{pmatrix} 7 & 2 & 0 \\ 2 & 1 & 1 \\ 1 & 4 & 6 \end{pmatrix}

Step 1: Calculate the determinant of AA

det(A)=7114622116+02114\det(A) = 7 \begin{vmatrix} 1 & 1 \\ 4 & 6 \end{vmatrix} - 2 \begin{vmatrix} 2 & 1 \\ 1 & 6 \end{vmatrix} + 0 \begin{vmatrix} 2 & 1 \\ 1 & 4 \end{vmatrix}=7[(1)(6)(4)(1)]2[(2)(6)(1)(1)]+0= 7[(1)(6) - (4)(1)] - 2[(2)(6) - (1)(1)] + 0=7(2)2(11)+0=1422=8= 7(2) - 2(11) + 0 = 14 - 22 = -8

Since det(A)=80\det(A) = -8 \neq 0, the matrix is invertible.


Step 2: To compute the inverse, first find the matrix of minors by calculating the determinant of each 2×22 \times 2 submatrix.

Minor m11m_{11}

1146=(1)(6)(4)(1)=2\begin{vmatrix} 1 & 1 \\ 4 & 6 \end{vmatrix} = (1)(6) - (4)(1) = 2

Minor m12m_{12}

2116=(2)(6)(1)(1)=11\begin{vmatrix} 2 & 1 \\ 1 & 6 \end{vmatrix} = (2)(6) - (1)(1) = 11

Minor m13m_{13}

2114=(2)(4)(1)(1)=7\begin{vmatrix} 2 & 1 \\ 1 & 4 \end{vmatrix} = (2)(4) - (1)(1) = 7

Minor m21m_{21}

2146=(2)(6)(1)(4)=8\begin{vmatrix} 2 & 1 \\ 4 & 6 \end{vmatrix} = (2)(6) - (1)(4) = 8

Minor m22m_{22}

7016=(7)(6)(0)(1)=42\begin{vmatrix} 7 & 0 \\ 1 & 6 \end{vmatrix} = (7)(6) - (0)(1) = 42

Minor m23m_{23}

7014=(7)(4)(0)(1)=28\begin{vmatrix} 7 & 0 \\ 1 & 4 \end{vmatrix} = (7)(4) - (0)(1) = 28

Minor m31m_{31}

2111=(2)(1)(1)(1)=1\begin{vmatrix} 2 & 1 \\ 1 & 1 \end{vmatrix} = (2)(1) - (1)(1) = 1

Minor m32m_{32}

7021=(7)(1)(0)(2)=7\begin{vmatrix} 7 & 0 \\ 2 & 1 \end{vmatrix} = (7)(1) - (0)(2) = 7

Minor m33m_{33}

7221=(7)(1)(2)(2)=3\begin{vmatrix} 7 & 2 \\ 2 & 1 \end{vmatrix} = (7)(1) - (2)(2) = 3

To create the matrix of cofactors, alternate signs in a checkerboard pattern:

Matrix of Cofactors=(+++)\text{Matrix of Cofactors} = \begin{pmatrix} - & - & + \\ - & + & - \\ - & - & + \end{pmatrix}

Step 3: Apply these signs to the minors:

C=(211784228173)C = \begin{pmatrix} 2 & -11 & 7 \\ -8 & 42 & -28 \\ 1 & -7 & 3 \end{pmatrix}

Step 4: Transpose the matrix of cofactors, swapping rows and columns:

CT=(281114277283)C^T = \begin{pmatrix} 2 & -8 & 1 \\ -11 & 42 & -7 \\ 7 & -28 & 3 \end{pmatrix}

Step 5: Multiply the transpose of the cofactor matrix by

1det(A)=18\frac{1}{\det(A)} = -\frac{1}{8}

Thus:

A1=18×(281114277283)A^{-1} = -\frac{1}{8} \times \begin{pmatrix} 2 & -8 & 1 \\ -11 & 42 & -7 \\ 7 & -28 & 3 \end{pmatrix}

Step 6: Simplify:

A1=(1411811821478787238)A^{-1} = \begin{pmatrix} -\frac{1}{4} & 1 & -\frac{1}{8} \\ \frac{11}{8} & -\frac{21}{4} & \frac{7}{8} \\ -\frac{7}{8} & \frac{7}{2} & -\frac{3}{8} \end{pmatrix}

The inverse of the matrix is:

A1=(1411811821478787238)A^{-1} = \begin{pmatrix} -\frac{1}{4} & 1 & -\frac{1}{8} \\ \frac{11}{8} & -\frac{21}{4} & \frac{7}{8} \\ -\frac{7}{8} & \frac{7}{2} & -\frac{3}{8} \end{pmatrix}
lightbulbExample

Example: Find the Inverse of

(2736)\begin{pmatrix} 2 & 7 \\ 3 & 6 \end{pmatrix}

Formula:

To find the inverse of a 2×22 \times 2 matrix, we can use the following formula:

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

Where the matrix

A=(abcd)A = \begin{pmatrix} a & b \\ c & d \end{pmatrix}

And det(A)\det(A) is the determinant of AA, given by:

det(A)=adbc\det(A) = ad - bc

Step 1: Calculate the Determinant

For the matrix

A=(2736)A = \begin{pmatrix} 2 & 7 \\ 3 & 6 \end{pmatrix}
  • a=2,b=7,c=3,d=6a = 2, b = 7, c = 3, d = 6 The determinant is:
det(A)=(2)(6)(7)(3)\det(A) = (2)(6) - (7)(3) =1221=9= 12 - 21 = -9

Step 2: Find the Adjoint Matrix

Next, apply the formula for the adjoint matrix:

Adj(A)=(dbca)\text{Adj}(A) = \begin{pmatrix} d & -b \\ -c & a \end{pmatrix}

Substituting the values of aa, bb, cc, and dd

Adj(A)=(6732)\text{Adj}(A) = \begin{pmatrix} 6 & -7 \\ -3 & 2 \end{pmatrix}

Step 3: Multiply by 1det(A)\frac{1}{\det(A)}

The inverse is:

A1=1det(A)×Adj(A)A^{-1} = \frac{1}{\det(A)} \times \text{Adj}(A)

Substituting det(A)=9\det(A) = -9

A1=19(6732)A^{-1} = \frac{1}{-9} \begin{pmatrix} 6 & -7 \\ -3 & 2 \end{pmatrix}

Simplify:

A1=19(6732)=19(6732)A^{-1} = -\frac{1}{9} \begin{pmatrix} 6 & -7 \\ -3 & 2 \end{pmatrix} = \frac{1}{9} \begin{pmatrix} -6 & 7 \\ 3 & -2 \end{pmatrix}

Step 4: Verify the Result

To verify, multiply the original matrix by its inverse:

(2736)×19(6732)\begin{pmatrix} 2 & 7 \\ 3 & 6 \end{pmatrix} \times \frac{1}{9} \begin{pmatrix} -6 & 7 \\ 3 & -2 \end{pmatrix}

First, perform the matrix multiplication:

=19((2)(6)+(7)(3)(2)(7)+(7)(2)(3)(6)+(6)(3)(3)(7)+(6)(2))= \frac{1}{9} \begin{pmatrix} (2)(-6) + (7)(3) & (2)(7) + (7)(-2) \\ (3)(-6) + (6)(3) & (3)(7) + (6)(-2) \end{pmatrix}

Simplify each element:

=19(12+21141418+182112)= \frac{1}{9} \begin{pmatrix} -12 + 21 & 14 - 14 \\ -18 + 18 & 21 - 12 \end{pmatrix}=19(9009)= \frac{1}{9} \begin{pmatrix} 9 & 0 \\ 0 & 9 \end{pmatrix}=(1001)= \begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix}

The result is the identity matrix, confirming that the inverse is correct.

Final Answer

The inverse of

(2736)\begin{pmatrix} 2 & 7 \\ 3 & 6 \end{pmatrix}

Is:

A1=19(6732)A^{-1} = \frac{1}{9} \begin{pmatrix} -6 & 7 \\ 3 & -2 \end{pmatrix}
lightbulbExample

Example: Find the Inverse of the General Matrix

(acbd)\begin{pmatrix} a & c \\ b & d \end{pmatrix}

To find the inverse of a 2×22 \times 2 matrix using algebraic manipulation, we solve the equation:

(acbd)(qsrt)=(1001)\begin{pmatrix} a & c \\ b & d \end{pmatrix} \begin{pmatrix} q & s \\ r & t \end{pmatrix} = \begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix}

This equation states that the product of the given matrix and its inverse must yield the identity matrix. Our goal is to find qq, rr, ss and tt in terms of aa, bb, cc and dd.


Step 1: Set Up a System of Equations

Multiplying the matrices gives the following system of equations:

  1. aq+cr=1aq + cr = 1 \quad (Equation A)
  2. bq+dr=0bq + dr = 0 \quad (Equation B)
  3. as+ct=0as + ct = 0 \quad (Equation C)
  4. bs+dt=1bs + dt = 1 \quad (Equation D)

Step 2: Solve for qq and rr Using Equations AA and BB

From Equation AA:

aq+cr=1q=1craaq + cr = 1 \quad \Rightarrow \quad q = \frac{1 - cr}{a}

Substitute this expression for qq into Equation BB:

b(1cra)+dr=0b\left(\frac{1 - cr}{a}\right) + dr = 0

Simplify:

ba(1cr)+dr=0\frac{b}{a}(1 - cr) + dr = 0bacrba+dr=0\frac{b}{a} - \frac{crb}{a} + dr = 0

Multiply through by aa to clear the fraction

bcrb+dra=0b - crb + dra = 0

Rearrange:

r(adbc)=br(ad - bc) = -b

Solve for rr:

r=badbcr = \frac{-b}{ad - bc}

Substitute this value of rr into the expression for qq:

q=1acraq = \frac{1}{a} - \frac{cr}{a}q=1aca(badbc)q = \frac{1}{a} - \frac{c}{a} \left(\frac{-b}{ad - bc}\right)

Simplify:

q=1a+bca(adbc)q = \frac{1}{a} + \frac{bc}{a(ad - bc)}q=ada(adbc)=dadbcq = \frac{ad}{a(ad - bc)} = \frac{d}{ad - bc}

Step 3: Solve for ss and tt Using Equations CC and DD

From Equation CC:

as+ct=0s=ctaas + ct = 0 \quad \Rightarrow \quad s = \frac{-ct}{a}

Substitute this into Equation DD:

b(cta)+dt=1b\left(\frac{-ct}{a}\right) + dt = 1

Simplify:

bcta+dt=1\frac{-bct}{a} + dt = 1

Multiply through by aa:

bct+dta=a-bct + dta = at(adbc)=at(ad - bc) = a

Solve for tt:

t=aadbct = \frac{a}{ad - bc}

Substitute this value of tt into the expression for ss:

s=ctas = \frac{-ct}{a}s=c(aadbc)as = \frac{-c \left(\frac{a}{ad - bc}\right)}{a}

Simplify:

s=cadbcs = \frac{-c}{ad - bc}

Step 4: Write the Inverse Matrix

Now that we have all elements:

q=dadbc,r=badbcq = \frac{d}{ad - bc}, \quad r = \frac{-b}{ad - bc}s=cadbc,t=aadbc\quad s = \frac{-c}{ad - bc}, \quad t = \frac{a}{ad - bc}

Thus, the inverse matrix is:

M1=(qsrt)=(dadbccadbcbadbcaadbc)M^{-1} = \begin{pmatrix} q & s \\ r & t \end{pmatrix} = \begin{pmatrix} \frac{d}{ad - bc} & \frac{-c}{ad - bc} \\ \frac{-b}{ad - bc} & \frac{a}{ad - bc} \end{pmatrix}

This can also be written as:

M1=1adbc(dcba)M^{-1} = \frac{1}{ad - bc} \begin{pmatrix} d & -c \\ -b & a \end{pmatrix}

Final Answer

The inverse of

(acbd)\begin{pmatrix} a & c \\ b & d \end{pmatrix}

is:

M1=1det(M)(dcba)M^{-1} = \frac{1}{\text{det}(M)} \begin{pmatrix} d & -c \\ -b & a \end{pmatrix}

Where det(M)=adbc \text{det}(M) = ad - bc

lightbulbExample

Example: Find the Inverse of

(2266)\begin{pmatrix} 2 & 2 \\ 6 & 6 \end{pmatrix}

Step 1: Calculate the Determinant

The determinant of a 2×22 \times 2 matrix

(acbd)\begin{pmatrix} a & c \\ b & d \end{pmatrix}

is given by:

det(M)=adbc\det(M) = ad - bc

For the matrix

(2266)\begin{pmatrix} 2 & 2 \\ 6 & 6 \end{pmatrix}
  • a=2,b=6,c=2,d=6a = 2, b = 6, c = 2, d = 6 Substitute these values into the formula:
det(M)=(2)(6)(6)(2)=1212=0\det(M) = (2)(6) - (6)(2) = 12 - 12 = 0

Step 2: Interpret the Result

Since the determinant is zero, the matrix is singular, meaning it does not have an inverse.

The formula for the inverse of a 2×22 \times 2 matrix is:

M1=1det(M)(dcba)M^{-1} = \frac{1}{\det(M)} \begin{pmatrix} d & -c \\ -b & a \end{pmatrix}

However, since det(M)=0\det(M) = 0, this results in division by zero:

M1=10(6262)M^{-1} = \frac{1}{0} \begin{pmatrix} 6 & -2 \\ -6 & 2 \end{pmatrix}

This is undefined, so the matrix has no inverse.


Conclusion

When the determinant of a matrix is zero, the matrix is singular and does not have an inverse. Therefore, the matrix:

(2266)\begin{pmatrix} 2 & 2 \\ 6 & 6 \end{pmatrix}

is singular and its inverse is undefined.

infoNote

Key Takeaways:

  • The inverse of a matrix AA is a matrix A1A^{-1} such that A×A1=IA \times A^{-1} = I, where II is the identity matrix.
  • A matrix is invertible if and only if its determinant is non-zero.
  • The inverse of a 2×22 × 2 matrix is calculated using the formula
A1=1det(A)(dbca)A^{-1} = \frac{1}{\text{det}(A)} \begin{pmatrix} d & -b \\ -c & a \end{pmatrix}
  • Inverses are essential for solving systems of equations, performing transformations, and more. Understanding how to calculate and apply matrix inverses is crucial in both algebra and geometry.
Books

Only available for registered users.

Sign up now to view the full note, or log in if you already have an account!

500K+ Students Use These Powerful Tools to Master Inverses of Matrices

Enhance your understanding with flashcards, quizzes, and exams—designed to help you grasp key concepts, reinforce learning, and master any topic with confidence!

50 flashcards

Flashcards on Inverses of Matrices

Revise key concepts with interactive flashcards.

Try Further Maths Core Pure Flashcards

5 quizzes

Quizzes on Inverses of Matrices

Test your knowledge with fun and engaging quizzes.

Try Further Maths Core Pure Quizzes

29 questions

Exam questions on Inverses of Matrices

Boost your confidence with real exam questions.

Try Further Maths Core Pure Questions

27 exams created

Exam Builder on Inverses of Matrices

Create custom exams across topics for better practice!

Try Further Maths Core Pure exam builder

50 papers

Past Papers on Inverses of Matrices

Practice past papers to reinforce exam experience.

Try Further Maths Core Pure Past Papers

Other Revision Notes related to Inverses of Matrices you should explore

Discover More Revision Notes Related to Inverses of Matrices to Deepen Your Understanding and Improve Your Mastery

96%

114 rated

Properties of Matrices

Introduction to Matrices

user avatar
user avatar
user avatar
user avatar
user avatar

408+ studying

196KViews

96%

114 rated

Properties of Matrices

Matrix Dimensions

user avatar
user avatar
user avatar
user avatar
user avatar

444+ studying

195KViews

96%

114 rated

Properties of Matrices

Scalar Multiple

user avatar
user avatar
user avatar
user avatar
user avatar

498+ studying

196KViews

96%

114 rated

Properties of Matrices

Determinants of Matrices

user avatar
user avatar
user avatar
user avatar
user avatar

264+ studying

188KViews
Load more notes

Join 500,000+ A-Level students using SimpleStudy...

Join Thousands of A-Level Students Using SimpleStudy to Learn Smarter, Stay Organized, and Boost Their Grades with Confidence!

97% of Students

Report Improved Results

98% of Students

Recommend to friends

500,000+

Students Supported

50 Million+

Questions answered