Matrices and Determinants is one of the most scoring chapters in NDA Maths. A matrix is just numbers arranged in rows and columns, while a determinant is a single value linked to a square matrix. Master a handful of rules and you can solve linear equations, find inverses and crack 4–6 questions almost every NDA paper, often in under a minute each.
Why Matrices and Determinants Matter in NDA
Every NDA Maths paper has 120 questions for 300 marks, and Matrices and Determinants reliably contributes a steady cluster of them. The questions are mostly direct — evaluate a determinant, find an inverse, or solve equations — so they reward speed and accuracy rather than deep tricks.
The chapter is also the gateway to topics like solving linear systems, coordinate geometry (area of a triangle uses a determinant) and even probability transition tables, so a strong grip here pays off across the whole paper.
The good news for a busy Class 11–12 student is that this topic needs almost no creativity. There are only a dozen or so formulas and definitions, and once they are firm in your memory, the questions become mechanical. That is exactly the kind of chapter you want to over-prepare, because the time you invest converts into guaranteed marks rather than lucky guesses.
Because there is negative marking, only attempt a matrix/determinant question once you have the rule memorised cold. A clean 2×2 or 3×3 evaluation is almost free marks, so practise the arithmetic until it is automatic.
What Is a Matrix?
A matrix is a rectangular arrangement of numbers (called elements) in horizontal rows and vertical columns. A matrix with m rows and n columns is said to be of order m × n (read ‘m by n’).
An element is written as aij, where i is the row number and j is the column number. So a23 sits in the 2nd row and 3rd column.
A matrix of order m × n has exactly m × n elements in total. Rows are always written first, columns second.
Unlike a determinant, a matrix has no single numerical value — it is just an organised box of numbers. Two matrices are said to be equal only when they have the same order and every corresponding element matches. This simple idea is tested directly: NDA may give you two equal matrices with unknowns inside and ask you to find those unknowns by comparing positions one by one.
A quick way to read a matrix is to think of a spreadsheet or a seating chart — the row tells you which line you are on, and the column tells you the seat in that line. Keeping that picture in mind stops the very common slip of swapping the meaning of i and j.
Important Types of Matrices
NDA loves to test definitions, so memorise these standard types.
- Row matrix: only one row, order 1 × n.
- Column matrix: only one column, order m × 1.
- Square matrix: rows = columns (order n × n).
- Diagonal matrix: a square matrix in which all non-diagonal elements are zero.
- Scalar matrix: a diagonal matrix with all diagonal elements equal.
- Identity (unit) matrix I: a scalar matrix with each diagonal element equal to 1.
- Zero (null) matrix: every element is 0.
The principal (main) diagonal runs from the top-left to the bottom-right and contains elements a11, a22, a33, … Only square matrices have a meaningful main diagonal.
Two special square matrices: a symmetric matrix satisfies A′ = A (its transpose equals itself), while a skew-symmetric matrix satisfies A′ = −A, which forces every diagonal element to be 0.
Addition, Subtraction and Scalar Multiplication
Two matrices can be added or subtracted only if they have the same order. You simply add or subtract the corresponding elements.
If A = [aij] and B = [bij] are of the same order, then (A + B)ij = aij + bij. To multiply a matrix by a scalar k, multiply every element by k.
Matrix addition is commutative (A + B = B + A) and associative. The zero matrix acts as the additive identity, and −A is the additive inverse of A.
Do not try to add a 2 × 3 matrix to a 3 × 2 matrix. Different orders cannot be added at all — the operation is simply undefined.
Matrix Multiplication
The product AB exists only when the number of columns of A equals the number of rows of B. If A is m × n and B is n × p, then AB is of order m × p.
Each element of AB is found by the row-by-column rule: multiply the elements of a row of A with the matching elements of a column of B and add them up.
Matrix multiplication is associative and distributive over addition, but it is generally not commutative — that is, AB ≠ BA in most cases. The identity matrix I behaves like the number 1: AI = IA = A whenever the orders match.
To build the product step by step, slide the first row of A across the first column of B, multiply matching entries and add — that single number becomes the top-left element of AB. Repeat for every row-column pairing. If you keep your pencil tracking one row and one column at a time, you avoid the muddle that causes most multiplication errors under exam pressure.
Even when both AB and BA are defined, do not assume they are equal. Also, AB = O (zero matrix) does not mean A = O or B = O.
Transpose of a Matrix
The transpose of a matrix A, written A′ or AT, is obtained by interchanging its rows and columns. If A is of order m × n, then A′ is of order n × m.
Useful transpose rules: (A′)′ = A, (A + B)′ = A′ + B′, (kA)′ = kA′, and the reversal law (AB)′ = B′A′ (order flips).
Any square matrix can be written as the sum of a symmetric matrix ½(A + A′) and a skew-symmetric matrix ½(A − A′) — a result that occasionally appears in PYQs.
Determinants of Order 2 and 3
A determinant is a single number associated with a square matrix, written as det A or |A|. For a 2 × 2 matrix the rule is short.
For A = [[a, b], [c, d]], we have |A| = ad − bc. For a 3 × 3 determinant, expand along any row or column using cofactors and remember the sign pattern + − +, − + −, + − +.
The minor Mij is the determinant left after deleting row i and column j. The cofactor is Cij = (−1)i+j Mij. Expanding |A| means summing (element × its cofactor) along a chosen line. The beauty of this rule is that you can pick any row or column you like — the answer is always the same, so you choose whichever line makes the arithmetic shortest.
A useful shortcut for purely numerical 3 × 3 determinants is the diagonal (Sarrus) trick: add the three products running down to the right and subtract the three running down to the left. It is fast for plain numbers, but switch back to the cofactor method whenever the entries contain variables.
Expand along the row or column that contains the most zeros — each zero kills a whole cofactor term and saves you arithmetic.
Properties of Determinants
These properties let you simplify a determinant before grinding through arithmetic, and NDA tests them directly.
- |A′| = |A| — transposing does not change the value.
- Swapping two rows (or columns) changes the sign of the determinant.
- If two rows or columns are identical (or proportional), the determinant is 0.
- Multiplying one row/column by k multiplies the whole determinant by k.
- A row operation like R1 → R1 + kR2 leaves the value unchanged.
- |AB| = |A| × |B|, and for an n × n matrix, |kA| = kn|A|.
A square matrix A is singular if |A| = 0 and non-singular if |A| ≠ 0. Only non-singular matrices have an inverse.
Adjoint and Inverse of a Matrix
The adjoint of a square matrix A is the transpose of its cofactor matrix, written adj A. The inverse exists only when |A| ≠ 0.
A−1 = (1/|A|) × adj A, valid only when |A| ≠ 0. Also A · (adj A) = (adj A) · A = |A| · I.
Handy facts: for an n × n matrix, |adj A| = |A|n−1, and (AB)−1 = B−1A−1 (the reversal law again).
Never write A−1 as 1/A — division by a matrix is not defined. Always use the adjoint formula, and check |A| ≠ 0 first.
Solving Linear Equations: Cramer's Rule
For a system like a1x + b1y = c1 and a2x + b2y = c2, let D be the coefficient determinant.
x = Dx/D and y = Dy/D, where Dx and Dy are formed by replacing the x-column and y-column with the constants.
The nature of the solution depends on D:
- If D ≠ 0, the system has a unique solution (consistent).
- If D = 0 and Dx = Dy = 0, there are infinitely many solutions.
- If D = 0 but some numerator determinant ≠ 0, there is no solution (inconsistent).
The same idea extends to three equations in three unknowns using 3 × 3 determinants, where z = Dz/D as well. A system in which all the constants are zero is called homogeneous; it always has the trivial solution x = y = z = 0, and it has a non-trivial solution only when D = 0.
Besides Cramer's rule, you can solve the same system by the matrix method, writing it as AX = B and computing X = A−1B. Both methods give the same answer, so in the exam pick whichever is faster for the given numbers — Cramer's rule is usually quicker for two equations, while the inverse method shines when you already have A−1.
Worked Example
Let us evaluate a 3 × 3 determinant and then a quick inverse-related fact.
Evaluate |A| for A = [[2, −1, 0], [1, 3, 2], [4, 0, 1]] by expanding along the first row.
Since |A| = −1 ≠ 0, the matrix is non-singular, so its inverse exists. If you needed A−1, you would compute adj A and multiply by 1/(−1) = −1.
Previous-Year Question and Quick Recap
Q. If A is a square matrix of order 3 and |A| = 4, then what is the value of |2A|?
Answer: Using |kA| = kn|A| with n = 3 and k = 2, we get |2A| = 23 × 4 = 8 × 4 = 32. A very common trap is to answer 2 × 4 = 8 by forgetting the power of n.
- A matrix is numbers in rows × columns; a determinant is a single value of a square matrix.
- Add/subtract only same-order matrices; for AB, columns of A must equal rows of B; AB ≠ BA usually.
- 2×2 determinant = ad − bc; expand 3×3 by cofactors using the + − + sign grid.
- Identical/proportional rows → determinant 0; |kA| = kn|A|; |AB| = |A||B|.
- A−1 = (1/|A|) adj A, only if |A| ≠ 0; Cramer's rule: x = Dx/D, y = Dy/D.
Frequently asked questions
What is the difference between a matrix and a determinant?
A matrix is just an arrangement of numbers in rows and columns and has no single value, while a determinant is one specific number calculated from a square matrix and written as |A|.
When does the inverse of a matrix exist?
The inverse A inverse exists only when A is a square, non-singular matrix, that is when its determinant |A| is not equal to zero. It is found using A inverse = (1/|A|) times adj A.
Is matrix multiplication commutative?
No. In general AB is not equal to BA, even when both products are defined. Matrix multiplication is associative and distributive but not commutative.
How do I decide if a system of equations has a unique solution?
Compute the coefficient determinant D. If D is not zero, there is a unique solution. If D = 0 with all numerator determinants zero there are infinite solutions, and if D = 0 with a non-zero numerator there is no solution.
What is the easiest way to expand a 3 by 3 determinant in the exam?
Expand along the row or column that has the most zeros, since each zero element removes an entire cofactor term and cuts down your calculation and chance of arithmetic errors.
Related NDA Maths topics
Want a teacher to walk you through NDA Maths?
Cavalier's NDA batches break every topic into classroom sessions with daily practice, tests and doubt-clearing.