Matrices Part 1: Mr. Garth Reid, BSC (Ongoing) September 2020
Matrices Part 1: Mr. Garth Reid, BSC (Ongoing) September 2020
Introduction
A matrix is a rectangular array of numbers, expressions
or symbols that is enclosed in either square or round
brackets. Popular matrices that are applied in different
industries would be the unit matrix, otherwise called the
identity matrix, the permutation matrix and symmetric
matrix (heavily used in statistics) just to name a few.
When observing a matrix, we take note of the number of
rows and columns which we call the dimensions or size
or order of the matrix. The dimensions of a matrix is
always m × n where m represents the number of rows
and n represents the number of columns. Matrices can
be applied to various fields of study such as Statistics,
Physics and Engineering. Some matrices can be seen
below.
3 0 0 0 2 4 0 0 1
0 5 0, −2 0 9, 1 0 0 0 0
, , 1 1 0
3 2 5 4 0
0 0 2 −4 −9 0 0 0 1
1
General m × n matrix
a11 a12 a13 · · · a1n
21 a22 a23 · · · a2n
a
A = [aij ]m×n = .. .. .. .. ..
. . . . .
am1 am2 am3 · · · amn
m×n
where, 1 ≤ i ≤ m, 1 ≤ j ≤ n; i, j ∈ N.
2
• Diagonal Matrix: This is a square matrix in which
all the non-diagonal
elements
are zeros. An example
1 0 0
of this is K = 0 9 0.
0 0 4
3
• Complex Matrix: This is a matrix which contains
complex number entries. An example of this is
2 (5 − i)
Y =
i 9
.
Matrix Algebra
4
Let us now look at the existence of the additive iden-
tity. Do you remember 0 from the set of real numbers
? Well as you could recall, 0 plus any real number k is
the same as k plus 0. This means that 0 is the identity
element for addition under the real number system. But
how can we apply this same concept with matrices ? Well
what we can do is use the null matrix to represent the
identity element for addition. So if I add matrix R plus
the null matrix
Z that
result
will give us matrix R. So
5 −7 0 0 5 −7
R+Z = + = . Now we will look
5 2 0 0 5 2
at the existence of the additive inverse. From the real
number system, we know that k + (−k) = 0, where k is a
real number. This means that −k is the additive inverse
of k. Now how do we apply this same concept to matrices
? well if we want to show that Q + (−Q) = Z, we could
use scalar multiplication which is essentially multiplying
each element inside of matrix
Q by (−1).
So we can say
1 0 −1 0 0 0
that Q + (−Q) = + = .
6 −1 −6 1 0 0
5
matrix P by the columns of matrix Q which is the com-
monly used method of matrix multiplication. Now you
should know that matrix multiplication is not always
commutative. Now if you find the matrix QP , you will
recognize that P Q 6= QP . But we will look at case in
which matrix multiplication is commutative.
1 0 5 −7
Consider the matrix product I 2 R = ,
0 1 5 2
where I 2 represents the 2×2 unit matrix. When you per-
form the matrix multiplication, you will see that I 2 R =
R and if you do the matrix multiplication for RI 2 you
will see that RI 2 = R. Hence, we can say that I 2 R =
RI 2 = R, so we can say that matrix multiplication is
commutative in this case. Try some matrix multiplica-
tion and see if you can find other matrices that fit this
property. In matrices part 2, we will be focusing on solv-
ing systems of linear equations. This was just a brief
introduction to matrices.
Homework