# What is an augmented matrix?

*Understanding Augmented Matrices: A Clear Path to Solving Systems of Linear Equations*

By [sonadorje](https://paragraph.com/@sonadorje) · 2026-04-09

---

* * *

![](https://storage.googleapis.com/papyrus_images/03ea24f9b003f3e965081d4b293d136b6f233debee7c6076099950b9999ab61c.png)

This diagram illustrates **augmented matrix**, which is usually called in Chinese:

*   **Augmented Matrix**
    
*   Some people also call it **expanded matrix**
    

Its core meaning is very simple:

**By combining the coefficient matrix and the constant column of a system of linear equations, you can write a more compact matrix.**

* * *

1\. First, look at what's drawn in the picture.
-----------------------------------------------

The left side of the diagram is matrix A:

$$ A= \\begin{bmatrix} a\_1 & b\_1 & c\_1\\\\ a\_2 & b\_2 & c\_2\\\\ a\_3 & b\_3 & c\_3 \\end{bmatrix} $$

The right side is the column vector B:

$$ B= \\begin{bmatrix} d\_1\\\\ d\_2\\\\ d\_3 \\end{bmatrix} $$

Then, appending B to the right of A gives us the augmented matrix:

$$ \[A\\mid B\]=\\begin{bmatrix} a\_1 & b\_1 & c\_1 & d\_1\\\\ a\_2 & b\_2 & c\_2 & d\_2\\\\ a\_3 & b\_3 & c\_3 & d\_3 \\end{bmatrix} $$

The vertical line `|` in the middle here is very important; it's reminding you of something.

*   The left side is the **coefficient**
    
*   The right side is the **constant on the right-hand side of the equation**.
    

Therefore, augmented matrices are not randomly pieced together, but rather pieced together with a clear meaning.

* * *

2\. Why write it this way?
--------------------------

Because the system of linear equations could originally be written like this:

$$ \\begin{cases} a\_1x+b\_1y+c\_1z=d\_1\\\\ a\_2x+b\_2y+c\_2z=d\_2\\\\ a\_3x+b\_3y+c\_3z=d\_3 \\end{cases} $$

Extracting the coefficients of the unknowns $$x, y, z$$ yields the coefficient matrix $$A$$. If we isolate the constants $$d\_1, d\_2, d\_3$$ on the right, we get the column vector $$B$$.

Therefore, this system of equations can be written in matrix form:

$$ A \\begin{bmatrix} x\\\\y\\\\z \\end{bmatrix}=B $$

The corresponding augmented matrix is:

$$ \[A\\mid B\] $$

Therefore, it can be understood as:

**"Matrix-based notation of linear equation systems"**

* * *

3\. What exactly is the use of augmented matrices?
--------------------------------------------------

Its greatest use is:

### Used to solve systems of linear equations

It is especially convenient when performing **Gaussian elimination** and **elementary transformations**.

Because you don't have to keep writing $$x, y, z$$, you can just perform row operations on the matrix.

for example:

$$ \\begin{cases} x + y + z = 6 \\\\2x-y+z=3 \\\\x + 2y - z = 2 \\end{cases} $$

Its augmented matrix is

$$ \\left\[ \\begin{array}{ccc|c} 1&1&1&6\\\\ 2&-1&1&3\\\\ 1&2&-1&2 \\end{array} \\right\] $$

Next, we can perform elimination on this matrix instead of repeatedly performing textual operations on the entire set of equations.

* * *

4\. Why is it called "enlargement"?
-----------------------------------

Since there was originally only a coefficient matrix $$A$$, now the constant column $$B$$ on the right side is **appended**, which is equivalent to "expanding" the matrix by one column.

so:

*   $$A$$ is the original coefficient matrix.
    
*   $$\[A\\mid B\]$$ is the "augmented" matrix.
    

“augmented” means “added to or expanded upon”.

* * *

5\. What situation does this writing style in the diagram correspond to?
------------------------------------------------------------------------

The diagram shows a 3×3 matrix $$A$$ and a 3×1 column vector $$B$$.

Therefore, the augmented result is a 3 x 4 matrix.

This usually corresponds to:

*   **3 equations**
    
*   **3 unknowns**
    

because:

*   3 lines: Represents 3 equations
    
*   The first 3 columns: represent the coefficients of the 3 unknowns.
    
*   Last column: Represents the constant terms on the right-hand side of each equation
    

* * *

6\. Let's look at it again from the perspective of a "system of equations".
---------------------------------------------------------------------------

Augmented matrix

$$ \\left\[ \\begin{array}{ccc|c} a\_1&b\_1&c\_1&d\_1\\\\ a\_2&b\_2&c\_2&d\_2\\\\ a\_3&b\_3&c\_3&d\_3 \\end{array} \\right\] $$

It's essentially about compressing and recording the following system of equations:

$$ \\begin{cases} a\_1x+b\_1y+c\_1z=d\_1\\\\ a\_2x+b\_2y+c\_2z=d\_2\\\\ a\_3x+b\_3y+c\_3z=d\_3 \\end{cases} $$

Each row corresponds to an equation.

For example, the first line:

$$ \[a\_1 \\quad b\_1 \\quad c\_1\\mid d\_1\] $$

express:

$$ a\_1x+b\_1y+c\_1z=d\_1 $$

* * *

7\. The difference between augmented matrices and ordinary matrices
-------------------------------------------------------------------

A regular matrix simply stores numbers.

However, the numbers in the augmented matrix have a clear role:

*   First few columns: Coefficients of the unknowns
    
*   Last column: Constant terms
    

Therefore, augmented matrices are actually "semantic" matrices.

The last column, in particular, should not be confused with the preceding coefficient columns; this is why it is often written as...

$$ \[A\\mid B\] $$

Instead of simply writing it as a regular $$3\\times 4$$ matrix.

* * *

8\. A very important distinction: no solution, unique solution, infinitely many solutions
-----------------------------------------------------------------------------------------

After elimination, the augmented matrix can also help determine the solution of a system of equations.

for example:

### No solution

If after simplification...

$$ \\left\[ \\begin{array}{ccc|c} 1&0&0&2\\\\ 0&1&0&3\\\\ 0&0&0&1 \\end{array} \\right\] $$

The last line indicates:

$$ 0x+0y+0z=1 $$

That is

$$ 0=1 $$

This is impossible, therefore **there is no solution**.

* * *

### The only solution

If the left side can be simplified to obtain the identity matrix:

$$ \\left\[ \\begin{array}{ccc|c} 1&0&0&2\\\\ 0&1&0&-1\\\\ 0&0&1&4 \\end{array} \\right\] $$

That means:

$$ x=2, y=-1, z=4 $$

Therefore, there is a **unique solution**.

* * *

### Infinitely many solutions

If there are free variables after simplification, for example:

$$ \\left\[ \\begin{array}{ccc|c} 1&0&2&3\\\\ 0&1&-1&4\\\\ 0&0&0&0 \\end{array} \\right\] $$

This shows that the equations are not contradictory, but the constraints are insufficient, there are free variables, and therefore **infinitely many solutions**.

* * *

9\. One-sentence summary
------------------------

An augmented matrix is ​​a matrix formed by combining the coefficient matrix and the constant column on the right-hand side of a system of linear equations. It is primarily used for Gaussian elimination and solving systems of linear equations.

The notation is:

$$ \[A\\mid B\] $$

in:

*   $$A$$: Coefficient matrix
    
*   $$B$$: Constant column vector
    

* * *

10\. You can think of it as a "packaged system of equations".
-------------------------------------------------------------

Originally, I was supposed to write:

$$ \\begin{cases} a\_1x+b\_1y+c\_1z=d\_1\\\\ a\_2x+b\_2y+c\_2z=d\_2\\\\ a\_3x+b\_3y+c\_3z=d\_3 \\end{cases} $$

Now packaged as:

$$ \\left\[ \\begin{array}{ccc|c} a\_1&b\_1&c\_1&d\_1\\\\ a\_2&b\_2&c\_2&d\_2\\\\ a\_3&b\_3&c\_3&d\_3 \\end{array} \\right\] $$

This makes it more suitable for "mechanized" elimination calculations.

* * *

We will directly use a specific 3×3 integer equation system to go through the entire process of "how to use augmented matrices".

* * *

Example: Rewrite the system of equations as an augmented matrix and solve it.
=============================================================================

Consider the system of equations

$$ \\begin{cases} x + y + z = 6\\\\ 2x-y+z=3\\\\ x + 2y - z = 2 \\end{cases} $$

* * *

1) First write out the coefficient matrix, the unknown vector, and the constant vector.
---------------------------------------------------------------------------------------

This system of equations can be written as follows:

$$ A\\mathbf{x}=\\mathbf{b} $$

in

$$ A= \\begin{bmatrix} 1&1&1\\\\ 2&-1&1\\\\ 1&2&-1 \\end{bmatrix}, \\qquad \\mathbf{x}= \\begin{bmatrix} x\\\\y\\\\z \\end{bmatrix}, \\qquad \\mathbf{b}= \\begin{bmatrix} 6\\\\3\\\\2 \\end{bmatrix} $$

Therefore, the augmented matrix is...

$$ \[A\\mid \\mathbf b\]=\\left\[ \\begin{array}{ccc|c} 1&1&1&6\\\\ 2&-1&1&3\\\\ 1&2&-1&2 \\end{array} \\right\] $$

Each line here corresponds to an equation:

*   First line: $$x+y+z=6$$
    
*   Second line: $$2x-y+z=3$$
    
*   Third line: $$x + 2y - z = 2$$
    

* * *

2) Start performing row transformations
=======================================

Our goal is to transform the left side into an upper triangle, or even into a unit matrix.

First, remember these three lines:

$$ R\_1=(1,1,1\\mid 6) $$

$$ R\_2=(2,-1,1\\mid 3) $$

$$ R\_3=(1,2,-1\\mid 2) $$

* * *

Step 1: Eliminate the numbers at the bottom of the first column

### Using $$R\_2-2R\_1$$

Since the first item in the second row is 2, we want to change it to 0:

$$ R\_2\\leftarrow R\_2-2R\_1 $$

calculate:

$$ (2,-1,1\\mid 3)-2(1,1,1\\mid 6) $$

First calculate $$2R\_1$$:

$$ 2R\_1=(2,2,2\\mid 12) $$

so

$$ R\_2=(2,-1,1\\mid 3)-(2,2,2\\mid 12)=(0,-3,-1\\mid -9) $$

* * *

### Using $$R\_3-R\_1$$

$$ R\_3\\leftarrow R\_3-R\_1 $$

calculate:

$$ (1,2,-1\\mid 2)-(1,1,1\\mid 6)=(0,1,-2\\mid -4) $$

* * *

Therefore, the matrix becomes:

$$ \\left\[ \\begin{array}{ccc|c} 1&1&1&6\\\\ 0&-3&-1&-9\\\\ 0&1&-2&-4 \\end{array} \\right\] $$

* * *

Step 2: Eliminate the numbers at the bottom of the second column

The pivot element is now located in the second row and second column, -3.

To eliminate the 1 in the second item of the third row, we can do the following:

$$ R\_3\\leftarrow 3R\_3+R\_2 $$

Because the second item in the third row is 1, and the second item in the second row is -3, therefore

$$ 3\\cdot 1+(-3)=0 $$

First calculate:

$$ 3R\_3=3(0,1,-2\\mid -4)=(0,3,-6\\mid -12) $$

Add $$R\_2$$:

$$ (0,3,-6\\mid -12)+(0,-3,-1\\mid -9)=(0,0,-7\\mid -21) $$

so

$$ R\_3=(0,0,-7\\mid -21) $$

The matrix now becomes:

$$ \\left\[ \\begin{array}{ccc|c} 1&1&1&6\\\\ 0&-3&-1&-9\\\\ 0&0&-7&-21 \\end{array} \\right\] $$

This is already an upper triangle.

* * *

3) Back-substitution solution
=============================

Now we'll start solving from the third row upwards.

* * *

Third row
---------

$$ -7z=-21 $$

so

$$ z=3 $$

* * *

Second line
-----------

The second line indicates:

$$ -3y-z=-9 $$

Substitute $$z=3$$ into the equation:

$$ -3y-3=-9 $$

$$ -3y=-6 $$

$$ y=2 $$

* * *

First row
---------

The first line indicates:

$$ x + y + z = 6 $$

Substituting y=2, z=3:

$$ x + 2 + 3 = 6 $$

$$ x + 5 = 6 $$

$$ x=1 $$

* * *

4) Finally, the solution is obtained.
=====================================

$$ x=1, y=2, z=3 $$

Therefore, the solution to the system of equations is...

$$ \\begin{bmatrix} x\\\\y\\\\z \\end{bmatrix}=\\begin{bmatrix} 1\\\\2\\\\3 \\end{bmatrix} $$

* * *

5) Why are augmented matrices so convenient?
============================================

Because you will find:

We hardly need to write throughout the entire process.

$$ x + y + z = 6 $$

This is a complete equation, but it only manipulates numerical tables:

$$ \\left\[ \\begin{array}{ccc|c} 1&1&1&6\\\\ 2&-1&1&3\\\\ 1&2&-1&2 \\end{array} \\right\] $$

This is the greatest value of augmented matrices:

*   Organize the system of equations into a uniform format
    
*   Convenient for performing elementary row transformations
    
*   Convenient for determining whether there is a solution, no solution, unique solution, or infinitely many solutions.
    

* * *

6) Understanding it from the perspective of "row transformations"
=================================================================

The transformation I just made:

$$ R\_2\\leftarrow R\_2-2R\_1 $$

Actually, it corresponds to:

"The second equation minus twice the first equation"

This will not change the solution set of the system of equations.

same,

$$ R\_3\\leftarrow R\_3-R\_1 $$

correspond:

"Subtract the first equation from the third equation"

It will not change the solution.

so:

Row operations change the way a system of equations is written, but do not change its solution.

This is the fundamental reason why Gaussian elimination works.

* * *

7) Take another step forward: simplify to the simplest form.
============================================================

We just stopped at the upper triangle, but we can actually simplify it further into a more standard form.

from

$$ \\left\[ \\begin{array}{ccc|c} 1&1&1&6\\\\ 0&-3&-1&-9\\\\ 0&0&-7&-21 \\end{array} \\right\] $$

start.

* * *

First divide the third row by -7.

$$ R\_3\\leftarrow -\\frac17 R\_3 $$

get

$$ \\left\[ \\begin{array}{ccc|c} 1&1&1&6\\\\ 0&-3&-1&-9\\\\ 0&0&1&3 \\end{array} \\right\] $$

* * *

Eliminate the numbers in the third column
-----------------------------------------

The second line contains -1, so do:

$$ R\_2\\leftarrow R\_2+R\_3 $$

have to

$$ (0,-3,-1\\mid -9)+(0,0,1\\mid 3)=(0,-3,0\\mid -6) $$

The first line contains 1, so do:

$$ R\_1\\leftarrow R\_1-R\_3 $$

have to

$$ (1,1,1\\mid 6)-(0,0,1\\mid 3)=(1,1,0\\mid 3) $$

Therefore, it becomes:

$$ \\left\[ \\begin{array}{ccc|c} 1&1&0&3\\\\ 0&-3&0&-6\\\\ 0&0&1&3 \\end{array} \\right\] $$

* * *

Convert the second line to pivot (1)
------------------------------------

$$ R\_2\\leftarrow -\\frac13 R\_2 $$

get

$$ \\left\[ \\begin{array}{ccc|c} 1&1&0&3\\\\ 0&1&0&2\\\\ 0&0&1&3 \\end{array} \\right\] $$

* * *

Eliminate the 1 at the top of the second column
-----------------------------------------------

$$ R\_1\\leftarrow R\_1-R\_2 $$

have to

$$ (1,1,0\\mid 3)-(0,1,0\\mid 2)=(1,0,0\\mid 1) $$

Finally obtained

$$ \\left\[ \\begin{array}{ccc|c} 1&0&0&1\\\\ 0&1&0&2\\\\ 0&0&1&3 \\end{array} \\right\] $$

This directly means:

$$ x=1, y=2, z=3 $$

* * *

8) What can you remember from this example?
===========================================

When you see an augmented matrix, you can immediately think of these points:

### First

$$ \[A\\mid b\] $$ It consists of a "coefficient matrix + constant column".

### second

Each row corresponds to one equation.

### third

Performing row operations on an augmented matrix is ​​equivalent to performing an equivalent transformation on a system of equations.

### fourth

After simplifying it, the solution can be seen directly.

* * *

9) A visual analogy
===================

The augmented matrix can be viewed as:

*   Left side: The "Rules" section of the question.
    
*   Right side: The "Results" section of the question.
    

For example

$$ x + y + z = 6 $$

The $$1,1,1$$ on the left tells you how the variables are combined. The 6 on the right tells you what the combination equals.

An augmented matrix is ​​a way to compress and store this information line by line.

* * *

Why do row operations on augmented matrices not change the solution?

This is actually answering:

Why is Gaussian elimination legal?

This explains why, even after repeatedly "transforming" the original system of equations, the final solution obtained is still the solution to the original system of equations.

* * *

1\. Let's state the conclusion first.
=====================================

The three basic row operations performed on the augmented matrix do not change the solution set of the system of equations.

These three transformations are:

1.  **Swap the two lines**
    
2.  **Multiply a row by a non-zero constant**
    
3.  **Add a certain multiple of one row to another row**
    

They do not change "which $$(x,y,z,\\dots)$$ are solutions", they only change how the system of equations is written.

* * *

2\. Why should we understand it from the perspective of "systems of equations"?
===============================================================================

Because each row of the augmented matrix essentially represents an equation.

For example, augmented matrix

$$ \\left\[ \\begin{array}{cc|c} 1 & 2 & 5\\\\ 3 & -1 & 4 \\end{array} \\right\] $$

Corresponding system of equations

$$ \\begin{cases} x + 2y = 5\\\\ 3x-y=4 \\end{cases} $$

Therefore, performing a "row transformation" on a matrix is ​​essentially performing a transformation on the equation.

It is valid as long as the transformation does not change the solution set.

* * *

3\. First method: Swap two rows, why doesn't this change the solution?
======================================================================

For example:

$$ \\begin{cases} x + 2y = 5\\\\ 3x-y=4 \\end{cases} $$

If we swap the two lines, it becomes

$$ \\begin{cases} 3x-y=4\\\\ x + 2y = 5 \\end{cases} $$

This, of course, does not change the solution.

Because if a solution satisfies both of the original equations... Then it must also satisfy the two equations after changing the order.

* * *

Essence
-------

This is like saying:

*   "Do question A first, then do question B."
    
*   And "Do question B first, then do question A"
    

The order of the questions has changed, but the content remains the same.

Therefore, the solution set remains unchanged.

* * *

4\. Second type: Why doesn't multiplying a row by a non-zero constant change the solution?
==========================================================================================

For example, equations

$$ x + 2y = 5 $$

If the entire row is multiplied by 3, we get...

$$ 3x + 6y = 15 $$

The solutions to these two equations are exactly the same.

because:

If $$x$$ and $$y$$ satisfy $$x + 2y = 5$$, multiplying both sides by 3 gives $$3x + 6y = 15$$. Conversely, if $$x$$ and $$y$$ satisfy $$3x + 6y = 15$$, dividing both sides by 3 gives $$x + 2y = 5$$.

Therefore, they are **equivalent equations**.

* * *

Why is a "non-zero constant" required?
--------------------------------------

Because if multiplied by 0:

$$ x + 2y = 5 \\quad \\longrightarrow \\quad 0=0 $$

There were constraints before, but after multiplication, the constraints disappeared, so the solution set naturally changed.

Therefore, it can only be multiplied by **non-zero constants**.

* * *

5\. The third type: adding a certain multiple of one row to another, why not change the solution?
=================================================================================================

This is the most crucial one.

For example, the original system of equations:

$$ \\begin{cases} x + 2y = 5\\\\ 3x-y=4 \\end{cases} $$

Now replace the second equation with:

$$ (\\text{second equation})-3\\times(\\text{first equation}) $$

That is to say:

$$ (3x-y)-3(x+2y)=4-3\\cdot 5 $$

Simplifying, we get:

$$ -7y=-11 $$

Therefore, the new system of equations becomes:

$$ \\begin{cases} x + 2y = 5\\\\ -7y=-11 \\end{cases} $$

Why didn't the solution change?

* * *

First, consider the statement "The original solution must be a new solution".

If $$(x,y)$$ satisfies the original system of equations, then it satisfies:

$$ x + 2y = 5, 3x - y = 4 $$

Since it satisfies these two equations, it must also satisfy:

$$ (3x-y)-3(x+2y)=4-15 $$

Right now

$$ -7y=-11 $$

Therefore, any solution to the original system of equations is also a solution to the new system of equations.

* * *

Let's look at "The new solution must be the original solution" again.
---------------------------------------------------------------------

The new system of equations is:

$$ \\begin{cases} x + 2y = 5\\\\ -7y=-11 \\end{cases} $$

But the second equation is actually from...

$$ (3x-y)-3(x+2y)=4-15 $$

Obtained.

If a $$(x,y)$$ satisfies:

$$ x + 2y = 5 \\quad \\text{and} \\quad (3x-y)-3(x+2y)=-11 $$

Substituting the first equation into the second equation will restore the original second equation:

$$ (3x-y)-3\\cdot 5=-11 $$

$$ 3x-y=4 $$

Therefore, it also satisfies the original system of equations.

* * *

Therefore, the solution sets on both sides are the same.

This shows that:

Adding a certain number of times to one row of another is essentially just rearranging the information in the original system of equations; it does not add new conditions nor lose old ones.

* * *

6\. Let's see it more clearly with a simple numerical example.
==============================================================

Look at this system of equations:

$$ \\begin{cases} x+y=3\\\\ x-y=1 \\end{cases} $$

Its solution is

$$ x=2, y=1 $$

Now perform a row transformation:

$$ R\_2\\leftarrow R\_1+R\_2 $$

The second line becomes:

$$ (x+y)+(x-y)=3+1 $$

Right now

$$ 2x=4 $$

Therefore, the new system of equations is:

$$ \\begin{cases} x+y=3\\\\ 2x=4 \\end{cases} $$

The solution remains:

$$ x=2, y=1 $$

Because you didn't introduce "new independent constraints," you just rewrote the original two constraints.

* * *

7\. Understanding from a geometric perspective of "intersection points"
=======================================================================

In two dimensions, a linear equation typically represents a straight line.

For example:

$$ x+y=3 $$ It is a straight line.

$$ xy=1 $$ It is also a straight line.

The solution to the system of equations is the intersection of these two lines.

Now perform a row transformation:

$$ R\_2\\leftarrow R\_1+R\_2 $$

become:

$$ 2x=4 $$

That is

$$ x=2 $$

This is yet another new straight line.

Although the second line has changed, it is a combination of the first two equations, and it still passes through the original intersection point $$(2,1)$$.

Moreover, as long as both lines of the new system are satisfied at the same time, the original system can definitely be deduced.

so:

*   The way straight lines are represented has changed.
    
*   But the common intersection point remains unchanged.
    

This is the geometric intuition of "solution invariance".

* * *

8\. To put it more precisely in matrix language
===============================================

Let the original augmented matrix be

$$ \[A\\mid b\] $$

Performing an elementary row operation on it is equivalent to left-multiplying it by an elementary matrix $$E$$:

$$ \[A\\mid b\]\\quad \\longrightarrow \\quad \[EA\\mid Eb\] $$

The corresponding system of equations is:

$$ Ax=b \\quad \\longrightarrow \\quad EAx=Eb $$

That is

$$ E(Ax) = Eb $$

If $$x$$ is a solution to the original equation, i.e., $$Ax=b$$, then multiplying both sides by $$E$$ on the left will necessarily yield the following:

$$ EAx=Eb $$

Conversely, since elementary matrices $$E$$ are always invertible, and can be derived from...

$$ EAx=Eb $$

Multiplying both sides by $$E^{-1}$$ on the left, we get

$$ Ax=b $$

so:

$$ Ax=b \\iff EAx=Eb $$

The solution sets are exactly the same.

This is the simplest and most standard theoretical explanation.

* * *

9\. Why can we finally return to our parents' home with peace of mind?
======================================================================

Because Gaussian elimination preserves the solution set at every step.

so:

Original system of equations The system of equations after the first step of transformation The system of equations after the second step of transformation. $$\\longleftrightarrow\\cdots\\longleftrightarrow$$ The final upper triangular system of equations

Since each step does not change the solution, the final solution is naturally the solution to the initial system of equations.

* * *

10\. Grasp the essence in one sentence
======================================

**Row transformations do not change the solution because they are all equivalent rewrites of the original system of equations: rearranging the equations, scaling a single equation proportionally, or using one equation to eliminate certain terms in another.**

They neither create new information nor lose old information.

* * *

11\. You can memorize it this way.
==================================

When you see line transformations, remember these three sentences:

*   **Swapping two lines:** This simply changes the order of the equations.
    
*   **Multiplying a non-zero constant in a single line:** This simply rewrites the same equation.
    
*   **Adding one row to another multiple of another**: This simply recombines existing equations.
    

Therefore, **the wording has changed, but the solution remains the same.**

---

*Originally published on [sonadorje](https://paragraph.com/@sonadorje/what-is-an-augmented-matrix)*
