Emphasis added
Ray Vickson said:
You are trying to read way too much into things that have no importance, and it is getting in the way of your learning the subject.
I agree completely.
fonseh said:
So , just follow these steps will be enough ?
1) interchanging rows to get the the max a11 ,
2) 1) make the element below the a11 (a21 and a31) equal to 0
3) Interchanging the rows to get max a22
4) 2)make the element below a22 = 0
You do the above at each pivot row, moving across the matrix column by column.
Here's a simple system as an example.
x + y + z = 6
2x -z = -1
x + z = 4
As an augmented matrix this system is
##\begin{bmatrix} 1 & 1 & 1 & | & 6\\
2 & 0 & -1 & | & -1 \\
1 & 0 & 1 & | & 4 \end{bmatrix}##
Replace R2 by -2* R1 + R2:
##\begin{bmatrix} 1 & 1 & 1 & | & 6\\
0 & -2 & -3 & | & -13 \\
1 & 0 & 1 & | & 4 \end{bmatrix}##
Now replace R3 by -1 * R1 + R3:
##\begin{bmatrix} 1 & 1 & 1 & | & 6\\
0 & -2 & -3 & | & -13 \\
0 & -1 & 0 & | & -2 \end{bmatrix}##
The pivot was the a
1,1 entry. I used it to eliminate the entries below it in the 2nd and 3rd rows.
To save some time I could swap rows 2 and 3 for a reason I'll explain later.
Swap R2 and R3:
##\begin{bmatrix} 1 & 1 & 1 & | & 6\\
0 & -1 & 0 & | & -2\\
0 & -2 & -3 & | & -13 \end{bmatrix}##
Replace R2 by -1 times itself
##\begin{bmatrix} 1 & 1 & 1 & | & 6\\
0 & 1 & 0 & | & 2\\
0 & -2 & -3 & | & -13 \end{bmatrix}##
The second row tells me that y = 2, and this is why I swapped R2 and R3.
Replace R3 by 2 * R2 + R3:
##\begin{bmatrix} 1 & 1 & 1 & | & 6\\
0 & 1 & 0 & | & 2\\
0 & 0 & -3 & | & -9 \end{bmatrix}##
Finally, replace R3 by -1/3 * R3:
##\begin{bmatrix} 1 & 1 & 1 & | & 6\\
0 & 1 & 0 & | & 2\\
0 & 0 & 1 & | & 3 \end{bmatrix}##
Notice that I used
only the three row operations I mentioned in my earlier post, nothing more.
This matrix is now in reduced echelon form, with each row having a leading entry of 1, and every row with a leading 1 has 0 entries below it. The second row tells me that y = 2. The third row tells me that z = 3. By substituting these values into the equation represented by the first row (x + y + z = 6), I can determine that x = 1.
The solution to the system of equations is x = 1, y = 2, z = 3, which you can check by substituting into the original system of equations.