# Nakafa Framework: LLM URL: /en/subject/high-school/11/mathematics/matrix/matrix-inverse Source: https://raw.githubusercontent.com/nakafaai/nakafa.com/refs/heads/main/packages/contents/subject/high-school/11/mathematics/matrix/matrix-inverse/en.mdx Output docs content for large language models. --- export const metadata = { title: "Matrix Inverse", description: "Learn matrix inverse formulas for 2x2 and 3x3 matrices. Master determinant calculations, adjoint methods, and solve linear equations step-by-step.", authors: [{ name: "Nabil Akbarazzima Fatih" }], date: "06/05/2025", subject: "Matrix", }; ## Understanding Matrix Inverse In the set of real numbers, every non-zero number has a reciprocal, which is the number , satisfying the property . A similar concept applies to matrices. If is a square matrix (e.g., of order ) and is the identity matrix of the same order, then the inverse of matrix , denoted as , is a matrix that satisfies the property: The identity matrix is a square matrix where all main diagonal elements are 1 and all other elements are 0. For example, for a 2x2 order: . ## Nonsingular and Singular Matrices Not all square matrices have an inverse. A matrix has an inverse if and only if the determinant of the matrix is not equal to zero ( or ). - Matrix is called a **nonsingular matrix** if . A nonsingular matrix always has an inverse. - Matrix is called a **singular matrix** if . A singular matrix does not have an inverse. ## Inverse of a 2x2 Matrix For a 2x2 matrix , let: The inverse of matrix can be found using the following formula, provided that : Let's understand each component of this formula: 1. **Determinant of Matrix A ( or )**: Calculated as: 2. **Adjoint of Matrix A ()**: Obtained by swapping the main diagonal elements and changing the sign of the other diagonal elements: So, the complete formula for the inverse of a 2x2 matrix is: ### Example of Inverse of a 2x2 Matrix Find the inverse of matrix . **Solution:** Step 1: Identify the elements of matrix . Step 2: Calculate the determinant of matrix . Since , matrix has an inverse. Step 3: Determine the adjoint of matrix . Step 4: Calculate the inverse of matrix .
Thus, the inverse of matrix is . ## Inverse of a 3x3 Matrix The basic concept for finding the inverse of a 3x3 matrix is the same as for a 2x2 matrix, i.e., using the formula: However, the calculation of the determinant () and adjoint () for a 3x3 matrix is more complex. - **The determinant of a 3x3 matrix** can be calculated using Sarrus's rule or the cofactor expansion method. - **The adjoint of a 3x3 matrix** is obtained from the transpose of its cofactor matrix. An in-depth discussion on how to calculate the determinant and adjoint of a 3x3 matrix will usually be studied separately as it involves more steps. ## Properties of Matrix Inverse One important use of the matrix inverse is to solve systems of linear equations. If a system of linear equations can be expressed in matrix multiplication form: where is the coefficient matrix, is the variable matrix, and is the constant matrix. If matrix has an inverse (), then the solution for can be found by: This is a very useful property in various mathematical and engineering applications. ## Exercises Given matrices and . 1. Determine matrices and . 2. Determine matrix . 3. Determine matrix . 4. Is matrix equal to matrix ? Explain your answer. ### Answer Key 1. **Determining :**
**Determining :**
2. **Determining :** 3. **Determining :** First, calculate : Let . Now, calculate :
4. **Comparison of and :** From the calculations:
Clearly, . This shows that the inverse of the sum of two matrices is generally not equal to the sum of their individual inverses. This property differs from some algebraic operations on real numbers.