3x3 Matrix Determinant

When does a 3D transformation squash space flat, making it impossible to reverse? The determinant of a 3×33 \times 3 matrix provides this critical insight into a transformation's behavior.

The Determinant: A Geometric Compass

For a 3×33 \times 3 matrix, the determinant offers a powerful geometric interpretation: it represents the scaling factor of volume under the linear transformation described by the matrix. Imagine a unit cube in 3D space; after the transformation, its new volume is precisely the absolute value of the determinant. A positive determinant indicates an orientation-preserving transformation, while a negative one suggests a flip.

Critically, if the determinant is zero, the transformation collapses the 3D volume to zero. This means the original 3D space is squashed into a 2D plane or even a 1D line, losing a dimension. When this happens, the transformation is irreversible, as multiple distinct points in the original space map to the same point or region in the transformed space.

Determinant of a 3x3 Matrix
A scalar value derived from the elements of a 3×33 \times 3 square matrix that reveals fundamental properties of the linear transformation it represents.
Example: For a 3×33 \times 3 matrix, the determinant indicates whether the matrix is invertible, if a system of linear equations has a unique solution, and how the transformation scales volume in 3D space. A determinant of zero signifies that the transformation collapses volume, making it non-invertible.

Mastering the 3x3 Calculation

While several methods exist for calculating determinants, Sarrus' Rule provides a particularly visual and straightforward approach for 3×33 \times 3 matrices. This rule simplifies the process by involving a pattern of diagonal multiplications. It's an efficient shortcut that avoids the more complex cofactor expansion method for this specific matrix size.

📐 Sarrus' Rule Formula

For a 3×33 \times 3 matrix

A=(abcdefghi)A = \begin{pmatrix} a & b & c \\ d & e & f \\ g & h & i \end{pmatrix}
, its determinant is calculated by summing the products of the main diagonals and subtracting the products of the anti-diagonals, after conceptually repeating the first two columns:

det(A)=aei+bfg+cdhcegafhbdi\det(A) = aei + bfg + cdh - ceg - afh - bdi

Sarrus' Rule in Action

Calculating a 3x3 Determinant
1
Repeat Columns
Mentally (or physically) repeat the first two columns of the matrix to the right of the original matrix. This helps visualize the diagonals.
2
Sum Forward Diagonal Products
Multiply the elements along the three main (forward) diagonals, starting from the top-left, and sum these products. For our example matrix, this is: (2×4×6)+(1×1×5)+(3×0×2)=48+5+0=53(2 \times 4 \times 6) + (1 \times 1 \times 5) + (3 \times 0 \times 2) = 48 + 5 + 0 = 53
3
Sum Backward Diagonal Products
Multiply the elements along the three anti-diagonals (backward diagonals), starting from the top-right, and sum these products. For our example matrix, this is: (3×4×5)+(2×1×2)+(1×0×6)=60+4+0=64(3 \times 4 \times 5) + (2 \times 1 \times 2) + (1 \times 0 \times 6) = 60 + 4 + 0 = 64
4
Subtract and Finalize
Subtract the sum of the backward diagonal products from the sum of the forward diagonal products. This difference is the determinant of the matrix. 5364=1153 - 64 = -11 Thus, the determinant of the given matrix is 11-11.
📐 Example Matrix

Let's calculate the determinant of the following matrix AA:

A=(213041526)A = \begin{pmatrix} 2 & 1 & 3 \\ 0 & 4 & 1 \\ 5 & 2 & 6 \end{pmatrix}

Check Your Understanding
What is the determinant of the matrix
(100020003)\begin{pmatrix} 1 & 0 & 0 \\ 0 & 2 & 0 \\ 0 & 0 & 3 \end{pmatrix}
?

The Zero Determinant: A Critical Signal

A determinant of zero for a 3×33 \times 3 matrix is a profound signal with several critical implications. First, it means the matrix is singular, or non-invertible; there is no inverse matrix A1A^{-1} that can undo the transformation. Second, the columns (and rows) of the matrix are linearly dependent, meaning one column can be expressed as a linear combination of the others. This implies redundancy in the vectors that define the transformation.

Geometrically, a zero determinant confirms that the transformation collapses 3D space into a lower-dimensional subspace, such as a plane or a line. This loss of dimension means that distinct input vectors can map to the same output, making it impossible to uniquely reverse the transformation. Consequently, if the matrix represents a system of linear equations Ax=bAx=b, a zero determinant indicates that the system either has no unique solution (it has infinitely many solutions) or no solutions at all.

Calculating a Zero Determinant
1
Consider the Matrix
Let's calculate the determinant of matrix BB:
B=(123456789)B = \begin{pmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \\ 7 & 8 & 9 \end{pmatrix}
Notice that the columns are linearly dependent (e.g., Column 2 - Column 1 = Column 3 - Column 2 =
(111)\begin{pmatrix} 1 \\ 1 \\ 1 \end{pmatrix}
). This suggests the determinant will be zero.
2
Sum Forward Diagonal Products
Repeat the first two columns conceptually. Then, sum the products of the forward diagonals: (1×5×9)+(2×6×7)+(3×4×8)=45+84+96=225(1 \times 5 \times 9) + (2 \times 6 \times 7) + (3 \times 4 \times 8) = 45 + 84 + 96 = 225
3
Sum Backward Diagonal Products
Sum the products of the backward diagonals: (3×5×7)+(1×6×8)+(2×4×9)=105+48+72=225(3 \times 5 \times 7) + (1 \times 6 \times 8) + (2 \times 4 \times 9) = 105 + 48 + 72 = 225
4
Subtract and Confirm Zero
Subtract the sum of backward products from the sum of forward products: 225225=0225 - 225 = 0 The determinant is indeed 00, confirming the matrix is singular and its columns are linearly dependent.
Check Your Understanding
If a 3×33 \times 3 matrix has a determinant of 0, which statement is true?
Key Takeaways
  • The determinant of a 3×33 \times 3 matrix is a single scalar value that quantifies how a linear transformation scales volume in 3D space.

  • Sarrus' Rule offers a quick, visual method to calculate the determinant of a 3×33 \times 3 matrix by summing products of forward diagonals and subtracting products of backward diagonals.

  • A zero determinant is a critical signal: it means the matrix is singular (non-invertible), its columns are linearly dependent, and the corresponding system of equations lacks a unique solution.

  • Geometrically, a zero determinant signifies that the 3D transformation squashes space flat into a 2D plane or a 1D line, making the transformation irreversible.

← All lessons in Determinant of a Matrix

Ready to keep this from fading?

Bitelrn turns lessons like this into a full course — quizzes, a knowledge map, and spaced review.

Get started free