A matrix is an ordered set of numbers listed rectangular form.
Example. Let A denote the matrix
[2 5 7 8]
[5 6 8 9]
[3 9 0 1]
This matrix A has three rows and four columns. We say it is a 3 x 4 matrix.
We denote the element on the second row and fourth column with a2,4.
If a matrix A has n rows and n columns then we say it's a square matrix.
In a square matrix the elements
ai,i , with i = 1,2,3,... , are called diagonal elements.
Remark. There is no difference between a 1 x 1 matrix and an ordinary number.
[7 0 0]
[0 5 0]
[0 0 6]
The matrix is denoted by diag(7 , 5 , 6)
[2 5 -1 5]
[2]
[4]
[3]
[0]
Matrix A and B are of the same kind if and only if
A has as many rows as B and A has as many columns as B
[7 1 2] [4 0 3]
[0 5 6] and [1 1 4]
[3 4 6] [8 6 2]
The n x m matrix B is the transposed matrix of the m x n matrix A if and only if
The ith row of A = the ith column of B for (i = 1,2,3,..m)
So ai,j = bj,i
The transposed matrix of A is denoted T(A) or AT
T
[7 1 ] [7 0 3]
[0 5 ] = [1 5 4]
[3 4 ]
When all the elements of a matrix A are 0, we call A a 0-matrix.
We write shortly 0 for a 0-matrix.
An identity matrix I is a diagonal matrix with all the diagonal elements = 1.
[1] [1 0] [0 1] [1 0 0] [0 1 0] [0 0 1] ...
A scalar matrix S is a diagonal matrix whose diagonal elements all contain the same scalar value.
a1,1 = ai,i for (i = 1,2,3,..n)
[7 0 0]
[0 7 0]
[0 0 7]
A square matrix is called symmetric if it is equal to its transpose.
Then ai,j = aj,i , for all i and j.
[7 1 5]
[1 3 0]
[5 0 7]
A square matrix is called skew-symmetric
if it is equal to the opposite of its transpose.
Then ai,j = -aj,i , for all i and j.
[ 0 1 -5]
[-1 0 0]
[ 5 0 0]
To add two matrices of the same kind, we simply add the corresponding elements.
Consider the set S of all n x m matrices (n and m fixed) and
A and B are in S.
From the properties of real numbers it's immediate that
To multiply a matrix with a real number, we multiply each element with this number.
Consider the set S of all n x m matrices (n and m fixed).
A and B are in S; r and s are real numbers.
It is not difficult to see that:
r(A+B) = rA+rB
(r+s)A = rA+sA
(rs)A = r(sA)
(rA)T = r. AT
This multiplication is only possible if the row matrix and the column matrix have the same number of elements. The result is a ordinary number ( 1 x 1 matrix).
To multiply the row by the column, you have to multiply all the corresponding elements,
then make the sum of the results.
Example.
[1]
[2 1 3]. [2] = [19]
[5]
ci,j = sumk (ai,k.bk,j)
Examples.
[1 2][1 3] = [5 7] [2 1][2 2] [4 8] [1 3][1 2] = [7 5] [2 2][2 1] [6 6] [1 1][2 2] = [0 0] [1 1][-2 -2] [0 0] [ 1, 3, 2 ] [ 3, -1, 4 ] [ 1, 16, 5 ] [ 4, 5, 3 ] [ -2, 3, 1 ] = [ 8, 23, 18 ] [ 2, 2, 1 ] [ 2, 4, -1 ] [ 4, 8, 9 ]From these examples we see that the product is not commutative and that there are zero divisors. Zero divisors are matrices different from a zero matrix, such that the product is a zero matrix.
Application
A matrix A is called idempotent if and only if A2 = A.
Given:
[1 b c]
A = [0 0 2]
[0 0 1]
Find the set of all 3 x 3 matrices of type A such that A is idempotent.
Solution:
We calculate A2.
[1 b 2c+2b]
[0 0 2 ]
[0 0 1 ]
A2 = A
<=>
2c + 2b = c
<=>
c = -2b
All requested matrices are
[1 b -2b] [0 0 2 ] with b in R [0 0 1 ]
Let D denote B.C, then
dk,j = sump bk,p.cp,j (1)
Let E denote A.D then
ei,j = sumk ai,k.dk,j (2)
(1) in (2) gives
ei,j = sumk ai,k.(sump bk,p.cp,j)
<=> ei,j = sumk,p ai,k.bk,p.cp,j
So the element of the ith row and jth column of A(B.C) is
sumk,p ai,k.bk,p.cp,j (3)
Now we calculate the element of the ith row and jth column of (A.B)C
Let D' denote A.B, then
di,p' = sumk ai,k.bk,p (4)
Let E' denote D'C then
ei,j' = sump di,p'.cp,j (5)
(4) in (5) gives
ei,j' = sump (sumk ai,k.bk,p).cp,j
<=> ei,j' = sumk,p ai,k.bk,p.cp,j
So the element of the ith row and jth column of (A.B)C is
sumk,p ai,k.bk,p.cp,j (6)
From (3) and (6) => A(B.C) = (A.B)C
(A.B)T = BT .AT
This theorem can be proved in the same way as above.[ 2 4 ] [x] [ 3 8 ] [y]we get
[x y ] [ 2 3 ]
[ 4 8 ]
A.0 = 0 = 0.A
If D = diag(a,b,c) then D.D = diag( a2 , b2 , c2)
D.D.D = diag( a3 , b3 , c3)
.....
This property can be generalized for D = diag(a,b,c,d,e,...,l).