Summarize this article:
109 LearnersLast updated on November 1, 2025

Matrices are divided into different types based on their elements, size, and special properties. The word ‘matrices’ is simply the plural form of ‘matrix’, which refers to an arrangement of numbers organized in rows and columns.
The type of matrix depends on its components, size, and number of rows and columns. This section discusses how different types of matrices are categorized.
A matrix with just one row and any number of columns is a row matrix. Here, the number of columns doesn’t matter, but the matrix will always have just one row. Thus, A = [aij]1n is a row matrix if m = 1. The elements are written horizontally like a list. So, a row matrix is represented as:
A = [a11 a12 a13 … a1n]1n
Example:
A = [1 2] is a 1 × 2 row matrix.
B = [3 2 1] is a 1 × 3 row matrix.
C = [2 3 4 5] is a 1 × 4 row matrix.
A column matrix has only one column and any number of rows. If n = 1, then A = [aij]m1 is a column matrix. The elements are arranged vertically with m rows and 1 column.
A column matrix has a single column.
A null matrix is a matrix where every element is zero. Therefore, it is also known as a zero matrix. A null matrix is of the order m n, depending on how many rows and columns it has. It is represented as A = [aij]mn, where aij = 0 for all i and j.
A singleton matrix contains only one element. It has one row and one column, so its order is 1 1.
Properties of Singleton Matrix
A horizontal matrix or row matrix has only one row and any number of columns. Thus, it is represented as [aij]mn. It has the order of
m × n.
A = [p q r s]
Example:
A = [2 2 5 8] is a horizontal matrix of the order 1 × 4.
Properties of Horizontal Matrix
It is the matrix in which the number of rows exceeds the number of columns. Thus, it is represented as [aij]mn
Properties of Vertical Matrix
A square matrix has an equal number of rows and columns. Thus, it is represented as [aij]mn. It is of the order m × n, where m = n.
Properties of Square Matrix
A diagonal matrix is a square matrix with zero values for every element outside the main diagonal. It is therefore expressed as A = [aij]. Only the main diagonal contains non-zero elements.
Properties of a Diagonal Matrix
A Scalar matrix is a square matrix in which all the elements of the principal diagonal are the same and all other elements are zero. Therefore, it is written as A = [aij]mn
Properties of Scalar Matrix
An identity matrix is a square matrix with ones on the main diagonal and zero elsewhere. Thus, it is represented as A = [aij]mn. The identity matrix works like the number 1 in multiplication, when any square matrix is multiplied by it, the result is the original matrix value.
For any matrix A of order n × n, AI = IA = A
Properties of Identity Matrix
When two matrices have the same dimensions, they are considered equal. Thus, it is represented as A = [aij]mn and B = [bij]rs. A and B are equal only if m = r, n = s, and aij = bij for all i, j.
Properties of Equal Matrix
A triangular matrix is a special type of square matrix. Here, all the elements found above or below the main diagonal are zeros.
Properties of Triangular Matrix
A singular matrix is a square matrix whose determinant is equal to zero.
It is represented as |A|=0.
Properties of Singular Matrix
A matrix is called non-singular if it has an inverse. In other words, it must be square, and its determinant must not be zero.
It can be represented as |A| ≠ 0.
Properties of Non-singular Matrix
A symmetric matrix is a square matrix where elements are mirrored across the main diagonal — in other words, the entry in row i, column j is equal to the entry in row j, column i.
Properties of Symmetric Matrices
It is a square matrix where the transpose is equal to the negative of the original matrix.
It is represented as A=[aij].
Properties of Skew-Symmetric Matrix
It is a square matrix made up of complex numbers, where the matrix is equal to its own conjugate transpose.
It is represented as A=A*.
Properties of Hermitian Matrix
It is a square matrix with complex entries, where the conjugate transpose is equal to the negative of the original matrix.
It is represented as A* = −A.
Properties of Skew Hermitian Matrix
An orthogonal matrix is a square matrix with real entries whose rows and columns are orthonormal vectors.
It is represented as AAᵀ =I=AᵀA.
Properties of Orthogonal Matrix
A square matrix that yields the same matrix when multiplied by itself is called an idempotent matrix.
It is represented as A2=A.
Properties of Idempotent Matrix
An involutory matrix is a square matrix that gives the identity matrix when multiplied by itself.
It is represented as A2 =I,A-1=A.
Properties of Involutory Matrix
A square matrix that yields a zero matrix for a positive integer power is called a nilpotent matrix.
It is represented as Ap =0.
Properties of Nilpotent Matrix
Students can get confused with the different types of matrices, which could lead to mistakes. Knowing some of these mistakes beforehand will help us avoid similar mistakes while dealing with different kinds of matrices.
Matrices have wide applications in various fields. Here, we will discuss some of those real-life applications.
Matrices help make simulations, video games, and animations in computer graphics look more realistic and lifelike.
Complex problems, such as determining how forces act on a bridge, how electricity flows through circuits, or how heat moves through materials, can be solved with the help of matrices.
They contribute to the security of information. When you send secure messages or do online banking, matrices help encrypt data for security reasons.
Matrices help process large amounts of data efficiently. They also play a key role in computer decision-making within AI models like neural networks.
Images are stored as number grids, just like matrices. Computers use these grids to sharpen pictures, recognize faces, and even help doctors spot health problems in medical scans.
A=[4351],B=[232−1] Calculate A + B
\(A + B = \begin{bmatrix} 6 & 7 \\ 6 & 0 \end{bmatrix}\)
\(A = \begin{bmatrix} 4 & 5 \\ 3 & 1 \end{bmatrix}\) \(B = \begin{bmatrix} 2 & 2 \\ 3 & -1 \end{bmatrix} \)
\(A + B = \begin{bmatrix} 4+2 & 5+2 \\ 3+3 & 1+(-1) \end{bmatrix}\)
\(A + B = \begin{bmatrix} 6 & 7 \\ 6 & 0 \end{bmatrix}\)
A = \begin{bmatrix} 2 & 2 \\ 0 & -1 \end{bmatrix} Find the inverse of a matrix.
\(A^{-1} = \begin{bmatrix} \frac{1}{2} & 1 \\ 0 & -1 \end{bmatrix}\)
\(\text{Let } A = \begin{bmatrix} a & b \\ c & d \end{bmatrix}\)
The inverse of A is: \(A^{-1} = \frac{1}{ad - bc} \begin{bmatrix} d & -b \\ -c & a \end{bmatrix}\)
Here Let us know the values
a = 2
b = 0
c = 2
d = -1
\(\text{Det}(A) = ad - bc = (2)(-1) - (2)(0) = -2\)
Prove that the product of the matrices and the identity matrix of order 3 × 3 is the matrix itself. A = \begin{bmatrix} 2 & 3 & -2 \\ 5 & 1 & 0 \\ -4 & 0 & 2 \end{bmatrix}
\(A \times I = \begin{bmatrix} 2 & 3 & -2 \\ 5 & 1 & 0 \\ -4 & 0 & 2 \end{bmatrix}\)
\(I = \begin{bmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{bmatrix}\) It is the identity matrix
\(A \times I = \begin{bmatrix} 2 & 3 & -2 \\ 5 & 1 & 0 \\ -4 & 0 & 2 \end{bmatrix} \times \begin{bmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{bmatrix}\)
\(A \times I = \begin{bmatrix} 2 & 3 & -2 \\ 5 & 1 & 0 \\ -4 & 0 & 2 \end{bmatrix}\)
A = \begin{bmatrix} 2 & 5 \\ 1 & 0 \end{bmatrix} Find the determinant of the following.
Determinant of A = -5
Det (A) = ad − bc
Now let us know the values,
Let us solve,
Det (A) = (2 × 0) − (5 × 1)
= 0 − 5
= − 5
A = \begin{bmatrix} 1 & 5 \\ 1 & -2 \end{bmatrix} Determine the matrix’s transpose.
\(A^{T} = \begin{bmatrix} 1 & 1 \\ 5 & -2 \end{bmatrix}\)
To find the transpose of a matrix, swap its rows with columns.
(i, j) becomes (j, i).
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.






