A determinant is a scalar value that can be computed from the entries of a square matrix. Whereas a matrix is merely an array of numbers, its determinant condenses the whole matrix into a single number that encodes crucial information: whether the matrix is invertible, whether the associated system of linear equations has a unique solution, the area or volume of parallelograms and parallelepipeds, and much more.
This chapter defines determinants for square matrices of orders 1, 2, and 3, introduces the concepts of minors and cofactors, and develops the property-based expansion of determinants. It then derives the properties of determinants, the adjoint of a matrix, and the inverse of a matrix using the adjoint and the determinant. The chapter concludes with the application of determinants and matrices to solving systems of linear equations through Cramer's rule and the matrix method, together with conditions for consistency of a system.
The applications of determinants extend far beyond linear algebra. Determinants compute areas of triangles from coordinates, decide collinearity, and give the condition for a system of equations to have infinitely many solutions or no solution. The area interpretation, in particular, links determinants to geometry and will reappear in the chapter on application of integrals. Mastering the expansion techniques and the properties is the key to performing well in this high-weightage chapter.
To every square matrix A, we associate a number called the determinant, written as det(A), |A|, or with the matrix enclosed in vertical bars.
If $A = [a]$, then $|A| = a$.
$$|A| = \begin{vmatrix} a & b \ c & d \end{vmatrix} = ad - bc$$
$$|A| = \begin{vmatrix} a_{11} & a_{12} & a_{13} \ a_{21} & a_{22} & a_{23} \ a_{31} & a_{32} & a_{33} \end{vmatrix}$$
Expanding along the first row:
$$|A| = a_{11}(a_{22}a_{33} - a_{23}a_{32}) - a_{12}(a_{21}a_{33} - a_{23}a_{31}) + a_{13}(a_{21}a_{32} - a_{22}a_{31})$$
Note the alternating signs: the sign for position (i, j) is $(-1)^{i+j}$.
The minor $M_{ij}$ of an element $a_{ij}$ is the determinant obtained by deleting the i-th row and j-th column of A. For a 3 x 3 matrix, each minor is a 2 x 2 determinant.
The cofactor $A_{ij}$ of $a_{ij}$ is defined as
$$A_{ij} = (-1)^{i+j} M_{ij}$$
The signs $(-1)^{i+j}$ form a checkerboard pattern, beginning with + in the top-left corner.
The determinant can be expanded along any row or any column using cofactors:
$$|A| = \sum_{j=1}^{n} a_{ij} A_{ij} \quad \text{(expansion along row i)}$$
$$|A| = \sum_{i=1}^{n} a_{ij} A_{ij} \quad \text{(expansion along column j)}$$
These properties are used to simplify a determinant before expanding, ideally creating zeros in a row or column.
The area of a triangle whose vertices are $(x_1, y_1)$, $(x_2, y_2)$, $(x_3, y_3)$ is given by
$$\text{Area} = \frac{1}{2} \begin{vmatrix} x_1 & y_1 & 1 \ x_2 & y_2 & 1 \ x_3 & y_3 & 1 \end{vmatrix}$$
Since area is always taken as positive, the absolute value of the determinant is used. The points are collinear if and only if the determinant equals zero.
The adjoint of a square matrix A, written adj(A), is the transpose of the matrix of cofactors. If C is the matrix of cofactors, then
$$\text{adj}(A) = C^T$$
A square matrix A is invertible if and only if $|A| \neq 0$. The inverse is
$$A^{-1} = \frac{1}{|A|} \text{adj}(A)$$
If $A = \begin{bmatrix} a & b \ c & d \end{bmatrix}$, then
$$\text{adj}(A) = \begin{bmatrix} d & -b \ -c & a \end{bmatrix}, \quad A^{-1} = \frac{1}{ad - bc} \begin{bmatrix} d & -b \ -c & a \end{bmatrix}$$
Note that for a 2 x 2 matrix the adjoint is obtained by swapping the diagonal entries and changing the sign of the off-diagonal entries.
The system $a_1 x + b_1 y + c_1 z = d_1$, $a_2 x + b_2 y + c_2 z = d_2$, $a_3 x + b_3 y + c_3 z = d_3$ can be written as AX = B, where
$$A = \begin{bmatrix} a_1 & b_1 & c_1 \ a_2 & b_2 & c_2 \ a_3 & b_3 & c_3 \end{bmatrix}, \quad X = \begin{bmatrix} x \ y \ z \end{bmatrix}, \quad B = \begin{bmatrix} d_1 \ d_2 \ d_3 \end{bmatrix}$$
If $|A| \neq 0$, the system is consistent with the unique solution $X = A^{-1}B$.
For the same system, if $|A| = D \neq 0$, then
$$x = \frac{D_x}{D}, \quad y = \frac{D_y}{D}, \quad z = \frac{D_z}{D}$$
where $D_x$ is obtained by replacing the first column of D with the constants, $D_y$ by replacing the second column, and $D_z$ by replacing the third column.
| Order | Formula |
|---|---|
| 1 x 1 | det([a]) = a |
| 2 x 2 | ad - bc |
| 3 x 3 | a11(ei - fh) - a12(di - fg) + a13(dh - eg) |
| Area of triangle | (1/2) * |
| Operation | Effect on determinant |
|---|---|
| Interchange two rows/columns | Sign changes |
| Two identical rows/columns | Value is zero |
| Rows and columns interchanged | Value unchanged |
| Take out common factor of a row | Factor comes outside |
| R_i -> R_i + kR_j | Value unchanged |
| Product AB |
| Quantity | Formula |
|---|---|
| Minor Mij | Delete i-th row, j-th column |
| Cofactor Aij | (-1)^(i+j) Mij |
| adj(A) | Transpose of cofactor matrix |
| A^(-1) | adj(A) / |
| A adj(A) | |
| adj(A) |
Determinants distill the essential properties of square matrices into a single number and provide the computational engine for linear algebra. The expansion by minors and cofactors, supported by the powerful simplification properties, gives efficient methods for evaluating determinants of any order. The area of a triangle and the collinearity condition connect determinants to coordinate geometry, while the adjoint and the inverse make the determinant the key to solving systems of linear equations. The consistency conditions for a system, whether unique solution, infinitely many, or none, hinge entirely on the value of the determinant and the behaviour of adj(A)B. Because the board examination frequently combines determinant properties with matrix inversion and equation solving, this chapter rewards careful methodical work more than any other algebra chapter in the syllabus.