Gaussian elimination is a method in which an augmented matrix is subjected to row operations until the component corresponding to the coefficient matrix is reduced to triangular form.
After we have obtained our triangular matrix, there are two different approaches we can use to solve a system of linear equations:
The procedure of solving a system of linear algebraic equations (SLAE) with a lower triangular coefficient matrix is known as forward substitution. Solving an SLAE with a triangular matrix form is a variant of the generic substitution approach.
The matrix form of a lower triangle:
The visualization shows how forward substitution works. The method transforms the matrix into a lower triangular form and then starts solving an equation from top to bottom.
The procedure of solving an SLAE with an upper triangular coefficient matrix is known as back substitution.
The matrix form of an upper triangle:
It shows how the backward substitution works. The method transforms the matrix into an upper triangular form and then starts solving an equation from bottom to top.
Free Resources