Matrix
Matrix
Matrix
Matrix algebra is a means of making
calculations upon arrays of numbers (or data).
(denoted with
regular type: 1 or 22)
Row Vector
[1 x n] matrix
a1
a 2
A ai
am
Square Matrix
Same number of rows and columns
5 4 7
B 3 6 1
2 1 3
The
Identity
Identity Matrix
Square matrix with ones on the
diagonal and zeros elsewhere.
1 0 0 0
0 1 0 0
I
0 0 1 0
0 0 0 1
Transpose Matrix
Rows become columns and
columns become rows
b11 b12
and B
b 21 b 22
C = A - B
Is defined by
[r x c] and [s x d]
Matrix Multiplication
Matrices A and B can be multiplied if:
[r x c] and [s x d]
c=s
Matrix Multiplication
[r x c] and [s x d]
rxd
Matrix Multiplication
Thus a11 a12 a13 b11 b12 c11 c12
a a a x b b c c
21 22 23 21 22 21 22
a31 a32 a33 b31 b32 c31 c32
where
c11 a11b11 a12b21 a13b31
c12 a11b12 a12b22 a13b32
c 21 a21b11 a22b21 a23b31
c 22 a21b12 a22b22 a23b32
c31 a31b11 a32b21 a33b31
c32 a31b12 a32b22 a33b32
Computation: A x B = C
2 3
1 1 1
A 1 1 and B
1 0 2
1 0
[3 x 2] [2 x 3]
A and B can be multiplied
2 *1 3 *1 5 2 *1 3 * 0 2 2 *1 3 * 2 8 5 2 8
C 1*1 1*1 2 1*1 1* 0 1 1*1 1* 2 3 2 1 3
1*1 0 *1 1 1*1 0 * 0 1 1*1 0 * 2 1 111
[3 x 3]
Computation: A x B = C
2 3
1 1 1
A 1 1 and B
1 0 2
1 0
[3 x 2] [2 x 3]
Result is 3 x 3
2 *1 3 *1 5 2 *1 3 * 0 2 2 *1 3 * 2 8 5 2 8
C 1*1 1*1 2 1*1 1* 0 1 1*1 1* 2 3 2 1 3
1*1 0 *1 1 1*1 0 * 0 1 1*1 0 * 2 1 111
[3 x 3]
Inversion
Matrix Inversion
1 1
B B BB I
Notation:
B A1
Properties of Matrix Inverse
a b
A
c d
1 1 d b
A
ad bc c a
The inverse of a 2 x 2 matrix
From this we deduced that a 2x2 matrix A is
singular if and only if ad-bc = 0.
This quantity (ad-bc) has some other useful
properties as well and so is defined to be the
determinant of the matrix A.
Determinants of larger
matrices
There is no “nice” formula for the inverse of larger than
2x2 matrices.
We still can define the determinant of a larger square
matrix and it will still have the property that the
determinant of A= 0 if and only if A is singular.
First we need some terminology.
Minors and cofactors
If A is a square matrix, then the minor Mij of the element
aij of A is the determinant of the matrix obtained by
deleting the i-th row and the j-th column from A.
The cofactor Cij = (-1)i+jMij.
Definition of a Determinant
If A is a square matrix of order 2 or greater, then the
determinant of A is the sum of the entries in the first
row of A multiplied by their cofactors. That is,
n
det( A) A a1 j C1 j
j 1
Determinant of 2-by-2 Matrix
a b
A
c d
det( A) A ad bc
Determinant of 3-by-3 Matrix
a b c
A d e f
g h i
e f d f d e
det( A) A a b c
h i g i g h
aei afh bdi cdh bfg ceg
(aei bfg cdh) ( gec hfa idb)
Matrix Inversion
How to calculate the matrix inverse?
1 1
A adj ( A)
A
2 x1 4 x2 5 x3 36
-3 x1 5 x2 7 x3 7
5 x 3 x 8 x -31
1 2 3
2 -4 5
-3 5 7
A
5 3 -8
Matrix Inversion
The set of equations in matrix form is:
2 -4 5 x1 36
-3 5 7 x 7
2
5 3 -8 x3 -31
𝐴 𝑥=𝐵
−1
𝑥= 𝐴 𝐵
Minors
2 4 5 5 7
3 5 7
M 11 = = -61
5 3 8 3 -8
2 4 5
3 -3 7
5 7
M 12 = = -11
5 3 8 5 -8
2 4 5 -3 5
3 5 7 M 13 = = -34
5 3
5 3 8
Minors
2 4 5
3 5 2 -4
7 M 23 26
5 3 8 5 3
2 -4 5
Evaluate the determinant A = -3 5 7 = -336
5 3 -8
- 1 1
[A ] = adj [A ]
Matrix Inversion A
2 1 0
A 1 2 1
0 1 2
2 1 0 1 0 0
A I 1 2 1 0 1 0
0 1 2 0 0 1
By performing elementary row operations on the [AI] matrix until
A reaches reduced row echelon form, the following is the final result:
3 1 1
1 0 0 4 2 4
1
I A1 0 1 0
1
1
0 0 1
2 2
1 1 3
4 2 4
The matrix augmentation can now be undone, which gives the following:
3 1 1
1 0 0 4 2 4
I 0 0
1 1
1 A1 1
2 2
1 1 3
0 0 1 4 2 4