M HYPE SPLASH
// general

Determinant of lower triangular matrix

By Emily Wilson
$\begingroup$

Does a lower triangular matrix have a determinant that is equal to the product of the elements in the diagonal similar to an upper triangular matrix.

$\endgroup$ 2

1 Answer

$\begingroup$

The matrix looks like this: $$\begin{bmatrix} a_{1,1}&0&\cdots&\cdots&0 \\b_{1,2}&a_{2,2}&\ddots&&\vdots \\ \vdots&\ddots&\ddots&\ddots&\vdots \\ \vdots&&\ddots&\ddots&0 \\ b_{1,n}&\cdots&\cdots&b_{n-1,n}&a_{n,n} \end{bmatrix}$$The determinant can be written as the sum of the product of the elements in the top row with their associated minors: so this determinant would be: $$a_{1,1}*\begin{bmatrix} a_{2,2}&0&\cdots&0 \\b_{2,3}&a_{3,3}&\ddots&\vdots \\ \vdots&\ddots&\ddots&0 \\ b_{2,n}&\cdots&b_{n-1,n}&a_{n,n} \end{bmatrix}$$This action eliminates the first column, $b_{1,x}$ and we are left with a similar matrix to find the determinant of. Reducing this one likewise we are left with $a_{1,1}*a_{2,2}*$(a matrix of remaining rows and columns) and so on until we have the product $a_{1,1}*a_{2,2}*\cdots*a_{n,n}$. The product of the diagonal.

$\endgroup$ 2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy