This page has been moved to teche0023.html
There exists an inverse matrix of A when detA=ad-bc0, and it is
There exists an inverse matrix of A when
detA=a11a22a33+a21a32a13+a31a12a23-a11a32a23-a31a22a13-a21a12a33
0, and it is
If
then there exists an inverse matrix of A, and it is
where
From the analogy of the above formulae, the computation time of inverse matrix of NxN matrix will be O(N3N!). Computing inverse matrix with Gauss-Jordan method, the method using LU decomposition, and the method using SVD, will take a computation time of O(N3) (not confident). I will recommend not to use the formula for calculating inverse matrix of NxN matrix which N >= 4.