Open In App

Triangular Matrix

Last Updated : 18 Feb, 2024
Improve
Improve
Like Article
Like
Save
Share
Report

A matrix is defined as a rectangular array of numbers that are arranged in rows and columns. The size of a matrix can be determined by the number of rows and columns in it. A matrix is said to be an “m by n” matrix when it has “m” rows and “n” columns and is written as an “m × n” matrix. For example, a matrix of order “5 × 6” has five rows and six columns. We have different types of matrices, such as rectangular, square, triangular, symmetric, singular, etc.

What is a Triangular Matrix?

A triangular matrix is a special case of a square matrix, where all elements above or below the principal diagonal are zeros. An upper triangular matrix is a square matrix, whose all elements below the principal diagonal are zeros. A lower triangular matrix is a square matrix, whose all elements above the principal diagonal are zeros. The matrices in the image given below are upper triangular and lower triangular matrices of order “4 × 4.”

Triangular Matrix

Types of Triangular Matrices

There are different types of matrices which are discussed below in this article:

  • Upper Triangular Matrix: An upper triangular matrix is a square matrix, whose all elements below the principal diagonal are zeros.

[Tex]U = \left[\begin{array}{ccc} a & b & c\\ 0 & d & e\\ 0 & 0 & f \end{array}\right] [/Tex]

  • Lower Triangular Matrix:  A lower triangular matrix is a square matrix, whose all elements above the principal diagonal are zeros.

[Tex]L = \left[\begin{array}{ccc} 1 & 0 & 0\\ 2 & 3 & 0\\ 4 & 5 & 6 \end{array}\right] [/Tex]

  • Strictly Triangular Matrix: A triangular matrix is referred to as a strictly triangular matrix if all the elements of the principal diagonal are zero.
  • Strictly Lower Triangular Matrix: A lower triangular matrix is referred to as a strictly lower triangular matrix if all the elements of the principal diagonal are zero.

[Tex]A = \left[\begin{array}{ccc} 0 & 0 & 0\\ p & 0 & 0\\ q & r & 0 \end{array}\right] [/Tex]

  • Strictly Upper Triangular Matrix: An upper triangular matrix is referred to as a strictly upper triangular matrix if all the elements of the principal diagonal are zero.

[Tex]B = \left[\begin{array}{ccc} 0 & 12 & -7\\ 0 & 0 & 9\\ 0 & 0 & 0 \end{array}\right] [/Tex]

  • Unit Triangular Matrix: A triangular matrix is referred to as a unit triangular matrix if all the elements of the principal diagonal are one.
  • Unit Lower Triangular Matrix: A lower triangular matrix is referred to as a unit lower triangular matrix if all the elements of the principal diagonal are one.

[Tex]P = \left[\begin{array}{ccc} 1 & 0 & 0\\ 2 & 1 & 0\\ 5 & 6 & 1 \end{array}\right] [/Tex]

  • Unit Upper Triangular Matrix: An upper triangular matrix is referred to as a unit upper triangular matrix if all the elements of the principal diagonal are one.

[Tex]Q = \left[\begin{array}{ccc} 1 & 21 & 19\\ 0 & 1 & 17\\ 0 & 0 & 1 \end{array}\right] [/Tex]

Upper Triangular Matrix

An upper triangular matrix is a square matrix, whose all elements below the principal diagonal are zeros. A square matrix “A = [aij]” is said to be an upper triangular matrix when aij = 0 for all i > j.

If Un,n is a square matrix of order “n × n” and uij represents an element in the ith row and jth column of the given matrix, then

[Tex]U_{n,n} = \left\{ \begin{array}{c} u_{ij},fori\leq j\\ 0,fori>j \end{array}\right\}  [/Tex]

Examples of Upper Triangular Matrix

The matrix given below is an upper triangular matrix of order “2 × 2.” We can see that the elements below the principal diagonal are zeros.

[Tex]U_{2,2} = \left[\begin{array}{cc} 13 & 9\\ 0 & 7 \end{array}\right] [/Tex]

The matrix given below is an upper triangular matrix of order “3 × 3.”

[Tex]U_{3,3} = \left[\begin{array}{ccc} 3 & -8 & 6\\ 0 & 5 & 11\\ 0 & 0 & 4 \end{array}\right] [/Tex]

Lower Triangular Matrix

A lower triangular matrix is a square matrix whose all elements above the principal diagonal are zeros. A square matrix “A = [aij]” is said to be a lower triangular matrix when aij = 0 for all i < j.

If L is a square matrix of order “n × n” and lij represents an element in the ith row and jth column of the given matrix, then the condition for the given matrix to be a lower triangular matrix is given as follows:

If L is a square matrix of order “n × n” and lij represents an element in the ith row and jth column of the given matrix, then the condition for the given matrix to be a lower triangular matrix is given as follows:

 [Tex]L = \left\{ \begin{array}{c} l_{ij},fori\geq j\\ 0,fori<j \end{array}\right\}  [/Tex]

Examples of Lower Triangular Matrix

The matrix given below is a lower triangular matrix of order “2 × 2.”

[Tex]L = \left[\begin{array}{cc} 1 & 0\\ 3 & 5 \end{array}\right] [/Tex]

The matrix given below is a lower triangular matrix of order “3 × 3.” We can see that the elements above the principal diagonal are zeros.

[Tex]L_{3,3} = \left[\begin{array}{ccc} 4 & 0 & 0\\ 7 & 9 & 0\\ -5 & 3 & 11 \end{array}\right] [/Tex]

Properties of a Triangular Matrix

Various properties of the Triangular Matrix are discussed below in this article:

  • The transpose of an upper triangular matrix is a lower triangular matrix, i.e., UT = L, and the transpose of a lower triangular matrix is an upper triangular matrix, i.e., LT = U.
  • The determinant of a triangular matrix of any order is equal to the product of the principal diagonal elements.
  • The inverse of a triangular matrix will also be a triangular matrix.
  • A triangular matrix is invertible if and only if all elements of the principal diagonal are non-zero.
  • When two triangular matrices are multiplied, the resultant matrix is also triangular.
  • When two upper (lower) triangular matrices are multiplied, the resultant matrix is also an upper (lower) triangular matrix.
  • When two upper (lower) triangular matrices are added, the resultant matrix is also an upper (lower) triangular matrix.

Also, Check

Solved Examples on Triangular Matrix

Example 1: Calculate the determinant of the matrix given below.

[Tex]A = \left[\begin{array}{ccc} 1 & 3 & -4\\ 0 & 7 & 0\\ 0 & 0 & 8 \end{array}\right] [/Tex]

Solution:

We can notice that the given matrix is an upper triangular matrix.

We know that the determinant of an upper triangular matrix of any order is equal to the product of the principal diagonal elements.

So, |A| = 1 × 7 × 8 = 56

Hence, the determinant of the given matrix is 56.

Example 2: Prove the inverse of the inverse of a lower triangular matrix will also be a lower triangular matrix.

Solution:

Let us consider a lower triangular matrix of order “2 × 2,” to prove the inverse of the inverse of a lower triangular matrix will also be a lower triangular matrix.

[Tex]L = \left[\begin{array}{cc} 5 & 0\\ -7 & 8 \end{array}\right] [/Tex]

L-1 = Adj L/ |L|

|L| = 5 × 8 
    = 40

[Tex]Adj L = \left[\begin{array}{cc} 8 & 0\\ 7 & 5 \end{array}\right] [/Tex]

[Tex]L^{-1} = \frac{1}{40} \left[\begin{array}{cc} 8 & 0\\ 7 & 5 \end{array}\right] [/Tex]

We can see the inverse matrix is also a lower triangular matrix.

Hence, proved.

Example 3: Prove that the transpose of an upper triangular matrix is a lower triangular matrix.

Solution:

To prove that the transpose of an upper triangular matrix is a lower triangular matrix, let us consider an upper triangular matrix.

[Tex]U = \left[\begin{array}{ccc} a & b & c\\ 0 & d & e\\ 0 & 0 & f \end{array}\right] [/Tex]

Now, [Tex]U^{T} = \left[\begin{array}{ccc} a & 0 & 0\\ b & d & 0\\ c & e & f \end{array}\right] [/Tex]

We can notice that the resultant matrix is a lower triangular matrix.

Hence proved.

Example 4: Find the values of “a” and “b” in the given matrix P, if P is a unit lower triangular matrix.

[Tex]P = \left[\begin{array}{cc} 2a+5 & 0\\ 5 & 3b-2 \end{array}\right] [/Tex]

Solution:

We know that a lower triangular matrix is referred to as a unit lower triangular matrix if all the elements of the principal diagonal are one.

So, 2a + 5 = 1 

2a = 1 − 5 = −4

a = −4/2 = −2

3b − 2 = 1

3b = 1 + 2 = 3

b = 3/3 
   = 1

Hence, the values of “a” and “b” are −2 and 1 respectively.

FAQs on Triangular Matrix

Question 1: What is meant by a triangular matrix?

Answer:

A triangular matrix is a special case of a square matrix where all elements above or below the principal diagonal are zeros. 

Question 2: What is an upper triangular matrix?

Answer:

An upper triangular matrix is a square matrix, whose all elements below the principal diagonal are zeros. A square matrix “A = [aij]” is said to be an upper triangular matrix when aij = 0 for all i > j.

Question 3: What is the determinant of an upper triangular matrix?

Answer:

The determinant of an upper triangular matrix of any order is equal to the product of the principal diagonal elements.

Question 4: What is meant by a lower triangular matrix?

Answer:

A lower triangular matrix is a square matrix, whose all elements above the principal diagonal are zeros.

Question 5: What is the transpose of a unit upper triangular matrix?

Answer:

An upper triangular matrix is referred to as a unit upper triangular matrix if all the elements of the principal diagonal are one.



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads