Cara Menentukan Determinan dan Invers Matriks

3 min read 7 months ago
Published on Sep 01, 2025 This response is partially generated with the help of AI. It may contain inaccuracies.

Table of Contents

Introduction

This tutorial provides a step-by-step guide on how to determine the determinant and inverse of matrices, specifically focusing on 2x2 and 3x3 matrices. Understanding these concepts is crucial in linear algebra, as they have applications in various fields such as engineering, physics, and computer science.

Step 1: Determining the Determinant of a 2x2 Matrix

To find the determinant of a 2x2 matrix, use the following formula:

For a matrix A:

| A | = | a  b |
        | c  d |

The determinant is calculated as:

det(A) = a*d - b*c

Example

For the matrix:

| 3  4 |
| 2  5 |

The determinant is:

det(A) = (3*5) - (4*2) = 15 - 8 = 7

Step 2: Determining the Determinant of a 3x3 Matrix

To find the determinant of a 3x3 matrix, you can use the Sarrus method or the cofactor expansion method. Here, we'll focus on the Sarrus method.

For a matrix B:

| B | = | a  b  c |
        | d  e  f |
        | g  h  i |

The determinant is calculated as:

det(B) = aei + bfg + cdh - ceg - bdi - afh

Example

For the matrix:

| 1  2  3 |
| 4  5  6 |
| 7  8  9 |

The determinant is:

det(B) = (1*5*9) + (2*6*7) + (3*4*8) - (3*5*7) - (2*4*9) - (1*6*8)
= 45 + 84 + 96 - 105 - 72 - 48
= 0

(Note: This matrix is singular, meaning it does not have an inverse.)

Step 3: Finding the Inverse of a 2x2 Matrix

The inverse of a 2x2 matrix can be found using the formula:

For a matrix A:

| A | = | a  b |
        | c  d |

If the determinant (det(A)) is not zero, the inverse is given by:

A^(-1) = (1/det(A)) * | d  -b |
                        | -c  a |

Example

Using the earlier 2x2 matrix:

| 3  4 |
| 2  5 |

Since det(A) = 7, the inverse is:

A^(-1) = (1/7) * | 5  -4 |
                 | -2  3 |

Which simplifies to:

| 5/7  -4/7 |
| -2/7  3/7 |

Conclusion

In this tutorial, you learned how to determine the determinant and inverse of both 2x2 and 3x3 matrices. Remember, the determinant must be non-zero for a matrix to have an inverse. Practicing these calculations will enhance your understanding of linear algebra, which is foundational for many advanced topics in mathematics and science. Next, consider exploring larger matrices or applications of these concepts in real-world scenarios.