1.2. Types of Matrices

Types of Matrices Based on Triangular Structure

  • A square matrix where all elements below the leading diagonal are zero.
  • Example:
Upper Triangular Matrix
\[\Large Upper\;Triangular\;Matrix\;C = \begin{bmatrix} \color{red}{2} & 4 & 6 \\ \color{blue}{0} & \color{red}{5} & 9 \\ \color{blue}{0} & \color{blue}{0} & \color{red}{3} \end{bmatrix} \]
  • A square matrix where all elements above the leading diagonal are zero.
  • Example:
Lower Triangular Matrix
\[\Large Lower\;Triangular\;Matrix\;C = \begin{bmatrix} \color{red}{2} & \color{blue}{0} & \color{blue}{0} \\ 4 & \color{red}{5} & \color{blue}{0} \\ 6 & 9 & \color{red}{3} \end{bmatrix} \]
MCQ – Types of Matrices

Which of the following is true about an Upper and Lower Triangular Matrix?

Pages: 1 2 3 4 5 6