rajeshmarndi said:
I didn't understand what is the relation of the coefficient of the equations and their row operation(inverse) to get identity matrix.
I'm not certain what your question is. but perhaps this will help. If we have the two equations ax+ by= e, cx+ dy= f we can write that as the matrix equation
\begin{bmatrix}a & b \\ c & d \end{bmatrix}\begin{bmatrix}x \\ y \end{bmatrix}= \begin{bmatrix}e \\ f\end{bmatrix}
Do you understand that part? That is essentially saying that "Ax= b" where A, x, and b are those three matrices. One way to solve that equation is to find the multiplicative inverse of A, A^{-1}, and multiply both sides of the equation by that inverse: A^{1}Ax= x= A^{-1}b
The "augmented matrix" is just a short way of writing that matrix equation.
\begin{bmatrix}a & b & e \\ c & d & f\end{bmatrix}
Now, "row-operations" are one way to find the inverse of a matrix. The key is that every row operation corresponds to multiplying by a matrix- and we can get that matrix by applying the row operation to the identity matrix. In terms of 3 by 3 matrices, the row operation "add three times the second row to the first row" is
\begin{bmatrix} 1 & 3 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1\end{bmatrix}
See what happens when we multiply that matrix by a general matrix:
\begin{bmatrix}1 & 3 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1\end{bmatrix}\begin{bmatrix}a & b & c \\ d & e & f \\ g & h & i\end{bmatrix}= \begin{bmatrix}a+ 3d & b+ 3e & c+ 3f \\ d & e & f \\ g & h & i\end{bmatrix}
3 times the second row has been added to the first row!
So when you apply a series of row operations that reduce matrix A to the identity matrix that is the same as multiplying a series of matrices whose product is A^{-1}. When you apply those same row operations to the last column of the augmented matrix, the "b" in Ax+ b, you are multiplying b by A^{-1}