Types of Matrices

There are several types of matrices, but the most commonly used are:

  1. Rows Matrix
  2. Columns Matrix
  3. Rectangular Matrix
  4. Square Matrix
  5. Diagonal Matrix
  6. Scalar Matrix
  7. Identity Matrix
  8. Triangular Matrix
  9. Null or Zero Matrix
  10. Transpose of a Matrix

Row Matrix:
A matrix is said to be a row matrix if it has only one row.

e.g.
\[A = \left[ {\begin{array}{*{20}{c}} 1&2&3 \end{array}} \right]\]

Column Matrix:
A matrix is said to be a column matrix if it has only one column.

e.g.
\[B = \left[ {\begin{array}{*{20}{c}} 1 \\ 2 \\ 3 \end{array}} \right]\]

Rectangular Matrix:
A matrix is said to be rectangular if the number of rows is not equal to the number of columns.

e.g.
\[A = \left[ {\begin{array}{*{20}{c}} 1&3&4 \\ 2&5&2 \end{array}} \right]\]

Square Matrix:
A matrix is said to be square if the number of rows is equal to the number of columns.

e.g.
\[B = \left[ {\begin{array}{*{20}{c}} 1&3&4 \\ 5&2&4 \\ 1&9&6 \end{array}} \right]\]

Diagonal Matrix:
A square matrix is said to be diagonal if at least one element of principal diagonal is non-zero and all the other elements are zero.

e.g.
\[D = \left[ {\begin{array}{*{20}{c}} 1&0&0 \\ 0&2&0 \\ 0&0&3 \end{array}} \right]\]

Scalar Matrix:
A diagonal matrix is said to be scalar if all of its diagonal elements are the same.

e.g.
\[A = \left[ {\begin{array}{*{20}{c}} 2&0&0 \\ 0&2&0 \\ 0&0&2 \end{array}} \right]\]

Identity or Unit Matrix:
A diagonal matrix is said to be identity if all of its diagonal elements are equal to one, denoted by $$I$$.

e.g.
\[I = \left[ {\begin{array}{*{20}{c}} 1&0 \\ 0&1 \end{array}} \right],\,\,\,I = \left[ {\begin{array}{*{20}{c}} 1&0&0 \\ 0&1&0 \\ 0&0&1 \end{array}} \right]\]

Triangular Matrix:
A square matrix is said to be triangular if all of its elements above the principal diagonal are zero (lower triangular matrix) or all of its elements below the principal diagonal are zero (upper triangular matrix).

e.g:
\[A = \left[ {\begin{array}{*{20}{c}} 1&0&0 \\ 2&4&0 \\ 3&5&6 \end{array}} \right]\[ (Lower Triangular Matrix)
\[B = \left[ {\begin{array}{*{20}{c}} 5&8&3 \\ 0&1&2 \\ 0&0&7 \end{array}} \right]\] (Upper Triangular Matrix)

Null or Zero Matrix:
A matrix is said to be a null or zero matrix if all of its elements are equal to zero. It is denoted by $$O$$.

e.g.
\[O = \left[ {\begin{array}{*{20}{c}} 0&0 \\ 0&0 \end{array}} \right],\,\,\,O = \left[ {\begin{array}{*{20}{c}} 0&0&0 \\ 0&0&0 \\ 0&0&0 \end{array}} \right]\]

Transpose of a Matrix:
Suppose $$A$$ is a given matrix, then the matrix obtained by interchanging its rows into columns is called the transpose of $$A$$. It is denoted by $${A^t}$$.

e.g.
Let
\[A = \left[ {\begin{array}{*{20}{c}} 1&2&3 \\ 8&4&6 \end{array}} \right]\]
then
\[{A^t} = \left[ {\begin{array}{*{20}{c}} 1&8 \\ 2&4 \\ 3&6 \end{array}} \right]\]