Det(M) = Determinate of matrix M:
Computes the determinant, a scalar, of the square matrix M. The determinant is zero iff the matrix is singular.
One way to compute Det(A) of a square matrix A:
If (A.m == 1), Det(A) = a11
else If (A.m == 2), Det(A) = a11 * a22 − a12 * a21
else
compute Decomp(A) = The LU decomposition of matrix A.
Det(A) = the product of the diagonal elements of Decomp(A).
Return to Matrix and Polynomial Computations
Return to Harry's Home Page