A focused summary for linking determinant definitions, computation techniques,
algebraic properties, and geometric meaning—empowering confident problem solving in linear algebra.
🔰 Introduction to Determinants
Determinants assign a scalar to each square matrix. This scalar captures the scaling and orientation effect of the linear transformation
$(x \mapsto Ax)$ and answers crucial questions: is $A$ invertible? How does $A$ transform area or volume? Can we obtain explicit solutions to $Ax = b$?
Why determinants matter
$\det A \neq 0 \iff A$ is invertible.
$|\det A|$ measures signed area/volume scaling.
Determinants justify Cramer's rule and the adjugate formula for $A^{-1}$.
They bridge algebraic manipulations with geometric intuition.
Recursive definition
For $1 \times 1$ matrices, $\det[a] = a$. For $n \geq 2$, determinants are defined via cofactor expansions along any row or column using minors and cofactors $C_{ij}$.
Prerequisite: minors & cofactors
✍️ Notation & First Computation
Notation
If $A = [a_{ij}]$ is $n \times n$, the determinant can be denoted $\det A$ or by vertical bars $|A|$:
Factor out 2 from the first row: $\det A = 2 \det \begin{bmatrix} 1 & 2 & 3 \\ 1 & 3 & 5 \\ 0 & 2 & 4 \end{bmatrix}$
Then use row operations to create zeros and reduce to triangular form.
🔗 Determinants, Invertibility & Transpose
Theorem (Invertibility test)
A square matrix $A$ is invertible if and only if $\det A \neq 0$.
Theorem (Transpose invariance)
For any square matrix $A$:
$$\det(A^T) = \det(A)$$
Thus $A$ and $A^T$ always share determinant, rank, and invertibility. This means cofactor expansion can be performed along rows or columns with equal validity.
🧮 Determinants & Matrix Products
Theorem (Multiplicativity)
For $n \times n$ matrices $A$ and $B$:
The adjugate matrix $\text{adj}(A)$ is the transpose of the cofactor matrix.
Theorem (Inverse via adjugate)
If $A$ is invertible, then:
$$A^{-1} = \frac{1}{\det A} \cdot \text{adj}(A)$$
Although rarely used for large-scale computation, this formula underpins theoretical derivations and proofs.
🌐 Determinants & Geometry
Area in $\mathbb{R}^2$
If $A$ is $2 \times 2$, the area of the parallelogram spanned by the columns of $A$ is $|\det A|$.
$$\text{Area} = \left|\det\begin{bmatrix} a & c \\ b & d \end{bmatrix}\right| = |ad - bc|$$
Volume in $\mathbb{R}^3$
If $A$ is $3 \times 3$, the volume of the parallelepiped determined by the columns of $A$ is $|\det A|$.
$$\text{Volume} = |\det A|$$
More generally, $|\det A|$ measures the factor by which $A$ scales oriented $n$-dimensional volume, and the sign of $\det A$ indicates whether orientation is preserved ($\det A > 0$) or reversed ($\det A < 0$).