Augmented Matrix Calculator
This Augmented Matrix Calculator is an interactive tool that transforms your system of equations into an augmented matrix and then computes its solution using Gauss-Jordan elimination (reduced row echelon form or REF). In one place, you can input your equations, see the matrix form, and get precise step-by-step results. Try it now by entering your matrix to see instant solutions and learn the process.
Augmented Matrix Calculator
Solve Systems of Linear Equations with Multiple Methods
Related Linear Algebra Tools
- Find reduced row-echelon form using the RREF Calculator reducedrowechelonformcalculator.com
- Multiply, Subtract and Add with Matrix Calculator matrixcalculator.com
- Solve systems with the Gaussian Elimination Calculator gaussianeliminationcalculator.com
Mad Plexus is a growing network of focused calculators and visual tools built to support learning, teaching, and data analysis. Explore → MadPlexus.com

Augmented Matrix Calculator.com
Table of Contents
How It Works
Solving a system with the Augmented Matrix Calculator is easy:
1. Enter the augmented matrix: Input the size of your matrix (number of equations and variables) and fill in all the coefficients and constants. You can type your values directly into the matrix grid on the page. (If you have equations instead, enter the coefficients of each variable in order, and the constant term in the last column.)
2. Choose the operation and solve: Typically, you’ll click the “Solve” or “RREF” button to start the Gauss-Jordan elimination. The calculator will then systematically perform the row reductions for you. You can also select alternative solution methods, if available (such as using the matrix inverse or other options), from a menu.
3. View results and steps: The calculator outputs the reduced matrix in RREF along with the solution for each variable (for example, x=…, y=…x = …,\; y = …x=…,y=…). If the system has infinite solutions or no solution, the output will indicate this (such as showing a row of all zeros equals a nonzero constant for a no-solution case). The tool also lists the row operations and shows intermediate matrices for each step, allowing you to follow the process. Finally, you can download the results or copy the LaTeX-formatted solution if you need to include it elsewhere.
Using this tool, you don’t have to do tedious calculations by hand or worry about making arithmetic mistakes. The interface is designed to be student-friendly: you set up the matrix, and the calculator takes care of the heavy lifting – all while teaching you what it’s doing.
Augmented Matrix Calculator Features
- REF (Row Echelon Form) Support: Reduces any matrix to its upper triangular Row Echelon Form using Gaussian elimination. This form is ideal for learning how elimination works and for solving systems via back-substitution. The calculator guides you through each row operation, making it easy to track pivots and understand the system’s structure without performing a full reduction.
- RREF (Reduced Row Echelon Form) Support: Automatically reduces any matrix to RREF using row operations, so you can solve systems of linear equations step-by-step. The calculator clearly shows each pivot and elimination step, making it easy to follow how the solution is obtained.
- Matrix Properties Display: Get instant insights into your matrix. The tool displays the rank of the coefficient matrix (and the augmented matrix) to indicate whether a unique solution exists. For square matrices, it also calculates the determinant to show if the matrix is invertible. These properties help you determine whether a system has one solution, multiple solutions, or no solutions.
- Downloadable Output (LaTeX & PDF): Easily save your results. After solving a matrix, you can export the step-by-step solution as a LaTeX document or a PDF. This is perfect for including the work in homework or reports. The LaTeX output gives you a nicely formatted matrix and solution that you can further edit or directly use in your study materials.
- Matrix Editing Tools: Customize and experiment with matrices effortlessly. You can transpose your matrix (swap rows and columns) with one click, multiply the matrix by a scalar to see how it changes, or even fill the matrix with random values for practice problems. You can add or remove rows and columns on the fly. These editing features make it simple to set up the exact augmented matrix you need and explore “what-if” scenarios with your system.
Examples
Let’s walk through a couple of examples to see the Augmented Matrix Calculator in action.
Example 1: 2×3 Augmented Matrix (Simple System)
Solve a simple system of 2 equations with 2 unknowns:
\[
\left\{
\begin{aligned}
x + y &= 5 \\
x + 2y &= 7
\end{aligned}
\right.
\]
which corresponds to the augmented matrix
\[
\left(\begin{array}{ccc}
1 & 1 & 5 \\
1 & 2 & 7
\end{array}\right)
\]
Using the calculator to perform row operations (Gauss-Jordan elimination):
\[
\left(\begin{array}{ccc}
1 & 1 & 5 \\
1 & 2 & 7
\end{array}\right)
\xrightarrow{R_2 – R_1}
\left(\begin{array}{ccc}
1 & 1 & 5 \\
0 & 1 & 2
\end{array}\right)
\xrightarrow{R_1 – R_2}
\left(\begin{array}{ccc}
1 & 0 & 3 \\
0 & 1 & 2
\end{array}\right)
\]
The final matrix is in RREF, and it tells us the solution: x=3x = 3x=3 and y=2y = 2y=2. The calculator would display this result clearly, along with each row operation used to get there.
Example 2: 4×5 Augmented Matrix (Larger System)
Now consider a larger system with 4 equations and 4 unknowns (a 4×5 augmented matrix). For example:
\[
\left\{
\begin{aligned}
x + y + z + w &= 10 \\
2x + y – z + 3w &= 13 \\
x – y + 2z + w &= 9 \\
3x + 2y – w &= 3
\end{aligned}
\right.
\]
which can be written as the augmented matrix
\[
\left(
\begin{array}{ccccc}
1 & 1 & 1 & 1 & 10 \\
2 & 1 & -1 & 3 & 13 \\
1 & -1 & 2 & 1 & 9 \\
3 & 2 & 0 & -1 & 3
\end{array}
\right)
\]
Using the calculator’s elimination process, we apply row operations to reach the RREF:
\left(
\begin{array}{ccccc}
1 & 1 & 1 & 1 & 10 \\
2 & 1 & -1 & 3 & 13 \\
1 & -1 & 2 & 1 & 9 \\
3 & 2 & 0 & -1 & 3
\end{array}
\right)
\xrightarrow{R_2 – 2R_1,\ R_3 – R_1,\ R_4 – 3R_1}
\left(
\begin{array}{ccccc}
1 & 1 & 1 & 1 & 10 \\
0 & -1 & -3 & 1 & -7 \\
0 & -2 & 1 & 0 & -1 \\
0 & -1 & -3 & -4 & -27
\end{array}
\right)
\xrightarrow{\text{eliminate column 2, then 3, 4}}
\left(
\begin{array}{ccccc}
1 & 0 & 0 & 0 & 3 \\
0 & 1 & 0 & 0 & 2 \\
0 & 0 & 1 & 0 & 1 \\
0 & 0 & 0 & 1 & 2
\end{array}
\right)
\]
After reduction, the augmented matrix is essentially the 4×5 identity matrix with the last
column
\[
\left(
\begin{array}{c}
1 \\
2 \\
3 \\
4
\end{array}
\right)
\]
This means the unique solution is \( x = 1,\ y = 2,\ z = 3,\ w = 4 \).
Augmented Matrix Calculator handles all these steps, showing the intermediate matrices or row operations, so you can see how the solution unfolds.
Frequently Asked Questions
How do I do an augmented matrix on a calculator?
Most scientific or graphing calculators (like the TI-83/84) have a matrix mode where you can input an augmented matrix, but it can be tricky. You typically need to enter the coefficient matrix and constant column, then use a function (on the TI-84, it’s rref() to get the reduced form. For example, you would input a matrix A that includes the constants in the last column, then on the calculator, execute rref(A) to find the RREF.
However, doing this by hand on a calculator involves lots of button-pressing and careful entry. Using our online Augmented Matrix Calculator is much simpler — you just fill in your matrix on the screen and press solve, and it handles all the computations and row operations automatically, reducing error and saving time.
How do I find the RREF of a matrix?
To find the Reduced Row Echelon Form (RREF) of a matrix manually, you use Gauss-Jordan elimination, which is a series of elementary row operations: swapping rows, multiplying a row by a constant, or adding a multiple of one row to another. The goal is to get 1’s on the main diagonal (the pivots) and 0’s everywhere else in those pivot columns. This process can be time-consuming by hand. With our Augmented Matrix Calculator, you can find the RREF instantly — the tool applies all those row reductions for you and outputs the matrix in RREF, showing you each step so you can learn from the process.
What if the system has no solution or infinitely many solutions?
Not every system of equations has a neat single solution. If you input a system that has no solution (for example, two equations that contradict each other), the augmented matrix will reduce to a row that looks like [0 0 ⋯∣ c][0 \;\; 0 \;\; \dots \mid\; c][00⋯∣c] with ccc being a nonzero number – this represents an impossible equation like 0=50 = 50=5. The calculator will detect this and clearly display something like “No solution” for the system.
On the other hand, if a system has infinitely many solutions (which happens when the equations are dependent on each other), the RREF will have one or more free variables (parameters). The calculator will show the solution in terms of those parameters. For example, you might get results like x=2−3t, y=tx = 2 – 3t, \; y = tx=2−3t,y=t (with ttt as a free parameter) to indicate infinitely many solutions. In all cases, the calculator uses the matrix’s rank to determine the outcome and will inform you about the nature of the solution set.
We Value Your Feedback
Share your thoughts or review our site
Let us know what you liked, what could be improved, or if you encountered any issues. Your feedback helps us grow.
Goated
Easy to use. Only thing I wish was different would be being able to arrow key through the boxes to make filling them out faster.
Response from Augmented Matrix Calculator
Appreciate it! Arrow key navigation between the input boxes has been added – you can now tab and arrow through them to fill out the matrix faster. Thanks for the suggestion.
Gets Correct RREF and solution, but solves in an odd way...
As the title states, the calculator here does its job to find the correct RREF form and the answer, just does it in an odd way. This solver starts in the top left and then goes downward, and does that for every column, instead of solving below the diagonal first and then augmenting the top. Would be nice if the solver started solving in REF form and then RREF, but still works well.
Response from Augmented Matrix Calculator
Thanks for the feedback – you were spot on. The solver has been updated to use the standard two-phase approach: forward elimination into row echelon form first, then back substitution into reduced row echelon form. Appreciate you taking the time to flag it.
