Matrices & Determinants
College Math · Linear AlgebraPreview
1. Introduction
A matrix is a rectangular array of numbers arranged in rows and columns, and it is arguably the single most useful object in applied mathematics. Matrices encode systems of linear equations, represent linear transformations of space (rotations, scalings, shears, projections), store and manipulate data, drive computer graphics and machine learning, and model networks, Markov chains, and dynamical systems. The determinant is a single number distilled from a square matrix that captures whether the matrix is invertible and how it scales area or volume.
The power of matrices comes from a small algebra: we can add them, scale them, multiply them, transpose them, and — when possible — invert them. Each operation has a precise definition and clean properties, but also a few famous traps (matrix multiplication is not commutative; the inverse exists only sometimes). The determinant ties everything together: a square matrix is invertible exactly when its determinant is nonzero, and the determinant of a product is the product of determinants.
This article develops the theory rigorously: matrix operations and their algebraic laws, the geometric meaning of matrices as linear maps, determinants via cofactor expansion and row operations, the inverse via the adjugate and via Gaussian elimination, elementary row operations, and applications to solving linear systems (including Cramer's rule). The goal is both computational fluency and conceptual understanding of what these objects mean.
Matrices are the computational backbone of linear algebra: every system of linear equations, every linear transformation, and every change of coordinates reduces to matrix operations. The determinant is the bridge between algebra (invertibility) and geometry (volume scaling), and understanding both viewpoints is essential for the deeper theory of eigenvalues, vector spaces, and the spectral theorem.
2. Core Concepts
2.1 Matrices and Basic Operations
An matrix has rows and columns, with entry in row , column . Addition and scalar multiplication act entrywise (requiring matching dimensions for addition): and . The transpose swaps rows and columns: .
2.2 Matrix Multiplication
The product is defined only when the number of columns of equals the number of rows of : if is and is , then is with Multiplication is associative and distributive , but not commutative: in general . The identity matrix satisfies .
Viewing as a linear map , the product means "apply , then " — another reason order matters.
2.3 The Determinant: Definition
For a matrix: For larger matrices, cofactor (Laplace) expansion along any row : where is the minor (determinant of the submatrix with row , column deleted) and is the cofactor.
2.4 Geometric Meaning of the Determinant
The determinant measures how a linear transformation scales signed area (2D) or volume (3D). If maps the unit square to a parallelogram, that parallelogram's area is ; the sign records whether orientation is preserved () or flipped (). A determinant of zero means the transformation collapses space to a lower dimension — the columns are linearly dependent — which is precisely why signals non-invertibility.
2.5 Key Determinant Properties
- .
- (multiplicativity).
- .
- when is invertible.
- for an matrix.
- Swapping two rows multiplies the determinant by ; adding a multiple of one row to another leaves it unchanged; scaling a row by multiplies the determinant by .
- A triangular matrix's determinant is the product of its diagonal entries.
Proof sketch of . The determinant is the unique function on matrices that is multilinear in columns, alternating (swapping columns negates it), and normalized to . Multilinearity and alternation force to be the signed volume scaling factor. Since as a column map is composition, the volume scales by .
2.6 Elementary Row Operations and Row Echelon Form
The three elementary row operations are: swap two rows, multiply a row by a nonzero scalar, add a multiple of one row to another. Each corresponds to left-multiplication by an elementary matrix. Row reduction to echelon form (and reduced row echelon form, RREF) is the backbone of solving systems and computing rank. The determinant tracks how each operation affects its value.
2.7 The Inverse Matrix
The inverse satisfies . It exists iff . For : In general, , where is the transpose of the cofactor matrix. Properties: , , .
2.8 Solving Linear Systems
with nonsingular has unique solution . Cramer's rule: where is with column replaced by . For larger systems, Gaussian elimination is far more efficient.
Continue reading with Premium
Upgrade to read the full article and unlock all Premium features.
Free
- Unlimited practice — all difficulties
- 3 hints / day
- Community solutions
- 2 timed mocks / month
Premium
- ✓Full article + all 57+ theory guides
- ✓Unlimited hints on practice problems
- ✓Unlimited timed mock exams & PDF worksheets