MATH-224 - LectureNotes 3
MATH-224 - LectureNotes 3
Hello there! Welcome to the third lecture for this course. Just like
the previous lectures, we are still looking at matrices.
In the previous lecture, you learnt about addition of matrices, scalar
multiplication of a matrix, matrix multiplication, transpose of a
matrix, and determinant of an n × n matrix.
In this lecture, you will learn about adjoint/adjunct of an n × n
matrix, inverse of an n × n matrix, and systems of linear equations.
Please ensure that you have a working scientific calculator which you
may utilise in this lecture.
It is our hope that you will equally enjoy this lecture as has been the
case with the first two lectures.
Definition
Let A be any square matrix. Then, the Adjoint of A, denoted Adj(A) is a
matrix that is obtained by replacing all elements of A by their cofactors
and transposing the result. In other words, the adjoint of A is the
transpose of the matrix of cofactors of A.
It follows from the above definition that the adjoint of a square matrix A
can be found by the following steps:
i) Find cofactors of all the elements of A.
ii) Replace each element of A by its cofactor to obtain a matrix of
cofactors of A.
iii) Finally, transpose the matrix of cofactors of A to obtain Adj(A).
a b
Let A = . We want to find Adj(A). To do this, we find the
c d
cofactors of the elements of A as follows:
Element Cofactor
a d
b −c
c −b
d a
Now, we write matrix of cofactors of A denoted Ac by replacing all
elements of of A by their cofactors.
Therefore,
As you can observe in Adj(A) above, you will notice that the leading
diagonal elements have swapped places where as elements on the other
diagonal have their signs reversed. This observation is summarised below.
Remark
To find the Adjoint matrix of a 2 × 2 matrix, do the following:
(i) Swap the leading diagonal elements.
(ii) Reverse the signs of the elements on the other diagonal.
Solution
We swap the leading diagonal elements and reverse the signs of the
elements on the other diagonal. Thus,
−4 2
Adj(B) = .
−3 1
Example
8 −3 2
Let P = 2 3 0. Find Adj(P).
−2 1 4
Solution
We find a cofactor of each element in P. Then, we replace each element
of matrix P by its cofactor. Finally, we transpose matrix P to determine
Adj(P).
Recall: To find a cofactor of an element, delete the row and column the
element lies. Then, you compute the determinant of the resulting square
matrix. Also, be mindful of the sign pattern of cofactors as discussed in
Lecture 2.
(Maliyoni & Malipa, MUST) MATH-224 Lecture 3 2019/2020 Academic Year 9 / 29
For example, to find the cofactor of element 8 which is positioned at
a11 , i.e. row 1 and column 1, we delete row 1 and column 1 of matrix
P.
3 0
Doing so results in a 2 × 2 matrix whose determinant is
1 4
3 0
= (3 × 4) − (0 × 1) = 12 − 0 = 12.
1 4
Therefore, the cofactor of element 8 is 12 since the sign is positive for
this position.
Likewise, the cofactors of the remaining elements of matrix P are as
follows:
Therefore,
12 14 −6
Adj(P) = (Pc )T = −8 36 4 .
8 −2 30
Definition
If A is a non-singular square matrix (i.e. det(A)6= 0), then there exists an
n × n matrix, A−1 which is called the inverse of A. The inverse of A is
given by
1
A−1 = Adj(A).
|A|
A−1 = B and B −1 = A.
Example
2 3
Given that A = , find A−1 if it exits.
4 1
Solution
Firstly, we compute the determinant. Thus,
2 3
|A| = = 2 − 12 = −10.
4 1
Example
3 2
Let G = . Find G −1 if it exits.
6 4
3 2
|G | = = (3)(4) − (2)(6) = 12 − 12 = 0.
6 4
Example
8 −3 2
Let P = 2 3 0. Find P −1 if it exits.
−2 1 4
3 0 2 0 2 3
|P| = 8 − (−3) +2
1 4 −2 4 −2 1
= 8 (3)(4) + 3 (8) + 2 (2 + 6)
= 136
Definition
A system of m linear equations in n variables is a set of m equations, each
of which is linear in the same n variables:
3x + 2y = 3
−x + y = 4
Axx = b
THANK YOU!