My code is
A.X=I (A is Lower Triangular Matrix as I mentioned above, X is Inverse of A, and we must find X, I is Identity Matrix corresponding).
(* Find elements of the first and the second columns*)
X[[1,1]]=1/A[[1,1]];
X[[2,2]]=1/A[[2,2]];
X[[2,1]]=-(A[[2,1]]*X[[1,1]]/A[[2,2]])...