BrightChamps Logo
Login

Summarize this article:

Live Math Learners Count Icon112 Learners

Last updated on November 14, 2025

Matrices and determinants

Professor Greenline Explaining Math Concepts

Systems of linear equations are solved using matrices and determinants. Matrices are used to organize data in rows or columns, while determinants help check the invertibility of square matrices and determine if their solutions exist.

Matrices and determinants for US Students
Professor Greenline from BrightChamps

Matrices and determinants

Systems of linear equations are solved using matrices and determinants. Matrices are used to organize data in rows or columns, while determinants help check the invertibility of square matrices and determine if their solutions exist.

Professor Greenline from BrightChamps

What are Matrices and Determinants?

A matrix is a rectangular collection of numbers arranged in rows and columns. These numbers are referred to as elements. Meanwhile, a determinant is a single value calculated using a square matrix.

 

The determinant of a matrix provides key information about the matrix, including whether it has an inverse and how it transforms space.

Professor Greenline from BrightChamps

Difference between Matrices and Determinants

Matrices and determinants are often associated with each other, but are significantly different from each other in the following ways:

Matrices      Determinants
Structurally, matrices are a rectangular collection of elements in rows and columns.

A determinant is a single value obtained from a square matrix.

They can be of any order (m × n). 

They are only applicable for square matrices of order (n × n).

The elements in a matrix are arranged in [ ] or () brackets.

The determinant of a matrix A is written as det(A) or |A|.

They are used for storing data and solving systems.

They are used for storing data and solving systems.

An example of a matrix is
                         \(A = \begin{bmatrix} 4 & 7 \\ 2 & 6 \end{bmatrix}\)

For the same matrix, \(A = \begin{bmatrix} 4 & 7 \\ 2 & 6 \end{bmatrix}\)

det(A) = (ad - bc)
= (
46)-(72)=24-14=10
det(A) = 10

 
Professor Greenline from BrightChamps

Properties of Matrices

When working with matrices, we should know some important properties of matrices that are useful in matrix operations.

 

  • Addition and subtraction: Addition and subtraction of matrices are only possible if the matrices are of the same order. 
     
  • Scalar multiplication: Each element in a matrix can be scaled by multiplying by a scalar.
     
  • Matrix multiplication: The product is defined only when the number of columns in the first equals the number of rows in the second.
     
  • Transpose: The transpose of a matrix is formed by switching the positions of rows with columns across the main diagonal.
     
  • Symmetric and skew-symmetric matrices: A matrix is called symmetric if it is equal to its transpose (A = AT). A matrix is called skew-symmetric if it is the negative of its transpose (A = - AT).
     
  • Identity matrix: The identity matrix I serves as a multiplicative identity. The diagonal elements are always 1, and the others are zero.
     
  • Inverse matrix: The inverse of a matrix exists only for square matrices with a non-zero determinant.
     
  • Eigenvalues: Matrices have eigenvalues, which can be found using the characteristic polynomial.
     
  • Trace: The sum of a matrix’s diagonal elements gives the trace of that matrix.
Professor Greenline from BrightChamps

Solving Matrices and Determinants

Understanding how to solve problems using matrices and determinants helps deal with systems of linear equations.

 

Matrices and determinants organize complex data and simplify it.

 

Depending on the matrix, we can choose the most suitable methods to solve for them.

Professor Greenline from BrightChamps

Solving a system of equations using matrices:

Any linear equation Ax + By = C is written as AX = B in matrix form.
Where A is the coefficient matrix, X is the column matrix of variables, and B is the constant matrix.

 

Such an equation can be solved using the following methods:

Method 1: Inverse matrix method

If a matrix is non-singular and invertible, we use the inverse matrix method to find its solution. We can find the solution using X = A-1B.

 

Step 1 - Find the inverse of matrix A

 

Step 2 - Multiply the inverse by matrix B

The result containing the values is the solution matrix X.
This method is most suitable for small square matrices of order 2 × 2 or 3 × 3 because of computational complexity.

 

 

Method 2: Gauss Elimination Method

 

The Gauss elimination method simplifies a matrix one step at a time using elementary row operations. 

 

Step 1 - Convert the augmented matrix [A|B] using row operations.

 

Step 2 - Get the zeroes below the diagonal to form an upper triangular matrix.

 

Step 3 - Use back-substitution to solve the resulting system.
This method is more preferable for larger systems.

 

 

Method 3: Gauss-Jordan Elimination

 

This method is an extension of Gaussian elimination and reduces the matrix to reduced row-echelon form (diagonal form). This removes the need for back substitution.

 

Step 1 - Perform row operations till the identity matrix is found on the left side of the augmented matrix.

 

Step 2 - The right side is the solution.
This method gives a direct solution and is useful in programming and numerical software.

Professor Greenline from BrightChamps

Solving Systems Using Determinants

Cramer’s Rule is a determinant-based method used to solve systems of n linear equations in n variables for square systems, provided that the coefficient matrix A is square and det(A)  0.

 

For a given system; 
a1x + b1y = c1  
a2x + b2y = c2
Its matrix form is written as AX = B
Where A is the coefficient matrix, X is the variable matrix, and B is the constant matrix.

 

Follow these steps to apply Cramer’s rule:        

 

Step 1 - Find the determinant of the coefficient matrix det(A).

 

Step 2 - Replace the first column of A with B and find the new determinant, Dx.

 

Step 3 - Replace the second column of A with B and find Dy.

 

Step 4 - Apply the formulas, x=Dxdet(A), y =Dydet(A)
Where det(A) is the determinant of the coefficient matrix, Dx and Dy are the determinants formed by replacing columns x and y with constants.

 

Cramer’s rule is useful for smaller systems.

Professor Greenline from BrightChamps

Solving Determinants

When we simplify a determinant, the matrix is reduced to a single number or scalar value. To find these values, we can compute the determinant in the following ways:

 

For a 2 × 2 matrix A


\(\begin{bmatrix} a & b \\ c & d \end{bmatrix} \)

 

The determinant is det(A) = ad - bc
 

To find a 3 × 3 determinant 
Let matrix A,


\(A = \begin{bmatrix} a & b & c \\ d & e & f \\ g & h & i \end{bmatrix}\)

 

Using cofactor expansion along the first row, det(A) = a(ei-fh)-b(di-fg)+c(dh-eg)

 

We can also use Sarrus’ rule to calculate the determinant of a 3 × 3 matrix. It is considered a shortcut method and is limited only to 3 × 3 matrices.

 

Follow these two steps to use the Sarrus’ rule:

 

Step 1 - Repeat the first two columns next to the matrix.

 

Step 2 - Multiply diagonals from top-left to bottom-right and subtract the sum of diagonals from bottom-left to top-right.


There are two conditions of solvability to keep in mind while solving for matrices and determinants:

 

  • Unique solution: When det(A)  0, the system has a unique solution.
     
  • No solution or infinite solutions: If det(A) = 0, then the system is either inconsistent or dependent.

 

Max Pointing Out Common Math Mistakes

Common Mistakes and How to Avoid Them in Matrices and Determinants

Students often make common errors while working with matrices and determinants due to confusion over operations, properties, and notation. Here are five frequent mistakes and ways to avoid them.

Mistake 1

Red Cross Icon Indicating Mistakes to Avoid in This Math Topic

Misunderstanding the rules of matrix multiplication.

Green Checkmark Icon Indicating Correct Solutions in This Math Topic

Matrix multiplication is not commutative, like regular multiplication, so A × B  B × A. Two matrices can only be multiplied when the number of columns in the first matrix and the number of rows in the second matrix are equal.

 

Students assume that they can multiply, for instance, a 2 × 2 matrix by a 2 × 3 matrix. This is incorrect as the dimensions of both matrices are different.

Mistake 2

Red Cross Icon Indicating Mistakes to Avoid in This Math Topic

Confusing determinant with matrix operations

Green Checkmark Icon Indicating Correct Solutions in This Math Topic

Sometimes students try to apply matrix operations like swapping or scaling directly to a determinant. What they don’t realize is that these operations affect the value of the determinant.

 

These errors can be avoided if students learn how each row operation affects the determinant.

Mistake 3

Red Cross Icon Indicating Mistakes to Avoid in This Math Topic

Assuming all matrices have an inverse

Green Checkmark Icon Indicating Correct Solutions in This Math Topic

Some students assume that all square matrices have an inverse, but only matrices having non-zero determinants have an inverse.

 

So, always check the determinant value before finding the inverse. If det(A) = 0, then the matrix is singular and has no inverse.

Mistake 4

Red Cross Icon Indicating Mistakes to Avoid in This Math Topic

Incorrect cofactor expansion

Green Checkmark Icon Indicating Correct Solutions in This Math Topic

Errors can often occur in the cofactor expansion of determinants due to sign mistakes or the wrong selection of minors.

 

For example, incorrectly computing the cofactor by ignoring the sign pattern. Be careful with calculations and practice expansion on different rows/columns for verification.

Mistake 5

Red Cross Icon Indicating Mistakes to Avoid in This Math Topic

Ignoring important properties while solving

Green Checkmark Icon Indicating Correct Solutions in This Math Topic

Students may forget important properties of matrices before applying a method. For example, using Cramer’s rule without confirming whether the determinant of the coefficient matrix is non-zero.

 

This results in undefined solutions. Always check for necessary properties, like invertibility and square matrix conditions, before solving the matrix.

arrow-right
arrow-right
Professor Greenline from BrightChamps

Real-Life Applications of Matrices and Determinants

Matrices and determinants are important in solving complex systems across various fields. Some of their applications are listed below.

 

  • Structural load analysis in civil engineering: Determinants help solve systems of equations in structural analysis to look for solutions that may be unique, consistent, or unstable in force and stress distribution.
     
  • Secure message encryption using the Hill cipher: Encryption algorithms like the Hill cipher depend on invertible matrices for encrypting and decrypting messages in modular arithmetic.
     
  • Economic Forecasting Using the Leontief Input-Output Matrix: Economists use the Leontief Input-Output Model, which uses matrices to forecast economic output and plan resources. For
    uch extra raw material and labor will be required from other sectors.
     
  • Robotic movement in industrial automation: Matrices are used in robotics for the calculation of the position and orientation of robotic arms through kinematics.
     
  • Image compression in digital signal processing: Image data is stored as matrices, and techniques like singular value decomposition (SVD) use matrix factorization to reduce file sizes while preserving essential information in images.
Max from BrightChamps Saying "Hey"
Hey!

Solved Examples of Matrices and Determinants

Ray, the Character from BrightChamps Explaining Math Concepts
Max, the Girl Character from BrightChamps

Problem 1

Multiply the matrices

Ray, the Boy Character from BrightChamps Saying "Let’s Begin"
Okay, lets begin

\(\begin{bmatrix} 4 & 6 \\ 10 & 12 \end{bmatrix} \)

Explanation

To multiply matrices A and B, we take the dot product of the rows of A with the columns of B 

 

\(AB = \begin{bmatrix} 1 \times 2 + 2 \times 1 & 1 \times 0 + 2 \times 3 \\ 3 \times 2 + 4 \times 1 & 3 \times 0 + 4 \times 3 \end{bmatrix} = \begin{bmatrix} 4 & 6 \\ 10 & 12 \end{bmatrix} \)

 

Max from BrightChamps Praising Clear Math Explanations
Well explained 👍
Max, the Girl Character from BrightChamps

Problem 2

Find

Ray, the Boy Character from BrightChamps Saying "Let’s Begin"
Okay, lets begin

19

Explanation

We use cofactor expansion along the first row.

Each element in the first row is multiplied by the determinant of the 2 × 2 minor left after removing that element's row and column. Also, we apply alternating signs (+, –, +) to these cofactors.

Calculating each cofactor and summing, we get:
2(−8) − 1(−20) + 3(5) = − 16 + 20 + 15 = 19

Max from BrightChamps Praising Clear Math Explanations
Well explained 👍
Max, the Girl Character from BrightChamps

Problem 3

Solve 2x + 3y = 8, 4x + y = 10

Ray, the Boy Character from BrightChamps Saying "Let’s Begin"
Okay, lets begin

x = 2.2, y = 1.2

Explanation

We use Cramer’s Rule, which solves systems using determinants
Determinant of the coefficient matrix det(A)=-10
Replace one column with constants to compute new determinants Ax and Ay​.
det(AX) = -22,  det(Ay) = -12

x=det(Ax)/det(A)= 2.2, y=det(Ay)/det(A)=1.2

 

Max from BrightChamps Praising Clear Math Explanations
Well explained 👍
Max, the Girl Character from BrightChamps

Problem 4

Find the inverse of

Ray, the Boy Character from BrightChamps Saying "Let’s Begin"
Okay, lets begin

\(\begin{bmatrix} -0.5 & 1.5 \\ 1 & -2 \end{bmatrix} \)

Explanation

To find the inverse, compute the determinant, 4 × 1 - 2 × 3 = -2
Swap the diagonal elements and change the signs of all other elements, and multiply the result by 1det(A)


\(\text{Inverse}(A) = \frac{1}{-2} \cdot \begin{bmatrix} 1 & -3 \\ -2 & 4 \end{bmatrix} = \begin{bmatrix} -0.5 & 1.5 \\ 1 & -2 \end{bmatrix} \)

Max from BrightChamps Praising Clear Math Explanations
Well explained 👍
Max, the Girl Character from BrightChamps

Problem 5

Determine if the given matrix is invertible.

Ray, the Boy Character from BrightChamps Saying "Let’s Begin"
Okay, lets begin

No, this matrix is not invertible.

Explanation

To determine whether a matrix is invertible, we calculate its determinant.
det = 1 × 4 - 2 × 2 = 0


Since the determinant is zero, the matrix is singular and has no inverse.

Max from BrightChamps Praising Clear Math Explanations
Well explained 👍
Ray Thinking Deeply About Math Problems

FAQs on Matrices and Determinants

1. Can all matrices have a determinant?

No, only square matrices, i.e., matrices having the same number of rows and columns, can have a determinant.

Math FAQ Answers Dropdown Arrow

2.What does it mean if the determinant is zero?

Determinant of zero means that the matrix is singular and non-invertible.

Math FAQ Answers Dropdown Arrow

3.Is matrix multiplication commutative?

No, in most cases AB  BA for matrices.

Math FAQ Answers Dropdown Arrow

4.Why do we need matrices?

Matrices help represent large systems of equations, model data, and perform 3D graphics and transformations.

Math FAQ Answers Dropdown Arrow

5.What is the most efficient way to find the inverse of a 2 × 2 matrix?

To find the inverse of a 2 × 2 matrix, the most efficient method is to apply the formula A-1 = 1/ad-bc.
 

Math FAQ Answers Dropdown Arrow
Math Teacher Background Image
Math Teacher Image

Jaskaran Singh Saluja

About the Author

Jaskaran Singh Saluja is a math wizard with nearly three years of experience as a math teacher. His expertise is in algebra, so he can make algebra classes interesting by turning tricky equations into simple puzzles.

Max, the Girl Character from BrightChamps

Fun Fact

: He loves to play the quiz with kids through algebra to make kids love it.

INDONESIA - Axa Tower 45th floor, JL prof. Dr Satrio Kav. 18, Kel. Karet Kuningan, Kec. Setiabudi, Kota Adm. Jakarta Selatan, Prov. DKI Jakarta
INDIA - H.No. 8-2-699/1, SyNo. 346, Rd No. 12, Banjara Hills, Hyderabad, Telangana - 500034
SINGAPORE - 60 Paya Lebar Road #05-16, Paya Lebar Square, Singapore (409051)
USA - 251, Little Falls Drive, Wilmington, Delaware 19808
VIETNAM (Office 1) - Hung Vuong Building, 670 Ba Thang Hai, ward 14, district 10, Ho Chi Minh City
VIETNAM (Office 2) - 143 Nguyễn Thị Thập, Khu đô thị Him Lam, Quận 7, Thành phố Hồ Chí Minh 700000, Vietnam
UAE - BrightChamps, 8W building 5th Floor, DAFZ, Dubai, United Arab Emirates
UK - Ground floor, Redwood House, Brotherswood Court, Almondsbury Business Park, Bristol, BS32 4QW, United Kingdom