Gauss Method
Description
The Gauss elimination is a method for solving systems of linear equations of equations and unknowns:
Algorithm
- Represent the system as an augmented matrix
- Manipulate the rows to form an upper triangle matrix by:
- Swapping the positions of two rows.
- Multiplying a row by a non-zero scalar.
- Adding to one row a scalar multiple of another.
- Starting from the last equation (which is solved), substitute the value on the others to get the value of the other unknowns.