Summarize this article:
 130 Learners
130 LearnersLast updated on October 24, 2025

A matrix refers to a structured arrangement of numbers, symbols, or expressions in rows and columns. It is an important concept of mathematics, especially in linear algebra. An m by n matrix has ‘m’ rows and “n” columns and is written as m×n. For instance, a 2×4 matrix has 2 rows and 4 columns. The types of matrices include row matrix, column matrix, square matrix, rectangular matrix, zero (null) matrix, diagonal matrix, scalar matrix, identity matrix, symmetric matrix, skew-symmetric matrix, upper triangular matrix, lower triangular matrix, singular matrix, and non-singular matrix.
A triangular matrix is a specific form of a square matrix. It is obtained when all the elements either above or below the principal diagonal are zero. Triangular matrices are classified into two types: upper triangular and lower triangular. An upper triangular matrix is a square matrix where all the entries below the main diagonal are zero, while in a lower triangular matrix, all the entries above the main diagonal are zero.
.png?updatedAt=1761298285551)
Triangular matrices have several useful properties when computing determinants. For example:
 
In a linear transformation, changes in one variable lead to proportional changes in others. The determinant of a matrix represents how much a linear transformation scales space. The determinant of a triangular matrix is calculated by multiplying all the entries on its main diagonal. Let’s take an example to understand how to compute the determinant:
Upper triangular Matrix:
\( A = \begin{bmatrix} 2 & 3 & 4 \\ 0 & 5 & 6 \\ 0 & 0 & 7 \end{bmatrix} \)
                                
Lower Triangular Matrix:
\( B = \begin{bmatrix} 1 & 0 & 0 \\ 4 & 3 & 0 \\ 7 & 5 & 6 \end{bmatrix} \)
 
In triangular matrices, the determinant remains unchanged by the zeros located outside the main diagonal.
LU Decomposition and Triangular Matrices
LU decomposition (also called factorization) of a square matrix 𝐴 expresses A = LU, where L is lower-triangular with 1s on the diagonal (or unit lower triangular) and U is upper-triangular.
The connection is that solving 𝐴𝑥 = 𝑏 becomes LUx=b, and Ly = b can be solved by forward substitution, then 𝑈𝑥 = 𝑦 by backward substitution.
For example, we have: \( A = \begin{bmatrix} 4 & 3 \\ 6 & 3 \end{bmatrix} \)
We want to find L and U such that A = LU. 
 
Step 1: Let, \( L = \begin{bmatrix} 1 & 0 \\ l_{21} & 1 \end{bmatrix} \)
                    \( U = \begin{bmatrix} u_{11} & u_{12} \\ 0 & u_{22} \end{bmatrix} \) 
 
Step 2: Multiply 𝐿 and 𝑈. 
 
\( LU = \begin{bmatrix} 1 & 0 \\ l_{21} & 1 \end{bmatrix} \begin{bmatrix} u_{11} & u_{12} \\ 0 & u_{22} \end{bmatrix} = \begin{bmatrix} u_{11} & u_{12} \\ l_{21}u_{11} & l_{21}u_{12} + u_{22} \end{bmatrix} \)
 
Step 3: Compare with A. 
\( \begin{bmatrix} u_{11} & u_{12} \\ l_{21}u_{11} & l_{21}u_{12} + u_{22} \end{bmatrix} = \begin{bmatrix} 4 & 3 \\ 6 & 3 \end{bmatrix} \)
So, u11 = 4, u12 = 3, l21u11 = 6, l21u12 + u22 = 3
From l21u11= 6, we get l21 = \(\frac{6}{4}\) = -1.5
 
Therefor \( L = \begin{bmatrix} 1 & 0 \\ 1.5 & 1 \end{bmatrix} \) 
 
               \( U = \begin{bmatrix} 4 & 3 \\ 0 & -1.5 \end{bmatrix} \) 
 
and \(A = LU\)
Triangular matrices are of two main types, each defined by the position of their zero elements relative to the main diagonal.
 
1. Upper triangular matrix: The upper triangular matrix is a square matrix where all the entries below the main diagonal are zero, while the elements on and above the diagonal can be non-zero.
Example: \( \begin{bmatrix} 2 & 3 & 1 \\ 0 & 5 & 4 \\ 0 & 0 & 7 \end{bmatrix} \)
 
2. Lower triangular matrix:  A lower triangular matrix is a square matrix where all elements above the main diagonal are zero, and the entries on and below the diagonal may be non-zero.
Example: \( \begin{bmatrix} 4 & 0 & 0 \\ 1 & 3 & 0 \\ 2 & 6 & 5 \end{bmatrix} \)
 
3. Strictly triangular matrix:  When the principal diagonal has all zero elements, the matrix is strictly triangular.
Strictly upper triangular matrix: This type of matrix has zeros on the main diagonal and everywhere beneath it. Only the values above the diagonal can be non-zero.
Strictly lower triangular matrix: In this matrix, all the elements on the diagonal and above it are zero, while the entries below the diagonal can contain non-zero values.
 
4. Unit triangular matrix: A unit triangular matrix is a triangular matrix where every element along the main diagonal is equal to 1.
 
\( \begin{bmatrix} 1 & 0 & 0 \\ 2 & 1 & 0 \\ 4 & 3 & 1 \end{bmatrix} \)
 
A unit lower triangular matrix has all entries above the main diagonal as zero, and the diagonal itself is filled with 1s.
A unit upper triangular matrix has zeros below the main diagonal, with all diagonal elements being 1.
 
\( \begin{bmatrix} 1 & 5 & 3 \\ 0 & 1 & 2 \\ 0 & 0 & 1 \end{bmatrix} \)
 
5. Diagonal matrix: A diagonal matrix is a specific type of both upper and lower triangular matrices, where all elements outside the main diagonal are zero, and only the diagonal entries can be non-zero.
Example: \( \begin{bmatrix} 9 & 0 & 0 \\ 0 & 5 & 0 \\ 0 & 0 & 2 \end{bmatrix} \)
Triangular matrices are a foundational concept in algebra and linear algebra. Understanding their structure, properties, and patterns can make complex problems much easier. Here are some practical tips and tricks to help you master triangular matrices efficiently.
Some common mistakes while working with triangular matrices, solving for linear equations, or forming matrices are:
Triangular matrices are useful in solving real-life problems in engineering, computing, and data analysis by making calculations simpler.
Solving a Lower Triangular System Given:
x = 2, y = −1, z = 0.5
We will solve this using forward substitution:
1. \(2x = 4\)
\(⇒ x = 2\)
2.\( 3x + y = 5 \)
\(⇒ 3(2) + y = 5 \)
\(⇒ y = −1 \)
3. \(x − 2y + 4z = 6\)
\(⇒ 2 − 2(−1) + 4z = 6\)
\(⇒ 2 + 2 + 4z = 6\)
\(⇒ 4z = 2 \)
\(⇒ z = 0.5\)
Solving an Upper Triangular System Given:
\(x \) \( =\) \(\frac{2}{3}\), \(y = 1\), \(z = 2\)
We will solve this using backward substitution:
1. \(5z = 10 \)
\(⇒ z = 2\)
2. \(4y + z = 6 \)
\(⇒ 4y + 2 = 6\)
\(⇒ y = 1\)
3. \(3x − y + 2z = 5\)
\(⇒ 3x − 1 + 4 = 5\)
\(⇒ 3x + 3 = 5 \)
\(⇒ x = \frac{2}{3}\)
Check if Matrix A is an upper triangular matrix Given:
A is an upper triangular matrix.
All elements beneath the main diagonal are 0. Hence, A is an upper triangular matrix.
Multiplication of Two Lower Triangular Matrices Given:
\( AB = \begin{bmatrix} 4 & 0 \\ 23 & 18 \end{bmatrix} \)
Compute AB
\( AB = \begin{bmatrix} 1 \times 4 + 0 \times 5 & 1 \times 0 + 0 \times 6 \\ 2 \times 4 + 3 \times 5 & 2 \times 0 + 3 \times 6 \end{bmatrix} = \begin{bmatrix} 4 & 0 \\ 8 + 15 & 18 \end{bmatrix} = \begin{bmatrix} 4 & 0 \\ 23 & 18 \end{bmatrix} \)
Cholesky decomposition (into a lower triangular matrix) For the given matrix, find L such that A = LLT, where L is lower triangular.
\( L = \begin{bmatrix} 2 & 0 \\ 1 & \sqrt{2} \end{bmatrix} \)
Let \(L = \begin{bmatrix} a & 0 \\ b & c \end{bmatrix} \implies LL^T = \begin{bmatrix} a^2 & ab \\ ab & b^2 + c^2 \end{bmatrix} = A \)
Matching:
Jaskaran Singh Saluja is a math wizard with nearly three years of experience as a math teacher. His expertise is in algebra, so he can make algebra classes interesting by turning tricky equations into simple puzzles.
: He loves to play the quiz with kids through algebra to make kids love it.






 Previous to Triangular Matrix
Previous to Triangular Matrix
