Courses
Courses for Kids
Free study material
Offline Centres
More
Store Icon
Store

Rectangular Matrix in Linear Algebra Explained

ffImage
hightlight icon
highlight icon
highlight icon
share icon
copy icon

What is a Rectangular Matrix Definition Properties and Examples

Understanding a rectangular matrix is vital for school algebra, competitive exams, and practical data problems. These matrices let us organize information where the number of rows and columns are not equal, making them useful in statistics, computing, and many maths applications.


Formula Used in Rectangular Matrix

The standard way to write a rectangular matrix is: \( A = [a_{ij}]_{m \times n} \), where m is the number of rows, n is the number of columns, and \( m \neq n \).


Here’s a helpful table to understand rectangular matrix more clearly:


Rectangular Matrix Table

Example MatrixOrder (Rows × Columns)Rectangular?
\( \begin{bmatrix}1 & 2 & 3 \\ 4 & 5 & 6 \end{bmatrix} \) 2 × 3 Yes
\( \begin{bmatrix}7 & 8 \\ 9 & 1 \end{bmatrix} \) 2 × 2 No
\( \begin{bmatrix}2 & 0 \\ -1 & 3 \\ 5 & 4 \end{bmatrix} \) 3 × 2 Yes

This table shows how the pattern of rectangular matrix appears regularly in real cases.


Properties and Representation

A rectangular matrix has rows and columns that are not equal in number. For example, a matrix of order 3 × 4 has 3 rows and 4 columns. Common properties include:

  • Addition or subtraction is possible only if other matrices have the same order.
  • Transpose swaps rows to columns, turning a 2 × 3 matrix into 3 × 2.
  • Multiplication is possible if columns in the first matrix = rows in the second. Learn more at Matrix Multiplication.
  • Determinant and inverse do not exist for rectangular matrices. See why in Inverse Matrix.

To explore all types of matrices for comparison, visit Types of Matrices.


Worked Example – Solving a Problem

Let's check if the following matrix is rectangular and find its transpose:

Given: \( A = \begin{bmatrix} 3 & 2 & 5 \\ 1 & 4 & -1 \end{bmatrix} \)

1. Count rows and columns:
Rows = 2, Columns = 3

2. Since rows ≠ columns, A is a rectangular matrix.

3. To find the transpose \( A^T \):
Change rows to columns: \( A^T = \begin{bmatrix} 3 & 1 \\ 2 & 4 \\ 5 & -1 \end{bmatrix} \) Order of \( A^T \): 3 × 2.

For deeper clarification on transposes, refer to Transpose of Matrix.


Practice Problems

  • Write an example of a rectangular matrix of order 4 × 2.
  • Can you add \( B = \begin{bmatrix} 2 & 3 \\ 1 & -2 \\ 4 & 5 \end{bmatrix} \) and \( C = \begin{bmatrix} 0 & 1 \\ 3 & 2 \\ 5 & -3 \end{bmatrix} \) ? Why or why not?
  • Given a matrix of order 3 × 2, what is the order of its transpose?
  • Is \( \begin{bmatrix} 10 & 11 \\ 12 & 13 \end{bmatrix} \) a rectangular matrix? Explain.

Common Mistakes to Avoid

  • Thinking any non-square matrix is automatically rectangular, without checking the order.
  • Trying to find the determinant or inverse of a rectangular matrix (these are undefined).
  • Mistaking row or column matrices for all types of rectangular matrices. Review Row Matrix for differences.

Real-World Applications

The concept of rectangular matrix is useful in computer graphics, organizing student marksheets, spreadsheets, image pixel grids, scheduling tasks, and more. Real-life problems often require matrices where rows and columns differ, so Vedantu ensures you’re exam-ready and job-ready.


We explored the idea of rectangular matrix, its notation, worked through practical problems, and saw where such matrices are used in real life. Keep practicing with Vedantu for deeper understanding and stronger exam skills.


For more on matrix operations and basics, see Matrix Introduction, Matrix Addition, Elementary Operation of Matrix, or Matrix Rank. Each topic will help you understand rectangular matrices in greater depth.

FAQs on Rectangular Matrix in Linear Algebra Explained

1. What is a rectangular matrix?

A rectangular matrix is a matrix in which the number of rows is not equal to the number of columns. In other words, if a matrix is of order m × n and m ≠ n, then it is rectangular. For example:

  • A 2 × 3 matrix is rectangular.
  • A 4 × 2 matrix is rectangular.
  • A 3 × 3 matrix is not rectangular (it is square).
This type of matrix is common in linear algebra and data representation.

2. How do you identify a rectangular matrix?

You identify a rectangular matrix by checking if the number of rows and columns are different. Steps to identify:

  • Count the number of rows (m).
  • Count the number of columns (n).
  • If m ≠ n, the matrix is rectangular.
For example, a matrix with 3 rows and 5 columns (3 × 5) is rectangular because 3 is not equal to 5.

3. What is the order of a rectangular matrix?

The order of a rectangular matrix is written as m × n, where m is the number of rows and n is the number of columns. For example:

  • If a matrix has 2 rows and 4 columns, its order is 2 × 4.
  • If it has 5 rows and 3 columns, its order is 5 × 3.
The order tells you the size and structure of the matrix.

4. Can a rectangular matrix have a determinant?

A rectangular matrix does not have a determinant because determinants are defined only for square matrices. Since a rectangular matrix has m ≠ n, it cannot have a determinant. Determinants apply only to matrices of order n × n.

5. Can a rectangular matrix have an inverse?

A rectangular matrix does not have a standard inverse because inverses exist only for square matrices. However, in advanced linear algebra, a rectangular matrix may have a pseudo-inverse (Moore–Penrose inverse). A regular matrix inverse requires the matrix to be square and non-singular.

6. What is an example of a rectangular matrix?

An example of a rectangular matrix is one where rows and columns are unequal, such as:

\[ A = \begin{bmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \end{bmatrix} \]

This matrix has order 2 × 3, meaning 2 rows and 3 columns, so it is rectangular.

7. What is the difference between a square matrix and a rectangular matrix?

The main difference is that a square matrix has equal rows and columns (m = n), while a rectangular matrix has unequal rows and columns (m ≠ n).

  • Square matrix: 3 × 3, 4 × 4, etc.
  • Rectangular matrix: 2 × 3, 5 × 2, etc.
Only square matrices can have determinants and standard inverses.

8. Can you add two rectangular matrices?

You can add two rectangular matrices only if they have the same order. Matrix addition requires both matrices to have identical dimensions (m × n).

  • If A and B are both 2 × 3 matrices, A + B is possible.
  • If one is 2 × 3 and the other is 3 × 2, addition is not defined.
Add corresponding elements to get the result.

9. Can rectangular matrices be multiplied?

Yes, rectangular matrices can be multiplied if the number of columns in the first matrix equals the number of rows in the second matrix. If A is of order m × n and B is of order n × p, then AB is defined and has order m × p. For example:

  • A is 2 × 3
  • B is 3 × 4
  • AB will be 2 × 4
This rule applies to both square and rectangular matrices.

10. Where are rectangular matrices used in real life?

A rectangular matrix is widely used to represent data tables, systems of equations, and transformations between spaces of different dimensions. Common applications include:

  • Storing data in rows and columns (like spreadsheets).
  • Representing systems of linear equations.
  • Computer graphics transformations.
  • Machine learning datasets (samples × features).
They are fundamental in linear algebra and applied mathematics.