Matrix Basic - Matrix 1
Matrix Basic - Matrix 1
6 2 Row 3
2 8
A 1 7
6 2
Column 1 Column 2
2 8
A 1 7
6 2
Element in Row 3 Column 1 is
a31 = 6
a b
B
c d
Element in Row 2, Column 2
is b22 = d
Order of the matrix is
described by the number of
rows and the number of
columns
2 5 7 6 2 7 5 6 5 11
2 9 9 1
2 9 9 1 7 8
Scalar
Multiplication
Any matrix can be multiplied
by a scalar – multiply each
element by that scalar
4 9 1 4 4 4 9 4 1
4X 4
8 7 9 4 8 4 7 4 9
16 36 4
32 28 36
Scalar multiplication takes
precedence over
addition/subtraction
To evaluate
2A + 3B, work out 2A and 3B
first and then add
Matrix
Multiplication
There is no sensible intuitive
way to define multiplication of
matrices
x
4x 2y 7z 4 2 7 y
z
We can define the product of
a row of one matrix and a
column of a second matrix...
6
4 2 7 9 4 6 2 9 7 (2) 8
2
We can define the product of
the first row of one matrix and
each column of a second
matrix...
...as the sum of the products
of corresponding elements in
each case
4 8
2 5 3 7 8 15 2 8 5 7 23 51
6 1 4
4 2 7 9 2 3
2 5 8
24 18 14 4 4 35 16 6 56
8 35 66
We can define the product of
all other rows of one matrix
and each column of a second
matrix...
...in the same way each time
2 5 4 8 23 51 23 51
4 9 3 7 16 27 32 63 43 95
6 1 4
4 2 7
1 9 8 9 2 3
2 5 8
8 35 66
6 81 16 1 18 40 4 27 64
8 35 66
71 21 95
We can define the product of
two matrices only if...
Scalar Multiply
Add/Subtract
Division
There is no such thing as
matrix division...
(A + B)T = AT + BT
For square matrices of the
same order
(A + B) = A + AB + BA + B
2 2 2
A(B + C) = AB + AC
For matrices compatible for
multiplication
(AB) = B A
T T T