$$[A|I]=\left[\begin{array}{ccc|ccc} a_{11} & ... & a_{1n} & 1 & ... & 0 \\ \vdots & \ddots & \vdots & \vdots & \ddots & \vdots\\ a_{n1} & ... & a_{nn} & 0 & ... & 1\end{array}\right]$$
Lets take the augmented system. All rows operation that will do in $A$ you do $I$ in order to transform $A$ in $I$
Perform $L_i=a_{11}L$ and $L_i=L_i-\frac{L_i}{a_{11}}$ for $i=2, \ldots,n$. This will change the matrix, since all elements below the $a_{11}$ will be zero.
Now you want to create zeros below the therm $a_{22}$ of A.
Doing the same process, $L_i=\frac{L_i}{a_{22}}$ and $L_i=L_i-\frac{L_i}{a_{22}}$ for $i=3, \ldots, n$ you will zero below the $a_{22}$. If you continue this process you will have a upper matrix in right hand of aumentad matrix and the leaf is begin to start to show your $A^{-1}$.
I so much thing to write, after this you must create zeros above the diagonal. An finally you just divide by diagonal element. Its will create $[I|A^{-1}]$.
You will see, all elements are positive. You understand? if not, i can shown you by skype. Try see this.
$|a_{ii}| > \sum \limits_{j \neq i} |a_{ij}|$
For all rows $i$.
– Adam O'Brien Oct 14 '14 at 03:27