Home > Matrix & Vector > Matrix Structure > Upper Triangle Matrix checker example

11. is Upper Triangle Matrix example ( Enter your problem )
  1. Definition & Examples
  2. Example-2

1. Definition & Examples





1. is Upper Triangle Matrix ?
`[[1,2,3],[0,4,5],[0,0,6]]`


Solution:
A square matrix, in which all elements below the main diagonal are zero, is called a upper triangle matrix.

`A` = 
`1``2``3`
`0``4``5`
`0``0``6`


Here, all elements below the main diagonal are zero, so it is a upper triangle matrix.


2. is Upper Triangle Matrix ?
`[[1,2,3],[0,4,5],[1,0,6]]`


Solution:
A square matrix, in which all elements below the main diagonal are zero, is called a upper triangle matrix.

`A` = 
`1``2``3`
`0``4``5`
`1``0``6`


Here, `a_(31)=1!=0`, so it is not a upper triangle matrix.






This material is intended as a summary. Use your textbook for detail explanation.
Any bug, improvement, feedback then Submit Here





Share this solution or page with your friends.
 
 
Copyright © 2026. All rights reserved. Terms, Privacy
 
 

.