Having studied matrices, we now introduce determinants, a fundamental concept in linear algebra. Determinants assign to every square matrix a single number that encodes important information about the matrix and the linear transformation it represents. Determinants are used to determine whether a matrix is invertible, to compute areas and volumes under linear maps, to solve systems of linear equations using Cramer's rule, and to study eigenvalues and change of variables in multiple integrals.
Intuitively, the determinant is a numerical signature of a square matrix that captures how the matrix scales oriented volume in the underlying vector space. A determinant of zero indicates that the matrix collapses the space into a lower dimension and so is singular (non-invertible).

Let A = [aij] be a square matrix of order n with entries from a field K (for our purposes, K is usually the real numbers ℝ or complex numbers ℂ). The determinant of A is a scalar associated with A and is denoted by |A|, det A, or Δ. The determinant defines a function
f : Mn(K) → K, where f(A) = det A.
Only square matrices have determinants.
If A = [a] is a 1 × 1 matrix, then det A = a.
For A = [ [a b] [c d] ] (a 2 × 2 matrix), the determinant is given by


det A = ad - bc.
Note
Solved Example:

Calculate the determinant of the matrix A = [ [3 4] [1 2] ].
The determinant of A is det A = ad - bc.
det A = 3 × 2 - 4 × 1
det A = 6 - 4
det A = 2
So, the determinant |A| is 2.
Let A = [aij] be a 3 × 3 matrix. The determinant can be computed by expansion (Laplace expansion) along any row or any column. Define the minor Mij as the determinant of the (n-1) × (n-1) matrix obtained by deleting the i-th row and j-th column. The cofactor Cij is given by Cij = (-1)i+j Mij. The determinant equals the sum of entries of any row (or column) multiplied by their corresponding cofactors.
For a 3 × 3 matrix A:

Expansion along the first row gives

Example: For the given 3 × 3 matrix below, calculate its determinant by expansion along the first row.


Compute the cofactors and evaluate the determinant.
det A = 2 × det [ [0 -2] [1 3] ] - 3 × det [ [4 -2] [5 3] ] + 1 × det [ [4 0] [5 1] ]
det A = 2 × (0 × 3 - (-2) × 1)
det A = 2 × (0 + 2)
det A = 4
det A = det A - 3 × (4 × 3 - (-2) × 5)
det A = 4 - 3 × (12 + 10)
det A = 4 - 3 × 22
det A = 4 - 66
det A = -62
det A = det A + 1 × (4 × 1 - 0 × 5)
det A = -62 + 4
det A = -58
Thus, |A| = -58.
Any row or column may be used for expansion; choose the one with the most zeros to simplify calculations.
For a 2 × 2 matrix representing a linear map in the plane, the absolute value of the determinant equals the area-scaling factor; the sign indicates whether orientation is preserved (positive) or reversed (negative). For an n × n matrix, the absolute value of the determinant gives the factor by which n-dimensional volumes are scaled.
The area of a triangle with vertices (x1, y1), (x2, y2), (x3, y3) in the plane is

A = 1/2 × |det [ [x1 y1 1] [x2 y2 1] [x3 y3 1] ]|.
Example: Find the area of the triangle with vertices (1, 2), (3, 4) and (5, 1).

Form the 3 × 3 matrix of coordinates with a column of ones and compute its determinant.

Compute the determinant value:
det = 1 × (4 × 1 - 4 × 1) - 2 × (3 × 1 - 5 × 1) + 1 × (3 × 1 - 5 × 4)
det = 1 × (4 - 4) - 2 × (3 - 5) + 1 × (3 - 20)
det = 0 - 2 × (-2) + (-17)
det = 0 + 4 - 17
det = -13
Area A = 1/2 × |det|
Area A = 1/2 × 13
Area A = 6.5 square units
Note: The earlier illustrative calculation in some texts may give 18 for a different set of points; always compute the determinant for the specific vertices given and take absolute value.
Determinants are a compact and powerful tool in linear algebra. Mastery of their computation and properties is essential for solving systems of equations, understanding linear transformations, and tackling many problems in geometry and calculus.