ZE
ZESTEXAM

AFCAT Matrix Operations

Study Material · Concept Notes · Shortcuts

This page covers AFCAT Matrix Operations with complete concept notes, 36 graded practice MCQs, key points and exam-specific tips. Free to study.

0 PYQs
none yet
36 Practice
MCQs
10 Key Points
to remember
Free
no login needed
Take Free Mock →Full Practice Set
Also for:NDACDSAgniveerCAPF
PYQs
0
Practice
36
Key Points
10
Access
Free
Concept Notes

Matrix Operations— Rules & Concept

Core ConceptRead this first — the foundation of the topic
Core Operations

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 BlockMemorise — 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 PatternsWhat examiners ask — read before attempting PYQs

NDA frequently tests 2×2 and 3×3 matrix operations. 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 ExampleSolve this step-by-step before moving on
1
Step 1

Check dimensions - A is 2×2, B is 2×2, so AB exists and will be 2×2

2
Step 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
Step 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.

Exam TrapsCommon mistakes students make — avoid these

#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.

Key Points to Remember

  • Matrix addition/subtraction requires same dimensions - add corresponding elements
  • Matrix multiplication AB exists only when columns of A = rows of B
  • Matrix multiplication is NOT commutative: AB ≠ BA in general
  • For 2×2 matrices: [[a,b],[c,d]] × [[p,q],[r,s]] = [[ap+br,aq+bs],[cp+dr,cq+ds]]
  • Identity matrix property: AI = IA = A for any compatible matrix A
  • Element (i,j) in product AB = sum of (ith row of A) × (jth column of B)
  • Shortcut: In MCQs, calculate only first row to eliminate wrong options
  • Transpose property: (AB)' = B'A' (order reverses)
  • Zero matrix addition: A + O = A where O is zero matrix
  • Always verify dimensions before attempting matrix multiplication

Exam-Specific Tips

  • Matrix multiplication of A(m×n) and B(p×q) is possible only when n = p
  • Result of matrix multiplication A(m×n) × B(n×p) has dimensions m×p
  • Identity matrix has 1s on main diagonal and 0s elsewhere
  • For 2×2 identity matrix: I = [[1,0],[0,1]]
  • Matrix multiplication follows associative law: A(BC) = (AB)C
  • Transpose of product: (AB)' = B'A' (order reverses)
  • Zero matrix has all elements as zero
  • Square matrix has equal number of rows and columns
Practice MCQs

Matrix Operations — Practice Questions

36graded MCQs · easy to hard · full solution & trap analysis · showing 20 of 36

All MCQs →
Practice 1easy

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.

Create Free Account →Browse Questions

60-Second Revision — Matrix Operations

  • Remember: Check dimensions first - columns of first = rows of second matrix
  • Formula: Element (i,j) of AB = sum of products of ith row with jth column
  • Trap: Matrix multiplication is NOT commutative - AB ≠ BA
  • Shortcut: For 2×2 multiplication use pattern [[ap+br, aq+bs], [cp+dr, cq+ds]]
  • Identity: AI = IA = A always holds for compatible matrices
  • Property: (AB)' = B'A' - transpose reverses multiplication order
  • Quick check: In MCQs, calculate first row only to eliminate wrong answers
Studied the notes? Now test yourself
See how Matrix Operations appears in the real AFCAT paper
Full timed mock · Instant All-India percentile · Free
Free forever for basic prepNo app downloadReal exam-pattern questions12,000+ aspirants
Test Matrix Operations under exam conditions
Free AFCAT mock · instant rank · no login
Free Mock →