Matrix Definitions
Matrix Definitions
Numbers aij (i =1, 2, …m, j=1,2, …n) are called elements. First subscript
indicates the row; second subscript indicates the column. The matrix consists
of mn elements.
Types of matrices
Row matrices: A matrix with only one row is called row Matrix. i,e,
𝐴 = [1 2 3]
Equal matrices: Two matrices A= [aij] & B= [bij] are said to be equal (A = B)
if and only if each element of A is equal to the corresponding element of B, i.e.,
aij = bij for 1 ≤ i ≤ m, 1 ≤ j ≤ n.
if A = B, it implies aij = bij for 1 ≤ i ≤ m, 1 ≤ j ≤ n;
if aij = bij for 1 ≤ i ≤ m, 1 ≤ j ≤ n, it implies A = B.
1 0 𝑎 𝑏
Example: A= 1 4 B= 1 4
−4 2 𝑐 𝑑
if A = B, then a = 1, b = 0, c = -4 and d = 2.
Zero matrices: Every element of a matrix is zero, it is called a zero matrix, i.e.,
0 0 … 0
0 0 … 0
𝐴=# &
… … … …
0 0 … 0
Upper triangular matrix: A square matrix whose elements aij = 0, for i > j is
called upper triangular matrix, Example,
𝑎!! 0 … 0
𝑎 𝑎"" … 0
𝐴 = # "! &
… … … …
𝑎$! 𝑎$" … 𝑎$#
Diagonal matrix: A square matrix whose elements aij = 0, for i ¹ j is called
diagonal matrix. Example ,
𝑎!! 0 … 0
0 𝑎"" … 0
𝐴=# &
… … … …
0 0 … 𝑎$#
and is denoted by D= diag[a11, a22,….. amn]
Identity matrix or Unit Matrix: A square matrix whose elements aij = 0, for
i ¹ j and aij = 1, for i = j is called identity matrix or unit matrix and is denoted
by I.
1 0 0
Examples of identity matrix I3 = '0 1 0+
0 0 1
7 8 9 3 6 9
Properties
▪ (AT)T = A and (lA)T =lAT
▪ (A + B)T = AT + BT
▪ (A - B)T = AT- BT
▪ (AB)T = BT AT
Symmetric Matrix: A square matrix A whose elements aji = aij for all i and j
is called symmetric matrix. Example,
1 2 3
𝐴 = '2 4 −5+ is a symmetric matrix
3 −5 6
Properties: AT = A
Skew Symmetric Matrix: A square matrix A, whose elements aji = -aij for all
i ¹j and aij = 0 for i = j is called skew symmetric matrix. Example,
0 2 −1
𝐴 = '−2 0 2 + is a skew symmetric matrix
1 −2 0
Properties: AT = - A
Determinant of a square matrix
Determinant whose elements are exactly the same as those of a square matrix
A, is called the determinant of the matrix A and is denoted by |𝐴|.
Inverse Matrix: If two non-singular (i,e, |𝐴|¹ 0) square matrices A and B such
that AB = BA = I, then B is called the inverse of A and is denoted by the symbol
A-1 and is defined by
%&'(
A-1= |(|
Properties:
1. (A-1)T = (AT)-1
2. (AB)-1 = B-1A-1
Minors of elements: If A is a square matrix, then the minor of the element in
the i-th row and j-th column i,e, aij is the determinant of the submatrix formed
by deleting the i-th row and j-th column.
AAT = I
or, A = A-1
Rank
Every matrix has a rank. A non-zero matrix is said to have rank r if at least one
of its minors of order r is nonzero, while every minor of order (r+1), if any, is
zero. A zero matrix is said to have rank 0. The statement the rank of A is r then
it is denoted ρA = r
Cayley-Hamilton Theorem: