It's a question about the name. As we know matrix with non-zero values only on main diagonal is called 'diagonal matrix', and matrix with upper/lower-triangular part filled with non-zero values is called 'triangular matrix'. My question is, does there exist a specific name for a matrix like: $$ \begin{bmatrix} 1 & 0 & 0 & \cdots & 0 & 0\\ 1 & 1 & 0 & \cdots & 0 & 0\\ 0 & 1 & 1 & \cdots & 0 & 0\\ \cdots & \cdots & \cdots & \cdots & \cdots & \cdots \\ 0 & 0 & 0 & \cdots & 1 & 0\\ 0 & 0 & 0 & \cdots & 1 & 1 \end{bmatrix} $$ or $$ \begin{bmatrix} 1 & 1 & 0 & \cdots & 0 & 0\\ 0 & 1 & 1 & \cdots & 0 & 0\\ 0 & 0 & 1 & \cdots & 0 & 0\\ \cdots & \cdots & \cdots & \cdots & \cdots & \cdots \\ 0 & 0 & 0 & \cdots & 1 & 1\\ 0 & 0 & 0 & \cdots & 0 & 1 \end{bmatrix} $$ which have non-zeros values at the main diagonal and the diagonal above/below.
2026-03-28 08:10:44.1774685444
On
What is a matrix with non-zero values exist at main diagonal and the diagonal above/below called
1.9k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
3
There are 3 best solutions below
0
On
As I know:
bidiagonal (see https://en.wikipedia.org/wiki/Bidiagonal_matrix);
tridiagonal (see https://en.wikipedia.org/wiki/Tridiagonal_matrix);
band matrix (see https://en.wikipedia.org/wiki/Band_matrix).
Yes, they are bidiagonal matrices. The first matrix is a lower bidiagonal matrix, the second matrix is an upper bidiagonal matrix. It is not wrong to say that bidiagonal matrices are banded matrices, but it is not precise as the class of banded matrices includes the class of bidiagonal matrices.
When your focus is on the sparsity (non-zero) pattern, it is common to use the symbol $\times$ (written as \times) to mark a (possible) non-zero entry. A triangular matrix which has all ones on the main diagonal is said to be unit triangular.