Matrrix
Matrrix
Introduction
Matrices - Introduction
4 2 a b
1 1 3 0 c d
Matrices - Introduction
Properties:
•A specified number of rows and a specified number of
columns
•Two numbers (rows x columns) describe the dimensions
or size of the matrix.
Examples:
3x3 matrix 1 2 4
2x4 matrix
4 1 5 1 1
3 3
1 1
3 3 3 0 0 3 2
1x2 matrix
Matrices - Introduction
Amxn=
a11 a12 ... aij ain
a a22 ... aij
a2 n
mA
n
21
am1 am 2 aij amn
i goes from 1 to m
j goes from 1 to n
Matrices - Introduction
TYPES OF MATRICES
1 a11
4 1 a21
3
2
am1
Matrices - Introduction
Con’t
1 1 6 0 3 5 2
Con’t
3. Rectangular matrix
Contains more than one element and number of rows is not
equal to the number of columns
1 1
3 7 1 1 1 0 0
2 0 3 3 0
7 7
7 6
mn
Matrices - Introduction
Con’t
4. Square matrix
The number of rows is equal to the number of columns
(a square matrix A has an order of m)
mxm
1 1 1 1 1
9 9 0
3 0
6 6 1
The principal or main diagonal of a square matrix is composed of all
elements aij for which i=j
Matrices - Introduction
Con’t
5. Diagonal matrix
A square matrix where all the elements are zero except those on
the main diagonal
3 0 0 0
1 0 0 0
3 0 0
0 2 0
0 0 5 0
0 0 1
0 0 0 9
i.e. aij =0 for all i = j
aij = 0 for some or all i = j
Matrices - Introduction
Con’t
1 0 0 0
0
1 0 0 1 0 aij 0
0 0 1 0 0 1 0
aij
0 0 0 1
i.e. aij =0 for all i = j
a = 1 for some or all i = j
Matrices - Introduction
Con’t
0 0 0 0
0 0 0 0
0
0 0 0
Con’t
8. Triangular matrix
A square matrix whose elements above or below the main
diagonal are all zero
1 0 0 1 0 0 1 8 9
2 1 0 2 1 0 0 1 6
5 2 3 5 2 3 0 0 3
Matrices - Introduction
Con’t
Con’t
A square matrix whose elements above the main diagonal are all
zero
aij 0 0 1 0 0
2 1 0
aij aij 0
aij aij aij 5 2 3
i.e. aij = 0 for all i < j
Matrices – Introduction
Con’t
9. Scalar matrix
A diagonal matrix whose main diagonal elements are
equal to the same scalar
A scalar is defined as a single number or constant
aij 0 0 1 0 0 6 0 0 0
0 1 0 0
0 aij 0 6 0 0
0 0 aij 0 0 1
0 0 6 0
i.e. aij = 0 for all i = j 0 0 0 6
aij = a for all i = j
Matrices
Matrix Operations
Matrices - Operations
EQUALITY OF MATRICES
Two matrices are said to be equal only when all
corresponding elements are equal
Therefore their size or dimensions are equal as well
1 0 0 1 0 0
A= 2 1 0 B= 2 1 0 A=B
5 2 3 5 2 3
Matrices - Operations
Commutative Law:
A+B=B+A
Associative Law:
A + (B + C) = (A + B) + C = A + B + C
7 3 1 1 5 6 8 8 5
2 5 6 4 2 3 2 7 9
A B C
2x3 2x3 2x3
Matrices - Operations
A+0=0+A=A
A + (-A) = 0 (where –A is the matrix composed of –aij as elements)
6 4 2 1 2 0 5 2 2
3 2 7 1 0 8 2 2 1
Matrices - Operations
3 1
Ex. If k=4 and
2 1
A
2 3
4 1
Matrices - Operations
3 1 3 1 12 4
2 1 2 1 8 4
4 4
2 3 2 3 8 12
4 1 4 1 16 4
Properties:
• k (A + B) = kA + kB
• (k + g)A = kA + gA
• k(AB) = (kA)B = A(k)B
• k(gA) = (kg)A
Matrices - Operations
MULTIPLICATION OF MATRICES
b11 b12
a11 a12 a13 c11 c12
a b21 b22
21 a22 a23 c21 c22
b31 b32
4 8
1 2 3 (1 4) (2 6) (3 5) (1 8) (2 2) (3 3)
4 2 7 6 2 (4 4) (2 6) (7 5) (4 8) (2 2) (7 3)
5 3
31 21
63 57
Remember also:
IA = A
1 2
T
5 0
3 4
S
0 2
1 2 3 4 3 8
TS
5 0 0 2 15 20
3 4 1 2 23 6
ST
0 2 5 0 10 0
Matrices - Operations
1 1 2 3 0 0
0 0 2 3 0 0
Matrices - Operations
TRANSPOSE OF A MATRIX
If :
2 4 7
A 2 A 3
2x3 5 3 1
Then transpose of A, denoted AT is:
2 5
A 2 A
T 3T
4 3
7 1
aij a T
ji For all i and j
Matrices - Operations
To transpose:
Interchange rows and columns
The dimensions of AT are the reverse of the dimensions of A
2 4 7
A 2 A
3
2x3
5 3 1
2 5
A 3 A
T T2
4 3 3x2
7 1
Matrices - Operations
1. (A+B)T = AT + BT
7 3 1 1 5 6 8 8 5 8 2
2 5 6 4 2 3 2 7 9 8 7
5 9
7 2 1 4 8 2
3 5 5 2 8 7
1 6 6 3 5 9
Matrices - Operations
(AB)T = BT AT
1
1 1 0 2
0 2 3 1 8 2 8
2
1 0
1 1 21 2 2 8
0 3
Matrices - Operations
SYMMETRIC MATRICES
A Square matrix is symmetric if it is equal to its
transpose:
A = AT
a b
A
b d
a b
A
T
b d
Matrices - Operations
a b
A
c d
a c
A
T
b d
The identity matrix, I, a diagonal matrix D, and a scalar matrix, K,
are equal to their transpose since the diagonal is unaffected.
Matrices - Operations
INVERSE OF A MATRIX
Consider a scalar k. The inverse is the reciprocal or division of 1
by the scalar.
Example:
k=7 the inverse of k or k-1 = 1/k = 1/7
Division of matrices is not defined since there may be AB = AC
while B = C
Instead matrix inversion is used.
The inverse of a square matrix, A, if it exists, is the unique matrix
A-1 where:
AA-1 = A-1 A = I
Matrices - Operations
Example:
3 1
A 2 A
2
2 1
1 1 1
A
2 3
Because:
1 1 3 1 1 0
2 3 2 1 0 1
3 1 1 1 1 0
2 1 2 3 0 1
Matrices - Operations
Properties of the inverse:
( AB) 1 B 1 A1
1 1
(A ) A
T 1 1 T
(A ) (A )
1 1
1
(kA) A
k
A square matrix that has an inverse is called a nonsingular matrix
A matrix that does not have an inverse is called a singular matrix
Square matrices have inverses except when the determinant is zero
When the determinant of a matrix is zero the matrix is singular
Matrices - Operations
DETERMINANT OF A MATRIX
1 2
If A
6 5
1 2
then A
6 5
Matrices - Operations
eg.
a11 a12 a13
A a21 a22 a23
a31 a32 a33
Each element in A has a minor
Delete first row and column from A .
The determinant of the remaining 2 x 2 submatrix is the minor
of a11
a22 a23
m11
a32 a33
Matrices - Operations
a21 a23
m12
a31 a33
And the minor for a13 is:
a21 a22
m13
a31 a32
Matrices - Operations
COFACTORS
When the sum of a row number i and column j is even, cij = mij and
when i+j is odd, cij =-mij
c11 (i 1, j 1) (1)11 m11 m11
1 2
c12 (i 1, j 2) (1) m12 m12
1 3
c13 (i 1, j 3) (1) m13 m13
Matrices - Operations
DETERMINANTS CONTINUED
Example 1:
3 1
A
1 2
A (3)(2) (1)(1) 5
Matrices - Operations
For a 3 x 3 matrix:
a11 a12 a13
A a21 a22 a23
a31 a32 a33
The cofactors of the first row are:
a22 a23
c11 a22 a33 a23 a32
a32 a33
a21 a23
c12 (a21a33 a23 a31 )
a31 a33
a21 a22
c13 a21a32 a22 a31
a31 a32
Matrices - Operations
A a11 (a22 a33 a23a32 ) a12 (a21a33 a23a31 ) a13 (a21a32 a22 a31 )
Matrices - Operations
Example 2:
1 0 1
A 0 2 3
1 0 1
A a11 (a22 a33 a23a32 ) a12 (a21a33 a23a31 ) a13 (a21a32 a22 a31 )
Example:
1 2
If A
3 4
4 3
The cofactor C of A is C
2 1
Matrices - Operations
Example:
1 2
A
3 4
A (1)(4) (2)(3) 10
4 2
adjA C T
3 1
Matrices - Operations
1 2 4 2 10 0
A(adjA) 10 I
3 4 3 1 0 10
4 2 1 2 10 0
(adjA) A 10 I
3 1 3 4 0 10
Matrices - Operations
and
A(adj A) = (adjA) A = |A| I
then
1adjA
A
A
Matrices - Operations
Example
1 2
A= 3 4
1 1 4 2 0.4 0.2
A
10 3 1 0.3 0.1
Example 2
3 1 1
A 2 1 0
1 2 1
The determinant of A is
|A| = (3)(-1-0)-(-1)(-2-0)+(1)(4-1) = -2
so
1 1 1
adjA C T 2 4 2
3 7 5
and
1 1 1 0.5 0.5 0.5
1 adjA 1 1.0 2.0 1.0
A 2 4 2
A 2
3 7 5 1.5 3.5 2.5
Matrices - Operations
AA-1 = A-1 A = I
1 2 3
A4 5 6 5 1 2 1
6 9
4
3 2
7 8 9 7 8
33 6 6 9 73 0
8
You are encouraged to find4 the determinant
by using other rows or columns 5 60
Inverse of a 33 matrix
1 2
Cofactor matrix of 5
6
31
The cofactor for each element
A 0
of matrix A:
A11 4 5 0 5 4 0 4
0 6 24 A 1
12
60 5 A 1
13
0 4
A21 2 3 1 3
1 6 3
1 2
0 6 12
22 A23 1 0 2
A
A31 2 3 1 3 1 2
0 4 4
4 5 2 A 0 5 5
32 33
A
61
Inverse of a 33 matrix
1 2
Cofactor matrix of 5 is then given
by:
3
6
1
A 0
24 5 4 4
12 3 0
2
2 5 4
62
Inverse of a 33 matrix
1 2
Inverse matrix of 5 is given by:
6
3
1
A 0
24 5 24 12 2
2
1 4
5
A 04 22
3 5 4
4T
2
2 1 4
A1 6 11
12 11
5 22
12 3 1 11
5
63
3 22
Eigenvalue problems:Formulation