Section 8
Section 8
Type of Matrices
Definition: It is an array which consists elements in it’s row and column. A matrix is denoted by a
capital bold character such as A, B, C, … Column
If two matrices A and B are equal then they should satisfy the following conditions:
(i) Their dimension/parameters are same.
(ii) Their elements are same to each other.
Example:
a b p q
1. Suppose A = and B = . If A = B then,
c d 2X2 r s 2X2
• Both matrices parameters are same
• a = p, b = q, c = r and d = s.
a b c 2 −1 0
2. Matrices C = and D = then
d e f 2X3 3 4 1 2X3
a = 2, b = -1, c = 0, d = 3, e = 4, f = 1.
Addition and Subtraction of two matrices
To add or subtract two matrices the dimension/parameters of the two matrices should same.
Example:
2 −3 1 2
(i) Let A = and B = then find the following
1 4 0 3
(a) A + B = ??? (b) A – B = ???
(c) B - A = ???
4 2 −2 1
(ii) If A = 1 3 and A = 2 −2 then find the following
−2 5 0 2
(a) A - B = ??? (b) A + B = ???
(c) B - A = ???
Multiplication of a matrix by a scalar
Let A is a matrix and k is a scalar (Number) then, kA is a matrix with same dimension of A.
Example:
a b a b 2a 2b
1. Suppose A = then 2A = 2 = .
c d 2X2 c d 2X2 2c 2d 2X2
2 −1 0 2 −1 0 6 −3 0
2. Matrix C = then 3C = 3 = .
3 4 1 2X3 3 4 1 9 12 3
2 −2 2 −2 4 −4
3. Matrix B = 3 2 then 2B = 2 3 2 = 6 4
1 3 1 3 2 6
1 0 1 0 3 0
4. Matrix D = then 3D = 3 =
0 1 0 1 0 3
Examples
2 −3 1 2
(i) Let A = and B = then find the following
1 4 0 3
(a) 2A + B = ??? (b) A – 3B = ???
(c) 3B – 2A = ??? (d) 2B + 2A = ???
4 2 −2 1
(ii) If A = 1 3 and A = 2 −2 then find the following
−2 5 0 2
(a) A + 2B = ??? (b) 3A – 2B = ???
(c) B – 2A = ??? (d) B + 2A = ???
Examples
1 3 2 3 −3 0
(i) If A = 3 1 1 and A = 2 1 1 then find the following
−2 0 −2 2 1 0
(a) A + 2B = ??? (b) 3A – 2B = ???
(c) B – 2A = ??? (d) B + 2A = ???
1 0 0 3 3 0
If A = 3 1 0 and A = 0 1 1 then find the following
2 1 2 0 0 2
(a) 2A + B = ??? (b) 2A – 3B = ???
(c) 2B – 3A = ??? (d) 3B + 2A = ???
Multiplication of two matrices
To multiply one matrix by another matrix the following condition should satisfy.
Condition: Number of columns of the first matrix = Number of rows of the second matrix.
𝐀 nXm ∗ 𝐁mXp = 𝐂nXp
Example
2 1 2
(i) Let A = and B = then find the following
3 −1 2𝑋2 3 2𝑋1
(a) AB = ??? (b) BA = ???
2 1 3 2
(ii) Let A = and B = then find the following
3 −1 2𝑋2 4 1 2𝑋2
(a) AB = ??? (b) BA = ???
2 1
2 3 −1
(iii) If A = and B = 3 4 then find the following
1 3 2 2𝑋3
2 −1 3𝑋2
(a) AB = ??? (b) BA = ???
Multiplication of two matrices
2 1 −2 2 1
(iv) Let A = 3 2 2 and B = 1 3 then find the following
1 −2 1 3𝑋3 −2 −2 3𝑋2
(a) AB = ??? (b) BA = ???
3 −1 2 2 −3 1
(v) If A = 2 −2 −3 and B = 1 1 2 then find the following
1 2 1 3𝑋3 2 2 0 3𝑋3
(a) AB = ??? (b) BA = ???
3 1 2 1 0 0
(vi) If A = 2 2 3 and I = 0 1 0 then check whether AI = IA = A.
1 2 1 3𝑋3 0 0 1 3𝑋3
Note: If A is a square matrix and I is an identity matrix the AI = IA = A
Transpose Matrix
If A is a matrix then its determinant is denoted by 𝐀 . Determinant exists only for square matrix.
2 4 2 3
(i) A= then 𝐀 = ??? (ii) A = then 𝐀 = ???
3 −1 2X2 1 −1 2X2
1 3 2 1 2 4
(iii) A = −2 2 1 then 𝐀 = ??? (iv) A = 2 2 1 then 𝐀 = ???
3 4 3 3X3 −3 3 −2 3X3
Inverse of a Matrix
1 3 2 1 2 4
(iii) A = −2 2 1 then 𝐀−1 = ??? (iv) A = 2 2 1 then 𝐀−1 = ???
3 4 3 3X3 −3 3 −2 3X3
Solution of Simultaneous Equations Using Matrix Applications
AX = B
A-1AX = A-1B
X = A-1B
Solution of Simultaneous Equations Using Matrix Applications