Maitrices
Maitrices
Matrix Order
If matrix A is a 3 × 4 matrix, and matrices A × B and B × A are defined, we need to determine the order of
matrix B.
The transpose of matrix A, denoted as A , will have its order reversed. So, if A is 3 × 4, then A is 4 × 3.
′ ′
A = 3 × 4
′
A = 4 × 3
For A × B to be defined, the number of columns in A must equal the number of rows in B. Therefore, B must
′ ′
have 3 rows.
Symmetric Matrices
The symmetric part of a matrix A is given by:
′
A+A
For quick solving, note that the diagonal elements will remain the same when finding the symmetric part.
Given a matrix A, when calculating the symmetric part, the diagonal elements 1, 8, 7 will remain the same
because you're adding the element to itself when you find A . ′
Matrix Multiplication
If A = [0 1 1 0], then to find A , you multiply A by itself:
2
2
A = A × A = [0 1 1 0] × [0 1 1 0]
(0 × 0) + (1 × 1) = 1
(0 × 1) + (1 × 0) = 0
(1 × 0) + (0 × 1) = 0
(1 × 1) + (0 × 0) = 1
Therefore, A 2
= [1 0 0 1]
Page 1
Created by Turbolearn AI
If A is a matrix of order m × n, and B is a matrix such that AB and B A are both defined, we want to find the ′ ′
order of B.
Let the order of B be x × y. Then the order of B is y × x. ′
For AB to be defined, the number of columns in A must equal the number of rows in B . Thus, n = y.
′ ′
For B A to be defined, the number of columns in B must equal the number of rows in A. Thus, x = m.
′ ′
value of θ.
′
A + A = [2 cos(2θ) 0 0 2 cos(2θ)]
Since A + A ′
= I = [1 0 0 1] , we have:
1
2 cos(2θ) = 1 cos(2θ) =
2
Solving for θ:
π π
2θ = θ =
3 6
2
2θ =
π
3
θ =
π
Option A is correct.
Find: A 2
− 5A
1. Calculate A : A 2 2
= [3 1 − 1 2] [3 1 − 1 2] = [8 5 − 5 3]
3. Calculate A 2
− 5A A : 2
− 5A = [8 5 − 5 3] − [15 5 − 5 10] = [−7 0 0 −7]
Option D is correct.
Page 2
Created by Turbolearn AI
Symmetric: A = A T
Skew-symmetric: A T
= −A Therefore, A = −A, which implies 2A = 0, and thus A = 0.
Option B is correct.
x + 2 = 8 ⟹ 2x + 2 = 8 ⟹ x = 3
Option A is correct.
1. Calculate A : A 2 2
= [2 −2 − 2 2] [2 −2 − 2 2] = [8 −8 − 8 8] = 4A
2. Calculate A : A 3 3
= A
2
× A = 4A × A = 4A
2
= 4(4A) = 16A
Option D is correct.
x + y = 2
−x + y = 4
2. Solve the system of equations: Add the equations to eliminate x: 2y = 6 ⟹ y = 3 Substitute y into the first
equation: x + 3 = 2 ⟹ x = −1
Option D is correct.
Page 3
Created by Turbolearn AI
1. Find A : A ′ ′
= [cos α − sin α sin α cos α]
2. Multiply A A: A A = [cos α ′ ′
− sin α sin α cos α] [cos α sin α − sin α cos α]
= [ 2 2 2 2 ] = [1 0 0 1]
cos α + sin α cos α sin α − sin α cos α sin α cos α − cos α sin α sin α + cos α
2. Let X = P Q − QP . Find X : T
T T T T T T T T
X = (P Q − QP ) = (P Q) − (QP ) = Q P − P Q = QP − P Q = −(P Q − QP ) = −X
Since X T
= −X P Q − QP , is a skew-symmetric matrix.
Given that q T
= q and p T
= p , we substitute:
T
x = qp − pq
Since x T
= −x , the matrix is skew-symmetric, which corresponds to option D.
1. 3A + 4B = [7 −10 17 0 6
′
31]
Page 4
Created by Turbolearn AI
′ T T
(3A + 4B ) = [7 −10 17 0 6 31 ]
1. 3A + 4B ′
= [7 −10 17 0 6 31]
2. 3A ′
+ 4B = [7 0 − 10 6 17 31]
Dividing by 6:
14 −10 24 −10 12 62 7 −5 −5 31
B = [ ] = [ 4 2 ]
6 6 6 6 6 6 3 3 3 3
However, there was an error in adding the equations. The correct step is as follows:
But this doesn't simplify to a form that directly helps us find B. Instead, we must use the transpose property more
effectively. From the equations: 3A + 4B = [7 −10 17 0 6 31] .....1 3A + 4B = [7 0 − 10 6 17 31] .....2
′ ′
Matrix A and A 2
Given matrix A = [0 0 1 0 1 0 1 0 0]
2
A = [0 0 1 0 1 0 1 0 0] × [0 0 1 0 1 0 1 0 0]
Then A 4
= (A )
2 2
= I
2
= I .
Page 5
Created by Turbolearn AI
Given B is skew-symmetric, B T
= −B
T ′ ′
X = A(−B)A = −ABA
Since X T
= −X ABA , ′
is a skew-symmetric matrix.
Finding B T
A
T
First, find B : T
T
B = [2 1 1 3 2 2 1 1 1]
Find A : T
T
A = [1 −2 1 2 1 3]
Now, multiply B T
A
T
:
T T
B A = [2 1 1 3 2 2 1 1 1 ] × [1 −2 1 2 1 3]
= [ 2(1) + 1(2) + 1(1) 2(−2) + 1(1) + 1(3) 3(1) + 2(2) + 2(1) 3(−2) + 2(1) + 2(3) ]
= [2 + 2 + 1 −4 + 1 + 3 3 + 4 + 2 −6 + 2 + 6] = [5 0 9 2]
There seems to be a mistake in the dimensions of the matrices. Let's correct this by transposing A and B individually
first:
A = [1 − 2 1] B = [ 2 , 3 1 1 2 1 1 2 1]
A
T
= [1 −2 1] and B T
= [2 1 1 3 2 2 1 1 1]
Since A is a 3 × 1 matrix and B is a 3 × 3 matrix, the product AB is not defined. The question might have an error or
missing information. We'll compute B A assuming it was intended: T T
T T
B A = [2 1 1 3 2 2 1 1 1] [1 − 2 1] = [ 2(1) + 1(−2) + 1(1) 3(1) + 2(−2) + 2(1) 1(1) + 1(−2) + 1(1) ] = [1 1 0]
Let X = A . Then X = (A
2021
) = (A ) = (−A)
T 2021 T T 2021 2021
= −A
2021
= −X
Therefore, A is skew-symmetric.
2021
Page 6
Created by Turbolearn AI
A =
1
2
(P + P
T
) and B = 1
2
(P − P
T
)
T
P = [2 5 3 −1]
1 1
A = ([2 3 5 −1] + [2 5 3 −1]) = [4 8 8 −2] = [2 4 4 −1]
2 2
1 1
B = ([2 3 5 −1] − [2 5 3 −1]) = [0 −2 2 0] = [0 −1 1 0]
2 2
Example Problem
Let's walk through an example problem. We have a matrix and we want to perform some row operations to simplify
it.
Original matrix:
[2 3 2]
[-1 5 1]
[3 -1 5]
Row operations:
1. R → R + R
2 2 1
2. Divide by 2.
3. Subtract new matrix from another to get zeros.
4. Divide by 2 again.
[0 -1 1 0]
Symmetric Matrices
A symmetric matrix is a matrix that is equal to its transpose. These are very important, so when revising this chapter,
focus on symmetric matrices and solve questions related to them. Solve all the questions given in this session.
Question 19
If A is a matrix of order 3 × 3, and we are given A −2
, it should actually be A −2
= (A
−1
)
2
. Therefore, option C is correct.
Question 20
Given:
[3 2] [x] = [15]
[1 -1] [y] = [5]
Page 7
Created by Turbolearn AI
We have the equations: 3x + y = 15 2x − y = 5 Adding the two equations: 5x = 20 x = 4 Substituting x back in:
3(4) + y = 15 12 + y = 15 y = 3 So the answer is x = 4 and y = 3, which corresponds to option B.
Question 21
If AB = B and BA = A, then what is A 2
+ B
2
?
2 2 2 2 2 2 2 2
A + B = A × A + B × B A + B = A(BA) + B(AB) A + B = (AB)A + (BA)B A + B = BA + AB = A + B
Question 22
Given the equations: 2x + y = 1 x + y = 1 Subtracting the second equation from the first: x = 0 Substituting x back in:
0 + y = 1 y = 1 Also given: p − q = 0 p + q = 0 Adding the two equations: 2p = 0 p = 0 Substituting p back in:
Question 23
If A = [1 0 1 1] , find A n
+ nI .
A
3
= A
2
× A = [1 0 2 1] [1 0 1 1] = [1 0 3 1 ] From this pattern, we can generalize that A n
= [1 0 n 1] .
Now, let's compute A n
+ nI , where I = [1 0 0 1] :
n + 1] We need to express this in
n
A + nI = [1 0 n 1] + n [1 0 0 1] = [1 0 n 1 ] + [n 0 0 n] = [ n + 1 0 n
Question 24
Find the number of non-zero diagonal matrices of order 4 satisfying A 2
= A . Let A be a diagonal matrix of order 4,
such that:
A = [k 0 0 0 0 k 22 0 0 0 0 k 33 0 0 0 0 k 44 ]
11
Since A = A, we have k = k for i = 1, 2, 3, 4. This means that each k can be either 0 or 1. Since the matrix is non-
2 2
ii ii ii
Each k has 2 choices 0or1. Since there are 4 diagonal elements, there are 2 = 16 possible diagonal matrices.
ii
4
However, we must exclude the case where all diagonal elements are zero, which is the zero matrix.
Diagonal Matrices
Let's consider a square matrix where we're trying to find a particular form after some operation.
Page 8
Created by Turbolearn AI
2
ki = k
i
k i (k i − 1) = 0
Element 1: 2 options
Element 2: 2 options
Element 3: 2 options
Element 4: 2 options
Total combinations: 2 × 2 × 2 × 2 = 16
However, we must exclude the case where all diagonal elements are zero sincewewantnon − zeromatrices.
1. x + y = [7 0 2 4]
2. x − y = [3 0 0 4]
2x = [7 + 3 0 + 0 2 + 0 4 + 4] = [10 0 2 8]
x = [5 0 1 4]
Calculate A : 2
2
A = [cos(α) sin(α) − sin(α) cos(α)] [cos(α) sin(α) − sin(α) cos(α)]
2
A = [ 2 2 2 2 ]
cos (α) − sin (α) 2 cos(α) sin(α) − 2 sin(α) cos(α) cos (α) − sin (α)
Page 9
Created by Turbolearn AI
Calculate M : 2
2
M = [1 1 1 1] [1 1 1 1] = [2 2 2 2] = 2M
Calculate M : 3
3 2 2 2
M = M × M = 2M × M = 2M = 2(2M ) = 4M = 2 M
So, M k
= 2
k−1
M
Therefore, M 50
= 2
49
M = 3
49
M
2
1 + ω + ω = 0
Using 1 + ω + a = 0, we get a = −1 − ω.
Evaluating a 2
+ b
2
1. Calculate a : a 2 2
= (−1 + ω)
2
= 1 + ω
2
− 2ω
2. Calculate b : b 2 2
= 1
2
= 1
3. Calculate a 2
+ b
2
:
2 2 2
a + b = 1 + ω − 2ω + 1
a
2
+ b
2
= ω + 1 because 1 + ω + ω 2
= 0 , therefore, 1 + ω 2
= −ω
2 2 2
a + b = 1 + ω + ω + ω + 1 = 0 + ω + 1 = ω + 1
Page 10
Created by Turbolearn AI
1. Find A : 2
2
A = [i −i − i i ] × [i −i − i i] = [ i + i
2 2
−i
2
− i
2
− i
2
− i
2
i
2
+ i ]
2
2
A = [ −1 + −1 −(−1) − (−1) − (−1) − (−1) −1 + −1 ] = [−2 2 2 −2]
2. Express A in terms of B:
2
2
A = 2 × [−1 1 1 −1] = 2B
3. Find A : 8
8 2 4 4
A = (A ) = (2B)
8 2 2 2 2 4
A = ((2B) ) = (4B ) = 16B
4. Calculate B : 2
2
B = [1 −1 − 1 1] × [1 −1 − 1 1] = [ 1 + 1 −1 − 1 − 1 − 1 1 + 1 ] = [2 −2 − 2 2]
2
B = 2 × [1 −1 − 1 1] = 2B
5. Substitute B into A : 2 8
8 4 2 2 2 2 2
A = 16B = 16(B ) = 16(2B) = 16(4B ) = 64B = 64(2B) = 128B
Therefore, A 8
= 128B .
1 3 5 2n−1
B = A + 3A + 5A +. . . +(2n − 1)A
1 3 5 2n−1
3 5
B = A 1 + 3A + 5A +. . .
3 5
T T 3 T 5 T
B = A + 3(A ) + 5(A ) +. . .
1 3 5
T 3 5
B = −(A 1 + 3A + 5A +. . . )
3 5
T
B = −B
Page 11
Created by Turbolearn AI
Since B T
, matrix B is a skew-symmetric matrix.
= −B
P1 Exam Details
For the P1 exam, expect questions related to strength, quality, and number, but note that the weightage is less
compared to other exams.
Stay Updated
Subscribe to the DA Karnataka channel and turn on notifications to stay updated with the schedule.
Key to Success
To achieve a very good rank, be serious and put in extremely hard work. There are no shortcuts; hard work is
the only key.
Page 12