What the determinant decides
Cramer, areas and orientation
The determinant is not only a theoretical test. It solves systems, measures volumes and orients space.
Cramer's rule
When det(A) ≠ 0, each unknown is a quotient of determinants. For a system in two unknowns:
{ 3x + y = 9 A = [ 3 1 ] det(A) = 1
{ 5x + 2y = 16 [ 5 2 ]
Replace the column of the unknown you want by the right-hand side:
| 9 1 | | 3 9 |
| 16 2 | 18 - 16 | 5 16 | 48 - 45
x = ------------- = --------- = 2 ; y = ------------ = --------- = 3
det(A) 1 det(A) 1
Check: 3×2 + 3 = 9 and 5×2 + 2×3 = 16. ✔
When to use it: for a 2 × 2 or 3 × 3 system with symbolic coefficients, or to get a single unknown without solving the whole system. Beyond that it is unusable — it would need n + 1 determinants — and elimination takes over.
Areas and volumes
The most concrete use. The area of a parallelogram built on two vectors, or the volume of a parallelepiped built on three, is the absolute value of the determinant of their coordinates:
u = (3 ; 1) v = (1 ; 4)
area = | det [[3, 1], [1, 4]] | = |12 - 1| = 11
For a triangle it is half of that:
C
/| area(ABC) = ½ |det( AB , AC )|
/ |
/ |
A---B
This formula is used constantly in computer graphics and cartography, notably to test whether a point lies inside a triangle: compare the signs of three determinants.
Orientation and the cross product
The sign of the determinant orients space:
det( u , v ) > 0 -> v is "to the left" of u (positive orientation)
det( u , v ) < 0 -> v is "to the right" of u
det( u , v ) = 0 -> u and v are aligned
This is the basic orientation test of geometric algorithms: polygon winding, convex hulls, segment intersection.
In dimension 3, the determinant of three vectors det(u, v, w) is called the scalar triple product: zero when the three vectors are coplanar, positive when the frame is positively oriented.
The Jacobian, looking ahead
In analysis, when changing variables in a multiple integral, the volume element is corrected by the Jacobian determinant — the determinant of the matrix of partial derivatives. Switching to polar coordinates is what produces the famous factor r:
dx dy = r dr dθ
It is the same idea again: a determinant measures how much a transformation dilates volumes, locally this time.
Summary
- Cramer:
xi = det(Ai) / det(A), replacing columniby the right-hand side. - Cramer is handy at small size or with symbols; elimination remains the general method.
- The area of a parallelogram is
|det|; a triangle's is half of it. - The sign of the determinant gives the orientation — the basis of geometric algorithms.
- In dimension 3,
det(u, v, w) = 0means coplanar vectors. - The Jacobian extends the idea to changes of variable in integrals.

