Inverse matrix of 2-by-2 matrix, 3-by-3
matrix, 4-by-4 matrix
Inverse matrices of 2-by-2 matrix, 3-by-3 matrix, 4-by-4 matrix are shown
here.
Inverse matrix of 2 $\times$ 2 matrix
There exists an inverse matrix of
when
, and it is
Inverse matrix of 3 $\times$ 3 matrix
There exists an inverse matrix of
when
, and it is
Inverse matrix of 4 $\times$ 4 matrix
If
then there exists an inverse matrix of
, and it is
where
Inverse matrix of NxN matrix
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.
Go back