Types of Matrix: Overview, Questions, Preparation

Matrices 2025 ( Maths Matrices )

nitesh singh
Updated on Jul 11, 2025 08:58 IST

By nitesh singh, Senior Executive

A matrix is an arrangement of various elements in an ordered rectangular array. The order of the matrix is defined by the number of rows and columns in the matrix. If there are m rows and n columns, the order of matrix is m × n. In this article, we’ll learn about various types of matrices.

The matrices (Plural of Matrix) can be classified based on multiple aspects such as order of the matrix, elements of the matrix, determinant of the matrix, transpose, and others. You can find NCERT Notes for other topics, including Matrix basics, Matrix operations, Adjoint & Inverse of Matrix, at Shiksha.

You can use these notes to learn concepts and practice through Matrices NCERT Solutions to resolve doubts and develop a strong understanding.

Table of content
  • Type of Matrices
  • Null Matrix/Zero Matrix
  • Row and Column Matrix
  • Square Matrix
  • Rectangular Matrix
  • Diagonal matrix
  • Identity/Unit matrix
  • Scalar matrix
  • Triangular Matrix
  • Symmetric and Skew-symmetric matrix
  • Singular and Non-Singular Matrices
View More
Maths Matrices Logo

Type of Matrices

You can check the different types of matrix tables with crisp and concise information. The detailed explanation for each type of matrix with identification, application, and solved examples is provided below.

Matrix type

Specification

Null (Zero) Matrix

All elements are zero.

Row Matrix

Only one row exists.

Column Matrix

Only one column exists.

Square Matrix

Number of rows = Number of columns

Diagonal Matrix

All non-diagonal elements are zero.

Identity (Unit) Matrix

All non-diagonal elements are zero, and all diagonal elements are one.

Scalar Matrix

All non-diagonal elements are zero, and all diagonal elements are equal.

Triangular Matrix

Elements on either side of the diagonal are zero.

Symmetric Matrix

Square matrix (A) = Transpose of the Matrix (AT)

Skew-symmetric Matrix

Square Matrix (A) = Negative of transpose of the Matrix (- AT)

Singular Matrix

Modulus of Matrix is zero (|A| = 0).

Non-singular Matrix

Modulus of Matrix is not zero (|A| ≠ 0).

Hermitian Matrix

Each mirror element across the diagonal is a complex conjugate.

Orthogonal Matrix

The product of a matrix and its transpose is the identity matrix.

Idempotent Matrix

The square of the matrix is the same matrix.

Maths Matrices Logo

Null Matrix/Zero Matrix

A Matrix in which all elements are zero is called a null matrix or zero matrix. It is denoted by O. the mathematical representation for Zero matrix is A = a i j m × n  such that a i j = 0  for all i & j.

For example,

  • [0   0   0] is a zero matrix of order 1×3
  • [ 0 0 0 0 ] is a zero matrix of order 2×2
  • [ 0 0 0 0 0 0 ] is a zero matrix of order 3×2

 

Identification of the Zero Matrix

Zero matrices are very easy to identify; if all the elements are 0 in any matrix, no matter the order, it will be considered a Zero Matrix.

 

Applications of the Zero Matrix

  • You can use a zero matrix as a null element in matrix addition: A + O = A – O = A
  • A zero matrix can represent the absence of a relationship or no connection in a particular context.
Maths Matrices Logo

Row and Column Matrix

Row Matrix: A matrix with only one row of elements is known as row matrix. Mathematically, it is represented as a matrix of order (1×n): A = [ a i j ] 1 × n .

For example,

  • A = [-1    √5     7]  is a row matrix of order 1×3.
  • B = a b is a row matrix of order 1×2.

Column Matrix: A matrix which has only one column is called a column matrix. In general, a column matrix has the order of m × 1. The mathematical form of a column matrix is A = [ a i j ] m × 1

For example,

  • A = [ 1 5 ] is a column matrix of order 2x1.
  • B = a b c is a column matrix of order 3x1.

Identification of Row & Column Matrices

Any matrix that has only one row of elements is a row matrix (resembling a horizontal line). A matrix with only one column is a column matrix (resembling a vertical line).

 

Application of Row and Column Matrices

  • Often these matrices are used to represent data (3D coordinate points or vectors) in a single row or column.
  • These type of matrices can be used to display system of equations and solve using matrix concepts.
Maths Matrices Logo

Square Matrix

If the number of rows in a matrix are equal to the number of columns, the matrix is called a square matrix. Let’s assume both number of columns and rows are n, then the order of square matrix is n x n.

Mathematical form of a square matrix of order n: A = [ a i j ] n × n

For example,

  • A = [ 1    2  is a square matrix of order 2 x 2.

                 -1   4] 

  • B = a b c j k l p q r is a square matrix of order 3 x 3.

Identification of a Square Matrix

You just need to count the number of rows and columns; if they are equal, it is a square matrix.

 

Application of a Square Matrix

  • You can use square matrices to solve linear equations by finding the inverse of the square matrix formed to get unknown values.
  • Cryptography: Square matrices are used in encryption and decryption algorithms to secure data.
  • Researchers also use square matrices to represent relationships in networks and encryption algorithms.
Maths Matrices Logo

Rectangular Matrix

A rectangular matrix is a matrix where the number of rows is not equal to the number of columns. It is essentially a matrix that does not form a square. 

For example, A = [ 1 2 7 9 0 1 3 4 0 0 1 4 ] is a rectangular matrix of order 3 × 2

Identification of a Rectangle Matrix

Count the number of rows and columns; if they are not equal, it is a rectangle matrix.

 

Application of a Rectangle Matrix

Rectangle matrices are usually used in data representation where various elements are involved. Rectangle matrix are also used in computer graphics.

Maths Matrices Logo

Diagonal matrix

A square matrix in which all the non-diagonal elements are zero, and the diagonal elements are non-zero constants. Mathematically, the diagonal matrices are represented in a standard form:

A = [ a i j ] n × n if a i j = 0 , for i j .

The elements a 1 1 , a 2 2 , , a n n are called diagonal elements. The line along which diagonal elements lie is called the principal diagonal.

A diagonal matrix of order n, having diagonal elements d 1 , d 2 , , d n is denoted by diag [ d 1 , d 2 , , d n ] .

For example, A = [ 2 0 0 0 1 0 0 0 3 ] is a diagonal matrix of order 3.

Identification of Diagonal Matrix

  • Firstly, check if it is a square matrix. Since a diagonal matrix is always a square matrix.
  • Then check for two things: first, any of the diagonal elements must be non-zero. All non-diagonal elements must be zero.

 

Application of Diagonal Matrix

  • You can use diagonal matrices to simplify matrix operations. Diagonal matrices make multiplication and exponentiation simpler.
  • In modern computing, diagonal matrices are widely used to represent in computer graphics. 
Maths Matrices Logo

Identity/Unit matrix

A square matrix  A = [ a i j ] n × n is called an identity matrix or unit matrix if all the non-diagonal elements are zero and diagonal elements are one.

In simple words, identity matrix in which all diagonal elements are one is called identity or unit matrix. The identity matrix of order n is denoted by I n .

I n = a i j = { 0 i f i j 1 i f i = j .

For Example;

  • I 2 = [ 1 0 0 1 ] is identity matrix of order 2
  • I 3 = [ 1 0 0 0 1 0 0 0 1 ] are identity matrices of order 3

 

Identification of Identity Matrix

Check if all the non-diagonal elements are 0, and diagonal elements are one only such as [ 1 0 0 0 1 0 0 0 1 ] .

 

Application of Identity Matrix

You can use identity matrix as we use 1 in algebraic operation. That multiplication with identity matrix will not change the matrix (AI= A).

Maths Matrices Logo

Scalar matrix

A square matrix, A = [ a i j ] n × n is called a scalar matrix if all the non-diagonal elements are zero and the diagonal elements are equal, i.e., if a i j = { 0 i f i j k i f i = j , w h e r e k i s a constant .

In other words, a scalar matrix is a diagonal matrix with identical diagonal elements.

For example, A = [ 3 0 0 3 ]  is a scalar matrix (of order 2).

Identification of Scalar Matrix

The most prominent feature of scalar matrices is identical diagonal elements and non-diagonal elements are zero just like:  [ 3 0 0 0 3 0 0 0 3 ] .

 

Application of the Scalar Matrix

The scalar matrices acts as a constant in matrix algebra, which is a very useful property for students (kI⋅A = kA).

Students can use a scalar matrix to find the Eigenvalues, since the eigenvalues of a scalar matrix are all equal to the scalar.

You can also convert any identity matrix into a scalar matrix by simply multiplying by a constant.

Read more
Maths Matrices Logo

Triangular Matrix

Upper Triangular Matrix: A square matrix where all elements below the main diagonal are zero. Mathematically if a square matrix A= a i j such that if a i j = 0 w h e n i > j , it is upper triangular matrix.

Example: A = [ 2 5 6 0 1 7 0 0 3 ]

Lower Triangular Matrix: A square matrix where all elements above the main diagonal are zero. If a square matrix B= b i j  such that if b i j = 0 w h e n i < j , it is lower triangular matrix.

Example: B = [ 2 0 0 5 1 0 9 7 3 ]

Identification of Triangular Matrices

  • Upper Triangular Matrix: All elements below the main diagonal are zero. For example, [ 2 5 6 0 1 7 0 0 3 ] It is an upper triangular matrix. 
  • Lower Triangular Matrix: All elements above the main diagonal are zero. For example: [ 1 2 0 0 7 1 3 0 9 1 0 1 4 ] It is a lower triangular matrix. 

Application of Triangular Matrices 

  • Triangular matrices are used to solve systems of linear equations efficiently by denoting their constant terms as a matrix.
  • You can also simplify computations by deducing (if possible) into triangular matrices.
Read more
Maths Matrices Logo

Symmetric and Skew-symmetric matrix

Symmetric Matrix: A symmetric matrix is a square matrix that remains the same when transposed. In other words, a matrix A is symmetric if A equals its transpose, denoted as AT.

For example, [ 3 1 1 5 ]  and [ a h g h b f g f c ]  are symmetric matrices of orders 2 and 3, respectively.

Skew-Symmetric matrix: A skew-symmetric matrix is a square matrix where its transpose is equal to its negative. In other words, if A is a skew-symmetric matrix, then AT = -A. 

For example, [ 0 5 5 0 ]  and [ 0 h g h 0 f g f 0 ]  are skew-symmetric matrices of orders 2 and 3, respectively.

Identification of Symmetric and Skew-symmetric Matrix

  • Symmetric Matrix: Find the transpose of the matrix; the transpose will be identical to the matrix. For example: [ 1 2 7 9 7 1 3 1 0 9 1 0 1 4 ] is a symmetric matrix. 
  • Skew-Symmetric Matrix: Find the transpose of the matrix, the negative of the transpose will be same to the matrix. For example: [ 1 2 7 9 0 1 3 4 0 0 1 4 ]  is skew symmetric matrix. 

Application of Symmetric and Skew-Symmetric Matrices:

  • Symmetric matrices have real eigenvalues and orthogonal eigenvectors. These properties are highly useful for JEE Mains and other competitive exams.
  • These are also used in differential equations, cross product, and rotation motion in class 11 physics.
Read more
Maths Matrices Logo

Singular and Non-Singular Matrices

Singular Matrix: A square matrix whose determinant is zero is called a singular matrix. In other words, if det (A) = 0, A is a singular matrix.

Non-singular Matrix: A square matrix whose determinant is not zero is called a non-singular matrix. In other words, if det (A) ≠ 0, A is a non-singular matrix.

Identification of singular and Non-singular matrices

Find the determinant of the matrix, then:

  • If the determinant is zero, the matrix is a singular matrix.
  • If the determinant is not zero, the matrix is a non-singular matrix.
Read more
qna

Maths Matrices Exam

Student Forum

chatAnything you would want to ask experts?
Write here...