Chapter 2 Matrix Algebra (1)
Chapter 2 Matrix Algebra (1)
… (2-3)
Note:
Element located at ith row and jth column of matrix [A] is denoted by aij.
For example, element at the 2nd row and 2nd column is a22.
2-2 Matrix Multiplication
The product of matrix [A] of size (m x n) and matrix [B] of size
(n x p) will results in matrix [C], with size (m x p).
A B C (2-4)
( m x n) (n x p) (m x p)
Note: The (ij)th component of [C], i.e. cij, is obtained by taking the
DOT product,
cij (ith row of [ A]) ( jth column of [ B ]) (2-5)
Example: 1 4
2 1 3 5 2 7 15
0
2 1 - 10 7
0 3
( 2 x 3) (3 x 2) (2 x 2)
2-3 Matrix Transposition
If matrix [A] = [aij], then transpose of [A], denoted by [A]T, is
given by [A]T = [aji]. Thus, the rows of [A] becomes the columns
of [A]T.
1 5
Example: 0 6
[ A]
2 3
4 2
T 1 0 2 4
Then, [ A]
5 6 3 2
a) x1 3 x2 2 x3 2
2 x1 4 x2 2 x3 1
0 x1 4 x2 x3 3
b)
2 x1 1x2 3 x3 11
4 x1 2 x2 3 x3 8
2 x1 2 x2 2 x3 6
ASSIGNMENT 1
c) x1 1x2 4 x4 3
2 x2 1x3 5 x5 10
x2 x3 3 x5 2
x1 2 x3 x4 2
2 x2 4 x3 x5 1