Why this topic matters · 9 min read
Algebra and Matrices is one of the most consistent high-weightage topics in NDA Mathematics paper. Expect 8-12 questions per paper covering determinants, matrix operations, types of matrices, inverse, and basic algebra including complex numbers, AP/GP, and quadratic equations. Questions are mostly direct formula-application or single-step logic, so mastering definitions and standard results gives fast marks.
Types of Matrices
A matrix is a rectangular arrangement of numbers in rows and columns. NDA frequently tests whether you can identify the type of matrix from its properties. The most tested types are square, diagonal, scalar, identity, symmetric, skew-symmetric, and null matrices. Remember: the order of a matrix is always written as rows x columns.
- Square matrix: number of rows = number of columns (n x n)
- Diagonal matrix: all non-diagonal elements are zero
- Identity matrix I: diagonal elements are 1, rest are 0
- Symmetric matrix: A transpose = A (mirror across diagonal)
- Skew-symmetric matrix: A transpose = negative A, and all diagonal elements are 0
- Null matrix: every element is zero
Key formulas
Symmetric condition
A^T = A
When: To verify or identify symmetric matrices
Skew-symmetric condition
A^T = -A
When: To verify skew-symmetric; note diagonal must be 0
Matrix Operations
Addition and subtraction of matrices require same order. Multiplication requires columns of first matrix to equal rows of second matrix. Matrix multiplication is NOT commutative (AB is not equal to BA in general), but it IS associative. NDA loves asking about order of resultant matrix and whether a product is defined.
- Addition/Subtraction: same order required, element-wise operation
- Multiplication AB is defined only if columns of A = rows of B
- Order of AB: if A is m x n and B is n x p, then AB is m x p
- AB is not equal to BA in general (non-commutative)
- Transpose of product: (AB)^T = B^T times A^T — reverse the order
- Scalar multiplication: multiply every element by the scalar
Key formulas
Order of product
(m x n) times (n x p) = (m x p)
When: To find size of resulting matrix after multiplication
Transpose of product
(AB)^T = B^T . A^T
When: Whenever transpose of a product appears in MCQ options
Worked examples
If A is 2x3 and B is 3x4, then AB is 2x4. BA is not defined since 4 is not equal to 2.
If A = [[1,2],[3,4]], then A^T = [[1,3],[2,4]]. Check: (A^T)^T = A. Always true.
Determinants
Determinant is defined only for square matrices. For a 2x2 matrix it is ad minus bc. For 3x3, use cofactor expansion along any row or column. NDA tests determinant calculation, properties, and conditions for singularity. A matrix is singular if its determinant is 0, meaning it has no inverse.
- det of 2x2 [[a,b],[c,d]] = ad - bc
- Singular matrix: det = 0, inverse does not exist
- Swapping two rows or columns changes sign of determinant
- If two rows or columns are identical, determinant = 0
- Multiplying one row by k multiplies determinant by k
- det(AB) = det(A) times det(B)
Key formulas
2x2 Determinant
|A| = ad - bc for [[a,b],[c,d]]
When: Most common calculation in NDA; fast and direct
det of product
det(AB) = det(A) . det(B)
When: When asked about determinant of a product matrix
det of transpose
det(A^T) = det(A)
When: Transpose does not change determinant value
Worked examples
A = [[3,1],[5,2]], det(A) = 3x2 - 1x5 = 6 - 5 = 1. So A is non-singular.
If det(A) = 3 and det(B) = 4, then det(AB) = 12. Quick trick for NDA MCQs.
Inverse of a Matrix
Inverse exists only when the matrix is non-singular (det not equal to 0). For a 2x2 matrix, swap the diagonal elements, change signs of off-diagonal elements, and divide by the determinant. NDA tests both the calculation of inverse and properties like A times A-inverse equals I.
- Inverse exists only if det(A) is not 0
- A times A^(-1) = A^(-1) times A = I (identity matrix)
- Inverse of 2x2: swap a and d, negate b and c, divide by det
- (AB)^(-1) = B^(-1) times A^(-1) — reverse order rule
- (A^(-1))^T = (A^T)^(-1) — transpose and inverse are interchangeable in order
- Inverse of identity matrix is identity matrix itself
Key formulas
2x2 Inverse
A^(-1) = (1/det(A)) . [[d,-b],[-c,a]] for A = [[a,b],[c,d]]
When: Direct calculation of inverse for 2x2 in NDA
Inverse of product
(AB)^(-1) = B^(-1) . A^(-1)
When: Properties question on inverse of product
Worked example
A = [[2,1],[5,3]], det = 6-5 = 1. A^(-1) = 1/1 . [[3,-1],[-5,2]] = [[3,-1],[-5,2]]. Verify: A times A^(-1) should give identity.
Quadratic Equations and Complex Numbers (Algebra)
NDA algebra section also covers quadratic equations, AP/GP, and complex numbers. For quadratics, the discriminant D = b squared minus 4ac decides nature of roots. Complex numbers i = square root of -1 and powers of i follow a cycle of 4. AP/GP sums are high-frequency direct formula questions.
- D > 0: two distinct real roots; D = 0: equal roots; D < 0: complex conjugate roots
- Sum of roots = -b/a, Product of roots = c/a for ax^2 + bx + c = 0
- Powers of i: i^1=i, i^2=-1, i^3=-i, i^4=1, then cycle repeats
- AP sum: Sn = n/2 times (2a + (n-1)d) or n/2 times (first + last)
- GP sum: Sn = a(r^n - 1)/(r - 1) for r not equal to 1
- Infinite GP sum (|r| less than 1): S = a/(1-r)
Key formulas
Discriminant
D = b^2 - 4ac
When: Nature of roots question
AP Sum
Sn = n/2 . (2a + (n-1)d)
When: Sum of n terms of AP
GP Sum
Sn = a(r^n - 1)/(r - 1)
When: Sum of n terms of GP, r not equal to 1
i power cycle
i^n: divide n by 4, use remainder (0->1, 1->i, 2->-1, 3->-i)
When: Any question on higher powers of i
Worked examples
Find i^35: 35 divided by 4 = remainder 3, so i^35 = i^3 = -i.
Roots of x^2 - 5x + 6 = 0: sum = 5, product = 6, roots are 2 and 3. Verify: D = 25-24 = 1 > 0.
⚠ Common mistakes to avoid
- Confusing order of matrix multiplication: AB means A first then B, and reversing order in (AB)^(-1) or (AB)^T is a very common error — always reverse the order for inverse and transpose of product.
- Forgetting that matrix multiplication is not commutative — do not assume AB = BA in any property or MCQ.
- In 2x2 inverse, swapping only the diagonal but forgetting to negate the off-diagonal elements, or dividing the whole matrix by det but applying it incorrectly.
- For powers of i, directly computing i^50 instead of using the remainder trick — wastes time and causes errors.
- Calling a matrix with det = 0 as non-singular — it is actually singular and has no inverse. Mixing up singular and non-singular in exam hurry.
🧠 Memory aids
- SICK for skew-symmetric: S-kew = Sign changes on transpose, I-dentity diagonal = zero, C-onfirm A^T = -A, K-ills diagonal (all zeros).
- Reverse Gloves rule for product properties: to take off gloves (AB), remove B first then A. So (AB)^T = B^T A^T and (AB)^(-1) = B^(-1) A^(-1).
- i cycle as MINI: M(minus 1 for i^2), I(i^1 = i), N(negative i for i^3), I(1 for i^4) — repeats every 4.
- SiPo for quadratic roots: Si = Sum is -b/a, Po = Product is c/a. Think Si-Po like a recipe.
🎯 NDA exam tips
- NDA papers typically have 4-6 questions directly on matrices (types, determinant, inverse) and another 4-6 on algebra (AP/GP, complex numbers, quadratic equations). Together this is roughly 10-12 marks.
- Matrix property questions (is AB = BA? does inverse exist?) are one-step logic — no calculation needed. Read options carefully; these are fast marks if you know the properties cold.
- Determinant questions in NDA almost always use 2x2 matrices or ask you to identify when det = 0 using row/column properties — full 3x3 expansion is rare but do know the method.
- AP/GP questions often disguise themselves as word problems (salary increase, population growth). Identify whether it is AP (constant difference) or GP (constant ratio) first, then apply formula.
- Allocate no more than 90 seconds per matrix question. If a 3x3 determinant calculation is taking too long, check if two rows are proportional — determinant might simply be 0.
Q1 · easy · AI-verified
If the roots of x² + px + q = 0 are α and β, then α + β = ?
- -p
- p
- -q
- q
Q2 · easy · AI-verified
The solution set of |2x - 3| ≤ 5 is:
- [-1, 4]
- [-4, 1]
- [1, 4]
- [-1, 1]
Q3 · easy · AI-verified
What is the determinant of the matrix [3 2; 1 4]?
- 10
- 12
- 14
- 8
Q4 · easy · AI-verified
What is the value of i⁴ where i is the imaginary unit?
- 1
- i
- -1
- -i
Q5 · easy · AI-verified
The inverse of matrix [1 2; 3 4] is:
- [-2 1; 1.5 -0.5]
- [4 -2; -3 1] × (1/2)
- [2 -1; -3 2]
- [-4 2; 3 -1] × (1/2)