Triangle property


Triangle Property in Determinants

The triangle property in the context of determinants refers to a characteristic of matrices that allows us to simplify the calculation of a determinant by transforming the matrix into an upper or lower triangular form. This property is particularly useful because the determinant of a triangular matrix (either upper or lower) is simply the product of its diagonal elements.

Understanding Triangular Matrices

Before delving into the triangle property, let's define what triangular matrices are:

  • Upper Triangular Matrix: A square matrix is called upper triangular if all the entries below the main diagonal are zero.
  • Lower Triangular Matrix: A square matrix is called lower triangular if all the entries above the main diagonal are zero.

Determinant of Triangular Matrices

For a triangular matrix, the determinant is calculated as follows:

For an upper triangular matrix ( U ):

[ \text{det}(U) = u_{11} \cdot u_{22} \cdot \ldots \cdot u_{nn} ]

For a lower triangular matrix ( L ):

[ \text{det}(L) = l_{11} \cdot l_{22} \cdot \ldots \cdot l_{nn} ]

where ( u_{ii} ) and ( l_{ii} ) are the diagonal elements of the upper and lower triangular matrices, respectively.

Triangle Property of Determinants

The triangle property states that the determinant of a square matrix remains unchanged if we perform elementary row operations that transform the matrix into a triangular form. There are three types of elementary row operations:

  1. Swapping two rows
  2. Multiplying a row by a non-zero scalar
  3. Adding a scalar multiple of one row to another row

However, it is important to note that while operations 2 and 3 do not change the determinant, operation 1 (swapping rows) will change the sign of the determinant.

Table of Effects on Determinant

Operation Effect on Determinant
Swapping two rows Changes the sign of the determinant
Multiplying a row by a scalar Multiplies the determinant by the scalar
Adding a multiple of one row to another Leaves the determinant unchanged

Examples

Example 1: Upper Triangular Matrix

Consider the upper triangular matrix:

[ U = \begin{bmatrix} 2 & 3 & 1 \ 0 & 1 & 4 \ 0 & 0 & 5 \end{bmatrix} ]

The determinant of ( U ) is:

[ \text{det}(U) = 2 \cdot 1 \cdot 5 = 10 ]

Example 2: Lower Triangular Matrix

Consider the lower triangular matrix:

[ L = \begin{bmatrix} 3 & 0 & 0 \ 2 & 1 & 0 \ 4 & 5 & 6 \end{bmatrix} ]

The determinant of ( L ) is:

[ \text{det}(L) = 3 \cdot 1 \cdot 6 = 18 ]

Example 3: Using Elementary Row Operations

Consider the matrix:

[ A = \begin{bmatrix} 1 & 2 & 3 \ 4 & 5 & 6 \ 7 & 8 & 9 \end{bmatrix} ]

To find the determinant using the triangle property, we can perform elementary row operations to convert it into an upper triangular matrix:

  1. Subtract 4 times the first row from the second row
  2. Subtract 7 times the first row from the third row
  3. Subtract the new second row from the new third row (after multiplying it by an appropriate scalar)

The transformed matrix ( U ) will be:

[ U = \begin{bmatrix} 1 & 2 & 3 \ 0 & -3 & -6 \ 0 & 0 & 0 \end{bmatrix} ]

The determinant of ( A ) is the same as the determinant of ( U ), which is:

[ \text{det}(A) = \text{det}(U) = 1 \cdot (-3) \cdot 0 = 0 ]

Conclusion

The triangle property is a powerful tool in linear algebra that simplifies the computation of determinants. By understanding and applying this property, one can efficiently calculate the determinant of a matrix, which is a fundamental concept in various applications, including solving systems of linear equations, finding eigenvalues, and more.