In: Advanced Math
Can you explain in detail what Gaussian Elimination with pivoting is? and how is it different from Gaussian Elimination without pivoting?
A system of linear equations can be placed into matrix form. Each equation becomes a row and each variable becomes a column. An additional column is added for the right hand side.
The goal when solving a system of equations is to place the augmented matrix into reduced row-echelon form, if possible.
There are three elementary row operations that you may use to accomplish placing a matrix into reduced row-echelon form.
Each of the requirements of a reduced row-echelon matrix can satisfied using the elementary row operations.
All elements above and below a leading one are zero.
This is Gaussian Elimination with pivoting.
Gaussian elimination without pivoting is similar to Gaussian elimination with pivoting.
In this method the leading one or pivot element is not made 1 and the elements only below the pivots are made zero not above it as in the case of Gaussian elimination with pivoting and rest of the things are same as in the above method.