There are algorithms for inverting a matrix with better asymptotic complexity, for example, the Strassen algorithm with complexity O (n 2.807 ) and Coppersmith-Winograd with complexity O (n 2.376 ).
(Note that the complexity of matrix multiplication and matrix inversion is the same )
source
share