Matrices
Matrices
Two matrix A and B are said to be equal matrix if they are of same order and their
corresponding elements are equal
1 6 3 𝑎1 𝑎2 𝑎3
Example: If 𝐴 = [ ]and 𝐵 = [𝑏 𝑏2 𝑏3 ]are equal matrices.
5 2 1 1
Then 𝑎1 = 1, 𝑎2 = 6, 𝑎3 = 3, 𝑏1 = 5, 𝑏2 = 2, 𝑏3 = 1
(1) Row matrix: A matrix is said to be a row matrix or row vector if it has only one
row. Example: [5 0 3]
(2) Column matrix: A matrix is said to be a column matrix if it has only one column
2
Example: [ 3 ]is a column matrix of order 3×1
−6
(3) Singleton matrix: If in a matrix there is only one element then it is called
singleton matrix.
Example: [2], [3], [a], [–3] are singleton matrices.
(4) Null or zero matrix: If in a matrix all the elements are zero then it is called a
zero matrix and it is generally denoted by O.
0 0 0 0 0
Example: [0], [ ],[ ] , [00] are all zero matrices, but of different orders.
0 0 0 0 0
(5) Square matrix: If number of rows and number of columns in a matrix are equal,
then it is called a square matrix.
𝑎11 𝑎12 𝑎13
Example: [𝑎21 𝑎22 𝑎23 ]is a square matrix of order 3×3
𝑎31 𝑎32 𝑎33
(6) Diagonal matrix: If all elements except the principal diagonal in a square
matrix are zero, it is called a diagonal matrix.
2 0 0
Example : [0 3 0]is a diagonal matrix of order 3×3.
0 0 4
(7) Identity matrix: A square matrix in which elements in the main diagonal are all
'1' and rest are all zero is called an identity matrix or unit matrix.
1 0 0
1 0
Example: [1], [ ] , [0 1 0] are identity matrices of order 1, 2 and 3
0 1
0 0 1
respectively.
If 𝐴 = [𝑎𝑖𝑗 ]𝑚×𝑛 and 𝐵 = [𝑏𝑖𝑗 ]𝑚×𝑛 are two matrices of the same order then their sum
A+B is a matrix whose each element is the sum of corresponding elements. i.e.
𝐴 + 𝐵 = [𝑎𝑖𝑗 + 𝑏𝑖𝑗 ]𝑚×𝑛
5 2 1 5 5+1 2+5 6 7
Example : If 𝐴 = [1 3] and 𝐵 = [2 2], then 𝐴 + 𝐵 = [1 + 2 3 + 2] = [3 5]
4 1 3 3 4+3 1+3 7 4
Similarly, their subtraction 𝐴 − 𝐵is defined as 𝐴 − 𝐵 = [𝑎𝑖𝑗 − 𝑏𝑖𝑗 ]𝑚×𝑛
5−1 2−5 4 −3
i.e. in above example 𝐴 − 𝐵 = [1 − 2 3−2 ] = [−1 1]
4−3 1−3 1 −2
Let 𝐴 = [𝑎𝑖𝑗 ]𝑚×𝑛 be a matrix and k be a number, then the matrix which is obtained
by multiplying every element of A by k is called scalar multiplication of A by k and
it is denoted by kA.
2 4
Thus, if 𝐴 = [𝑎𝑖𝑗 ]𝑚×𝑛 , then 𝑘𝐴 = 𝐴𝑘 = [𝑘𝑎𝑖𝑗 ]𝑚×𝑛 . Example : If 𝐴 = [3 1], then
4 6
10 20
5𝐴 = [15 5 ]
20 30
The matrix obtained from a given matrix A by changing its rows into columns or
columns into rows is called transpose of Matrix A and is denoted by 𝐴𝑇 or 𝐴′ .
From the definition it is obvious that if order of A is m×n, then order of A T is n×m
𝑎1 𝑎2 𝑎3 𝑎1 𝑏1
Example : Transpose of matrix [𝑏
1 𝑏2 𝑏3 ]2×3 is [𝑎2 𝑏2 ]
𝑎3 𝑏3 3×2
Properties of transpose : Let A and B be two matrices then
(i) (𝐴𝑇 )𝑇 = 𝐴
(ii) (𝐴 + 𝐵)𝑇 = 𝐴𝑇 + 𝐵𝑇 , 𝐴and B being of the same order
(iii) (𝑘𝐴)𝑇 = 𝑘𝐴𝑇 , 𝑘 be any scalar (real or complex)
(iv) (𝐴𝐵)𝑇 = 𝐵𝑇 𝐴𝑇 , 𝐴and B being conformable for the product AB
(v) 𝐼𝑇 = 𝐼