This page covers Agniveer (All) Matrix Operations with complete concept notes, 36 graded practice MCQs, key points and exam-specific tips. Free to study.
1) Matrix Addition/Subtraction: Only possible when matrices have the same dimensions (same number of rows and columns). Add or subtract corresponding elements.
2) Scalar Multiplication: Multiply every element of the matrix by the given number.
3) Matrix Multiplication: Most important operation. For matrices A(m×n) and B(p×q), multiplication AB is possible only when n=p. The result is a matrix of size (m×q)
💡Key Rules for Matrix Multiplication
- Element at position (i,j) in result = sum of products of ith row of first matrix with jth column of second matrix
- Matrix multiplication is NOT commutative: AB ≠ BA in general
- Matrix multiplication is associative: A(BC) = (AB)C
🔢
Formula Block
Memorise — at least one formula appears in every paper
For matrices A(m×n) and B(n×p), element (i,j) of AB = Σ(k=1 to n) A(i,k) × B(k,j)
Identity Matrix: AI = IA = A (where I is identity matrix)
Zero Matrix: A + O = A (where O is zero matrix)
📊
Exam Patterns
What examiners ask — read before attempting PYQs
→Common questions include
finding products of given matrices, verifying properties like (AB)' = B'A', and solving equations involving matrix operations. Matrix multiplication appears in 80% of matrix questions.
Shortcut for 2×2 Matrix Multiplication:
For A = [[a,b],[c,d]] and B = [[p,q],[r,s]]
AB = [[ap+br, aq+bs],[cp+dr, cq+ds]]
Memory trick: "Row meets Column" - multiply row elements with column elements
✏️Worked Example 1
1
Check dimensions - A is 2×2, B is 2×2, so AB exists and will be 2×2
2
Calculate each element
(1,1) position: (2×5) + (3×2) = 10 + 6 = 16
(1,2) position: (2×1) + (3×3) = 2 + 9 = 11
(2,1) position: (1×5) + (4×2) = 5 + 8 = 13
(2,2) position: (1×1) + (4×3) = 1 + 12 = 13
Therefore, AB = [[16,11],[13,13]]
Worked Example 2:
If A = [[1,2,3]] and B = [[4],[5],[6]], find AB and BA
1
A is 1×3, B is 3×1
AB exists (1×3 × 3×1 = 1×1): AB = [1×4 + 2×5 + 3×6] = [4+10+18] = [32]
BA exists (3×1 × 1×3 = 3×3): BA = [[4×1, 4×2, 4×3],[5×1, 5×2, 5×3],[6×1, 6×2, 6×3]] = [[4,8,12],[5,10,15],[6,12,18]]
Exam Shortcut: For identity verification, remember that A×I = A always. If given options, multiply only the first row to eliminate wrong answers quickly.
Common Mistake #1: Students often assume matrix multiplication is commutative like regular numbers. Always remember AB ≠ BA. Many students lose marks by writing AB = BA without verification. In NDA exams, this trap appears in at least 30% of matrix questions. Always check the order of multiplication carefully.
Another frequent error is dimension confusion. Before multiplying, always verify that the number of columns in the first matrix equals the number of rows in the second matrix. This single check prevents 90% of calculation errors in matrix operations.
Test Matrix Operations under exam conditions
Free Agniveer (All) mock · instant rank · no login
Let A = [[3, 1], [1, 3]]. Which of the following statements about A is correct?
Practice 2easy
If A = [[1, 2], [3, 4]], then the transpose of A, denoted Aᵀ, is obtained by swapping rows and columns. Which of the following is Aᵀ?
Practice 3easy
Let A = [[2, 1], [1, 2]]. The determinant of A, denoted det(A), is calculated as det(A) = ad − bc for a 2×2 matrix [[a, b], [c, d]]. What is det(A)?
Practice 4easy
If A = [[3, 1], [2, 1]], what is det(A)?
Practice 5easy
Let A = [[2, 1], [3, 4]] and B = [[1, 0], [2, 1]]. Find the element in position (1,2) of the matrix product AB.
Practice 6easy
If A = [[1, 2], [3, 4]] and B = [[5, 6], [7, 8]], then (A + B) equals:
Practice 7easy
If A = [[1, 2], [3, 4]], then the transpose of A, denoted A^T, is which of the following?
Practice 8easy
Let A = [[2, 0], [0, 3]]. What is the determinant of A?
Practice 9easy
For a 2×2 matrix A = [[a, b], [c, d]], the adjugate (or adjoint) matrix adj(A) is defined as [[d, −b], [−c, a]]. If A = [[3, 2], [1, 4]], what is adj(A)?
Practice 10easy
If A = [[1, 2], [2, 1]], find A².
Practice 11easy
If A = [[1, 2], [2, 1]], then A + A^T equals which of the following?
Practice 12easy
If A = [[1, 2], [3, 4]], what is the transpose of A, denoted Aᵀ?
Practice 13medium
If A and B are 2×2 matrices such that AB = BA = I, then which statement is necessarily false?
Practice 14medium
Let A = [[a, b], [c, d]] be a 2×2 matrix with det(A) = 5. If B is obtained from A by swapping its rows, then det(B) is:
Practice 15medium
Let A = [[2, 1], [1, 2]] and B = [[1, -1], [-1, 1]]. If C = A² - 2AB + B², then the trace of C is:
Practice 16medium
If A is a 3×3 matrix such that det(A) = 5, then det(2A) equals:
Practice 17medium
Let A = [[1, 2], [3, 4]] and B = [[5, 6], [7, 8]]. If (AB)ᵀ = BᵀAᵀ, then which of the following is true?
Practice 18medium
If A = [[a, b], [c, d]] is a 2×2 matrix with det(A) = 10, then det(adj(A)) equals:
Practice 19medium
Let A = [[2, 0], [0, 3]] and B = [[1, 1], [0, 1]]. If X is a 2×2 matrix such that AX = B, then the sum of all entries of X is:
Practice 20medium
Let A = [[1, 2], [3, 4]] and B = [[5, 6], [7, 8]]. If (AB)^T = B^T A^T, which of the following is true?
16 more practice questions in the Study Panel
Difficulty-graded, bookmarkable, with timed mode. Free account — no credit card.