What is the best algorithm to find a determinant of a matrix?

前端 未结 4 720
梦如初夏
梦如初夏 2020-12-14 07:02

Can anyone tell me which is the best algorithm to find the value of determinant of a matrix of size N x N?

4条回答
  •  独厮守ぢ
    2020-12-14 07:11

    Here is an extensive discussion.

    There are a lot of algorithms.

    A simple one is to take the LU decomposition. Then, since

     det M = det LU = det L * det U
    

    and both L and U are triangular, the determinant is a product of the diagonal elements of L and U. That is O(n^3). There exist more efficient algorithms.

提交回复
热议问题