They are basically equations in the form: a1x1 + a2x2 + ... + an xn = b.
xn is a variable whereas an is a constant (any number).
Example: 5x1 + 15x2 + 29x3 = 100.
Step 1: Draw equations in a graph
Step 2: Find intersection points of the equations
Let's say we got this set of linear equations:
x + y + 2z = 9
2x + 4y - 3z = 1
3x + 6y - 5z = 0
Won't it be cool to put it in a matrix like this?
Don't be confused.
We simply put the coefficients and the constants on the right hand side of the equations in the matrix.
Augmented matrix makes it easier to perform operations on an equation set as it filters out the variables and unifies the equations into one.
We need to perform 3 different operations on an augmented matrix to make our way towards the solution of any set of linear equations:
Example:
If we were to solve the set of equations from the last section:
x + y + 2z = 9
2x + 4y - 3z = 1
3x + 6y - 5z = 0
We'd have an augmented matrix out of it like this: