sqrtdet
Sqrtdet is shorthand for the square root of the determinant of a square matrix, commonly written as sqrt(det(A)) for a matrix A. When A is symmetric positive semidefinite (or positive definite), det(A) is nonnegative and sqrt(det(A)) is a real, nonnegative quantity. In terms of eigenvalues, if the eigenvalues λ1, λ2, ..., λn of A are all nonnegative, then sqrt(det(A)) = ∏i sqrt(λi). Equivalently, if A = L L^T is a Cholesky factorization with L lower triangular, then sqrt(det(A)) equals the product of the diagonal elements of L, i.e., sqrt(det(A)) = ∏i Lii.
Computationally, directly computing det(A) can be numerically unstable or expensive. A common approach is to use
Applications of sqrtdet appear in probability densities and statistical models that involve normalizing constants. For example,