Given a non-singular matrix A , is it possible to find the inverse matrix $A^{-1}$ , using Gauss-Elimination , without using LU decomposition and without using Gauss-Jordan ?
I know that I can use LU decomposition and then apply Gauss-elimination on $L$ and $U$ , this would require :
Finding $L$ and $U$
Calculate $L*Y = e(i)$ , from here I'd get $Y$
Calculate $U*(current-column) = Y$ , from here I'd get each time the column
Or , I can use Gauss-Jordan method (without LU decomposition) where I put the $I$ matrix on the right of $A$ , and then use the Gauss-Jordan elimination .
Both ways works great, but , is it possible to calculate the inverse of $A$ only with Gauss-elimination , without LU ... ?
Regards