Introduction
The determinant is a scalar value that can be computed from a square matrix. For a 3×3 matrix, the determinant provides important geometric and algebraic information, including whether the matrix is invertible and the volume of a parallelepiped formed by its column (or row) vectors. In physics, the 3×3 determinant is particularly useful for calculating cross products in a compact and elegant form.
For a 3×3 matrix:
the determinant, denoted $\det(A)$ or $|A|$, is a scalar value defined by:
Method 1: Expansion by Minors (Laplace Expansion)
The most general method for calculating a 3×3 determinant is expansion by minors (also called Laplace expansion). This method works by expanding along any row or column.
The determinant can be calculated by expanding along the first row:
where each 2×2 determinant is calculated as:
Expanding this gives:
When expanding along a row or column, use the following sign pattern:
The sign alternates starting with $+$ in the top-left corner. The $(i,j)$ entry uses sign $(-1)^{i+j}$.
Method 2: Sarrus' Rule
Sarrus' rule is a special method that works only for 3×3 determinants. It provides a visual mnemonic for calculating the determinant.
To apply Sarrus' rule:
- Write the first two columns of the matrix to the right of the matrix
- Sum the products along the three main diagonals (top-left to bottom-right)
- Subtract the sum of products along the three anti-diagonals (top-right to bottom-left)
The determinant is:
Properties of Determinants
- Row/Column operations: Swapping two rows (or columns) changes the sign of the determinant
- Scaling: Multiplying a row (or column) by a scalar $k$ multiplies the determinant by $k$
- Adding rows: Adding a multiple of one row to another doesn't change the determinant
- Transpose: $\det(A) = \det(A^T)$ (determinant of transpose equals determinant of original)
- Product: $\det(AB) = \det(A)\det(B)$
- Invertibility: A matrix is invertible if and only if its determinant is non-zero
- Zero determinant: If any row or column is a linear combination of others, the determinant is zero
Examples
Calculate the determinant of:
Solution:
Expanding along the first row:
Calculating each 2×2 determinant:
Therefore:
Calculate the determinant of the same matrix using Sarrus' rule:
Solution:
Main diagonals (sum):
Anti-diagonals (subtract):
Therefore:
This matches the result from Example 1.
Calculate the determinant of:
Solution:
Since the second row is all zeros, the determinant is zero. We can verify by expansion along the second row:
Application to Cross Products
The cross product of two vectors can be elegantly expressed using a determinant. This provides a compact and systematic way to calculate cross products.
For two vectors $\mathbf{a} = (a_x, a_y, a_z)$ and $\mathbf{b} = (b_x, b_y, b_z)$, the cross product is given by:
Expanding this determinant along the first row gives:
Evaluating the 2×2 determinants:
Rearranging the signs:
This matches the standard component form of the cross product!
Examples Using Determinants for Cross Products
Calculate $\mathbf{a} \times \mathbf{b}$ where $\mathbf{a} = (3, 4, 0)$ and $\mathbf{b} = (2, -1, 5)$ using the determinant method.
Solution:
Set up the determinant:
Expanding along the first row:
Calculating each 2×2 determinant:
Therefore:
Use the determinant method to show that $\hat{x} \times \hat{y} = \hat{z}$.
Solution:
With $\hat{x} = (1, 0, 0)$ and $\hat{y} = (0, 1, 0)$:
Expanding along the first row:
The first two 2×2 determinants are zero, and the third is:
Therefore:
Show that if $\mathbf{a} = (2, 4, 6)$ and $\mathbf{b} = (1, 2, 3)$ are parallel, then $\mathbf{a} \times \mathbf{b} = \mathbf{0}$ using the determinant method.
Solution:
Set up the determinant:
Notice that the second row is exactly twice the third row: $(2, 4, 6) = 2(1, 2, 3)$. When one row is a scalar multiple of another, the determinant is zero. Expanding to verify:
Geometric Interpretation
The determinant has important geometric meanings:
- Volume of parallelepiped: The absolute value of the determinant of a 3×3 matrix equals the volume of the parallelepiped formed by its three column (or row) vectors.
- Orientation: The sign of the determinant indicates the orientation (right-handed vs. left-handed) of the coordinate system formed by the vectors.
- Linear independence: If the determinant is zero, the vectors are linearly dependent (they lie in a plane or are collinear).
Advantages of the Determinant Method
- Systematic approach: The determinant provides a systematic, algorithmic way to compute cross products.
- Easy to remember: The mnemonic of writing unit vectors in the first row makes the formula easy to recall.
- Visual structure: The matrix structure makes it clear which components are being combined.
- Connection to linear algebra: Links vector operations to matrix theory and provides deeper mathematical insight.
- Generalization: The determinant approach generalizes to higher dimensions and other vector operations.