1introduction Basic Definitions
1introduction Basic Definitions
1introduction Basic Definitions
Benjamin Rigsby
http://nm.MathForCollege.com
Transforming Numerical Methods Education for STEM Undergraduates
http://nm.MathForCollege.com
1. define what a matrix is
Look at the matrix below about the sale of tires in a Blowoutr’us store – given by
quarter and make of tires.
Q1 Q2 Q3 Q4
Tirestone 25 20 3 2
Michigan 5 10 15 25
Copper 6 16 7 27
If one wants to know how many Copper tires were sold in Quarter 4, we go along the row
Copper and column Q4 and find that it is 27.
A matrix is a rectangular array of elements. The elements can be symbolic
expressions or numbers. Matrix [A] is denoted by
ai1 ai 2 ....ain
and column j of [A] has m elements and is
a1 j
a
2j
a mj
Each matrix has rows and columns and this defines the size of the matrix. If a
matrix [A] has m rows and n columns, the size of the matrix is denoted by m×n.
The matrix [A] may also be denoted by [A]mxn to show that [A] is a matrix with
m rows and n columns.
Each entry in the matrix is called the entry or element of the matrix and is
denoted by aij where I is the row number and j is the column number of the
element.
The matrix for the tire sales example could be denoted by the matrix [A] as
25 20 3 2
[A] = 5 10 15 25
6 16 7 27
There are 3 rows and 4 columns, so the size of the matrix is 3×4. In
the above [A] matrix, a34 =27.
Row Vector Diagonal Matrix
Column Vector Identity Matrix
Submatrix Zero Matrix
Square Matrix Tri-diagonal
Upper Triangular Matrices
Matrix Diagonally
Lower Triangular Dominant Matrix
Matrix
What is a vector?
A vector is a matrix that has only one row or one column. There are two types
of vectors – row vectors and column vectors.
Row Vector:
If a matrix [B] has one row, it is called a row vector [ B] = [b1 b2 bn ]
and n is the dimension of the row vector.
Column vector:
If a matrix [C] has one column, it is called a column vector
c1
[C ] =
c m
[ B] = [25 20 3 2 0]
[B] is an example of a row vector of dimension 5.
Example 2
25
[C ] = 5
6
Example 3
4 6 2
[ A] =
3 − 1 2
If the number of rows m a matrix is equal to the number of columns n of a matrix
[A], (m=n), then [A] is called a square matrix. The entries a11,a22,…, ann are
called the diagonal elements of a square matrix. Sometimes the diagonal of the
matrix is also called the principal or main of the matrix.
Give an example of a square matrix.
25 20 3
[A] = 5 10 15
6 15 7
is a square matrix as it has the same number of rows and columns, that is, 3.
The diagonal elements of [A] are a11 = 25, a22 = 10, a33 = 7 .
A m×n matrix for which aij = 0, i j is called an upper triangular matrix. That is,
all the elements below the diagonal entries are zero.
Example 5
Give an example of an upper triangular matrix.
10 −7 0
[A] = 0 − 0.001 6
0 0 15005
Example 6
Give an example of a lower triangular matrix.
1 0 0
[A] = 0.3 1 0
0.6 2.5 1
3 0 0
[ A] = 0 2.1 0
0 0 0
3 0 0
[ A] = 0 2.1 0
0 0 0
1 0 0 0
0 1 0 0
[A] =
0 0 1 0
0 0 0 1
A matrix whose all entries are zero is called a zero matrix, ( aij = 0for all i and j).
0 0 0
[A] = 0 0 0 0 0 0
[B] =
0 0 0 0 0 0
A tridiagonal matrix is a square matrix in which all elements not on the
following are zero - the major diagonal, the diagonal above the major diagonal,
and the diagonal below the major diagonal.
2 4 0 0
2 3 9 0
[A] =
0 0 5 2
0 0 3 6
Do non-square matrices have diagonal entries?
Yes, for a m×n matrix [A], the diagonal entries are a11 , a 22 ...,a k −1,k −1 , a kk where
k=min{m,n}.
What are the diagonal entries of
3 .2 5
6 7
[ A] =
2 .9 3 .2
5 . 6 7 . 8
n
aii | aij | for at least one i,
j =1
i j
that is, for each row, the absolute value of the diagonal element is greater than or
equal to the sum of the absolute values of the rest of the elements of that row, and that
the inequality is strictly greater than for at least one row. Diagonally dominant
matrices are important in ensuring convergence in iterative schemes of solving
simultaneous linear equations.
Give examples of diagonally dominant matrices and not diagonally dominant
matrices.
15 6 7
[A] = 2 − 4 − 2
3 2 6
and for at least one row, that is Rows 1 and 3 in this case, the inequality is a
strictly greater than inequality.
− 15 6 9
[B] = 2 − 4 2
3 − 2 5.001
The inequalities are satisfied for all rows and it is satisfied strictly greater
than for at least one row (in this case it is Row 3).
25 5 1
C = 64 8 1
144 12 1
Two matrices [A] and [B] is the same (number of rows and columns are same for [A] and
[B]) and aij=bij for all i and j.
b11 3
[ B] =
6 b22
The two matrices [A] and [B] would be equal if b11=2 and b22=7.
Matrix
Vector
Submatrix
Square matrix
Equal matrices
Zero matrix
Identity matrix
Diagonal matrix
Upper triangular matrix
Lower triangular matrix
Tri-diagonal matrix
Diagonally dominant matrix