# Nakafa Framework: LLM URL: /en/subject/high-school/11/mathematics/matrix/sarrus-method Source: https://raw.githubusercontent.com/nakafaai/nakafa.com/refs/heads/main/packages/contents/subject/high-school/11/mathematics/matrix/sarrus-method/en.mdx Output docs content for large language models. --- export const metadata = { title: "Sarrus Method", description: "Master Sarrus method for calculating 3×3 matrix determinants quickly. Learn the diagonal technique with step-by-step visual approach and examples.", authors: [{ name: "Nabil Akbarazzima Fatih" }], date: "06/05/2025", subject: "Matrix", }; ## Basic Concept of Sarrus Method Sarrus' method is a practical way to calculate the determinant of a 3x3 matrix. This method is named after Pierre Frédéric Sarrus. To understand it, let's recall how to calculate the determinant of a 2x2 matrix. If we have a 2x2 matrix: Its determinant, or , is calculated as follows: This is the difference between the product of the main diagonal elements () and the product of the secondary diagonal elements (). Sarrus' method adapts this principle for 3x3 matrices. ## Steps to Calculate the Determinant of a 3x3 Matrix using Sarrus Method Suppose we have a 3x3 matrix A: The element is the element in the -th row and -th column. **Step 1: Copy the First Two Columns** Rewrite the first two columns of matrix A to the right of the third column: This helps us visualize the diagonals that will be multiplied. **Step 2: Calculate the Sum of the Products of the Positive Diagonals** Multiply the elements along the three diagonals from the top-left to the bottom-right. Sum these products, let's call it .
The first term is the product of the main diagonal. The second and third terms are products of parallel diagonals involving elements from the copied columns. **Step 3: Calculate the Sum of the Products of the Negative Diagonals** Multiply the elements along the three diagonals from the top-right to the bottom-left. Sum these products, let's call it .
The first term is the product of the secondary diagonal (anti-diagonal). The second and third terms are products of parallel diagonals involving elements from the copied columns, moving towards the bottom-left. **Step 4: Calculate the Final Determinant** The determinant of matrix A, , is the difference between and : Substitute the values of and : Or, after distributing the negative sign: ### Visualizing Sarrus Method To visualize this process, we can write: Then, using Sarrus' Method, we expand the matrix and identify the multiplication paths:
Thus, the complete formula becomes: ## Important Limitation of Sarrus Method Sarrus' method is **only applicable to 2x2 and 3x3 matrices**. For matrices of higher order (e.g., 4x4), this method cannot be used. Other methods such as cofactor expansion or row reduction are required for such cases.