Transpose of a Matrix

Transpose of a Matrix

Komal MiglaniUpdated on 02 Jul 2025, 05:55 PM IST

Before we learn the concept of transpose of the matrix, let's first understand what a matrix is. A matrix is a rectangular arrangement of symbols along rows and columns that might be real or complex numbers. Thus, a system of m x n symbols arranged in a rectangular formation along m rows and n columns and bonded by the brackets [ ] is called an m by n matrix (which is written as m x n matrix). In real life, transpose is a commonly used tool in computer graphics for manipulating geometric objects. For transformations like translation, scaling, and rotation, it is quite useful.

This Story also Contains

  1. Transpose of matrix
  2. Steps to find Transpose of Matrix
  3. Properties of the transpose of a matrix:
  4. Solved Example Based on Transpose of Matrix
Transpose of a Matrix
Transpose of a Matrix

In this article, we will cover the concept of the Transpose of Matrix. This category falls under the broader category of Matrices, which is a crucial Chapter in class 11 Mathematics. It is not only essential for board exams but also for competitive exams like the Joint Entrance Examination(JEE Main) and other entrance exams such as SRMJEE, BITSAT, WBJEE, BCECE, and more. Over the last ten years of the JEE Main Exam (from 2013 to 2023), a total of 8 questions have been asked on this concept, including one in 2019, one in 2020, one in 2021, three in 2022, and three in 2023.

Transpose of matrix

A matrix can be transposed by interchanging its rows into columns or its columns into rows. The letter "T" in the superscript of the matrix is used to denote the transpose of the matrix.

In simple language, the transpose of a matrix is changing its rows into columns or columns into rows.

Let $\mathrm{A}=\left[\mathrm{a}_{\mathrm{ij}}\right]_{\mathrm{m} \times \mathrm{n}}$ be a matrix, then matrix obtained by changing rows into columns or vice-versa will give transpose of $\mathrm{A}$ which is denoted as $\mathrm{A}^{\prime}$ or $\mathrm{A}^{\top}$. Hence $\mathrm{A}^{\prime}=\left[\mathrm{a}_{\mathrm{ji}}\right]_{\mathrm{n} \times \mathrm{m}}$

Steps to find Transpose of Matrix

For the time being, let's assume that a matrix is a 2×3 matrix. Its measurements are two rows by three columns. When a matrix is transposed, the elements in the first row of the original matrix are recorded in the first column of the new matrix. The entries from the second row of the original matrix are similarly contained in the second column of the new matrix. The new matrix's order is now 3×2, as it has two columns and three rows.

Example,

$
\mathrm{A}=\left[\begin{array}{lll}
a_{11} & a_{12} & a_{13} \\
a_{21} & a_{22} & a_{23} \\
a_{31} & a_{32} & a_{33}
\end{array}\right] \Rightarrow \mathrm{A}^{\prime}=\left[\begin{array}{lll}
a_{11} & a_{21} & a_{31} \\
a_{12} & a_{22} & a_{32} \\
a_{13} & a_{23} & a_{33}
\end{array}\right]
$

If, $A=\left[\begin{array}{ll}2 & 6 \\ 3 & 7 \\ 5 & 8\end{array}\right]$ then, $A^{\prime}=\left[\begin{array}{lll}2 & 3 & 5 \\ 6 & 7 & 8\end{array}\right]$

Properties of the transpose of a matrix:

If $A^{\prime}$ and $B^{\prime}$ denote the transpose of the matrices $A$ and $B$, then :

i) Transpose of the Transpose Matrix

The matrix that results from taking the transpose of the transpose matrix is equal to the original matrix. Hence $\left(A^{\prime}\right)^{\prime}=A$

ii) Addition of Transpose Matrix

The resultant transpose of the addition of two matrices $A$ and $B$ is precisely equal to the total of the transposes of $A$ and $B$ separately

Hence, $(A \pm B)^{\prime}=A^{\prime} \pm B^{\prime}$ (given that $A$ and $B$ are conformable for matrix addition)

iii) Multiplication by constant

The matrix acquired is identical to the transpose of the original matrix multiplied by the constant when a matrix is multiplied by a constant and its transpose is taken.

In other words, $(k A)^{\prime}=k A^{\prime}$

iv) Multiplication Properties of Transpose

The product of the transpose of the two matrices in reverse order equals the transpose of the product of two matrices.

That's $(A B)^{\prime}=B^{\prime} A^{\prime}($ given that $A$ and $B$ are conformable for matrix product $A B)$

Recommended Video Based on Transpose of Matrix:

Solved Example Based on Transpose of Matrix

Example 1: Let $
\mathrm{A}=\left[\begin{array}{l}
1 \\
1 \\
1
\end{array}\right] \text { and } \mathrm{B}=\left[\begin{array}{ccc}
9^2 & -10^2 & 11^2 \\
12^2 & 13^2 & -14^2 \\
-15^2 & 16^2 & 17^2
\end{array}\right]
$ then the value of $\mathrm{A}^{\prime} \mathrm{BA}$ is: [JEE Main 2022]

Solution:

$
\begin{aligned}
\mathrm{A}^{\prime} \mathrm{B} & =\left[\begin{array}{lll}
1 & 1 & 1
\end{array}\right]\left[\begin{array}{ccc}
9^2 & -10^2 & 11^2 \\
12^2 & 13^2 & -14^2 \\
-15^2 & 16^2 & 17^2
\end{array}\right] \\
& =\left[9^2+12^2-15^2-10^2+13^2+16^2 \quad 11^2-14^2+17^2\right]
\end{aligned}
$
(A'B)
$
\begin{aligned}
A & =\left[9^2+12^2-15^2-10^2+13^2+16^2 11^2-14^2+17^2\right]\left[\begin{array}{l}
1 \\
1 \\
1
\end{array}\right] \\
& =\left[9^2+12^2-15^2-10^2+13^2+16^2+11^2-14^2+17^2\right] \\
& =\left[\left(9^2-10^2\right)+\left(11^2+12^2\right)+\left(13^2-14^2\right)+\left(-15^2+16^2\right)+17^2\right] \\
& =[-19+265-27+31+289] \\
& =[539]
\end{aligned}
$

Hence the value $\mathrm{A}^{\prime} \mathrm{BA}$ is [539]

Example 2: Let $\mathrm{S}$ be the set containing all $3 \times 3$ matrices with entries from $\{-1,0,1\}$. The total number of matrices $\mathrm{A} \in \mathrm{S}$ such that the sum of all the diagonal elements of $\mathrm{A}^{\mathrm{T}} \mathrm{A}$ is 6 is $\qquad$

[JEE Main 2022]
Solution:
$
\begin{aligned}
& \operatorname{Tr}_{\mathrm{r}}\left(\mathrm{AA}^{\top}\right)=6 \\
& \mathrm{AA}^{\top}=\left[\begin{array}{lll}
a & d & g \\
b & e & h \\
c & f & i
\end{array}\right]\left[\begin{array}{lll}
a & b & c \\
d & e & f \\
g & h & i
\end{array}\right]
\end{aligned}
$

Now given $\mathrm{a}^2+\mathrm{d}^2+\mathrm{y}^2+\mathrm{b}^2+\mathrm{e}^2+\mathrm{h}^2+\mathrm{c}^2+\mathrm{f}^2+\mathrm{i}^2=6$
$
\begin{aligned}
& ={ }^9 \mathrm{c}_3 \times 2^6 \\
& =5376
\end{aligned}
$

Hence, The total number of matrices $\mathrm{A} \in \mathrm{S}$ such that the sum of all the diagonal elements of $\mathrm{A}^{\mathrm{T}} \mathrm{A}$ is 6 is 5376.

Example 3: Let $\mathrm{X}=\left[\begin{array}{l}1 \\ 1 \\ 1\end{array}\right]$ and $\mathrm{A}=\left[\begin{array}{ccc}-1 & 2 & 3 \\ 0 & 1 & 6 \\ 0 & 0 & -1\end{array}\right]$. For $\mathrm{k} \in \mathbb{N}$, if $\mathrm{X}^{\prime} \mathrm{A}^{\mathrm{k}} \mathrm{X}=33$, then $\mathrm{k}$ is equal to $\qquad$

Solution:

$
\begin{aligned}
& \mathrm{A}^2=\left[\begin{array}{ccc}
-1 & 2 & 3 \\
0 & 1 & 6 \\
0 & 0 & -1
\end{array}\right]\left[\begin{array}{ccc}
-1 & 2 & 3 \\
0 & 1 & 6 \\
0 & 0 & -1
\end{array}\right] \\
& \quad=\left[\begin{array}{lll}
1 & 0 & 6 \\
0 & 1 & 0 \\
0 & 0 & 1
\end{array}\right]=\mathrm{I}+\left[\begin{array}{lll}
0 & 0 & 6 \\
0 & 0 & 0 \\
0 & 0 & 0
\end{array}\right] \\
& \text { Let }\left[\begin{array}{lll}
0 & 0 & 6 \\
0 & 0 & 0 \\
0 & 0 & 0
\end{array}\right]=\mathrm{B} \\
& \mathrm{B}^2=0, \\
& \therefore \mathrm{B}^3=0=\mathrm{B}^4=\mathrm{B}^5=\cdots \\
& \text { Now }\left(\mathrm{A}^2\right)^{\mathrm{P}}=(\mathrm{I}+\mathrm{B})^{\mathrm{P}} . \\
& \quad=\mathrm{I}+\mathrm{pB} \\
& \quad=\left[\begin{array}{lll}
1 & 0 & 6 \mathrm{p} \\
0 & 1 & 0 \\
0 & 0 & 1
\end{array}\right]
\end{aligned}
$

Now $x^{\prime} A^k x$
Let $\mathrm{k}$ be even and $\mathrm{k}=2 \mathrm{p}$
$
\begin{aligned}
& {\left[\begin{array}{lll}
1 & 1 & 1
\end{array}\right]\left[\begin{array}{lll}
1 & 0 & 6 \mathrm{p} \\
0 & 1 & 0 \\
0 & 0 & 1
\end{array}\right]\left[\begin{array}{l}
1 \\
1 \\
1
\end{array}\right]} \\
& =\left[\begin{array}{lll}
1 & 1 & 6 \mathrm{p}+1
\end{array}\right]\left[\begin{array}{l}
1 \\
1 \\
1
\end{array}\right] \\
& =[6 \mathrm{p}+3]
\end{aligned}
$

Now $6 \mathrm{p}+3=33$
$
\begin{aligned}
& \Rightarrow \mathrm{p}=5 \\
& \mathrm{k}=2 \mathrm{p}=10
\end{aligned}
$

Hence, the answer is 10.

Example 4: Let $A$ be a $2 \times 2$ matrix with real entries such that $A^{\prime}=\alpha A+I$, where a $\epsilon \mathbb{R}-\{-1,1\}$. If $\left|\mathrm{A}^2-\mathrm{A}\right|=4$, then the sum of all possible values of $\alpha$ is equal to :

Solution:

$
\begin{aligned}
& \mathrm{A}^{\mathrm{T}}=\alpha \mathrm{A}+\mathrm{I} \\
& \mathrm{A}=\alpha \mathrm{A}^{\mathrm{T}}+\mathrm{I} \\
& \mathrm{A}=\alpha(\alpha \mathrm{A}+\mathrm{I})+\mathrm{I} \\
& \mathrm{A}=\alpha^2 \mathrm{~A}+(\alpha+1) \mathrm{I} \\
& \mathrm{A}\left(1-\alpha^2\right)=(\alpha+1) \mathrm{I} \\
& \mathrm{A}=\frac{\mathrm{I}}{1-\alpha} \ldots(1) \\
& |\mathrm{A}|=\frac{1}{(1-\alpha)^2} \ldots(2) \\
& \left|\mathrm{A}^2-\mathrm{A}\right|=|\mathrm{A}||\mathrm{A}-\mathrm{I}| \ldots(3) \\
& \mathrm{A}-\mathrm{I}=\frac{\mathrm{I}}{\mathrm{I}-\alpha}-\mathrm{I}=\frac{\alpha}{1-\alpha} \mathrm{I} \\
& |\mathrm{A}-\mathrm{I}|=\left(\frac{\alpha}{1-\alpha}\right)^2 \ldots(4)
\end{aligned}
$

Now $\left|\mathrm{A}^2-\mathrm{A}\right|=4$
$
|\mathrm{A}||\mathrm{A}-\mathrm{I}|=4
$

$
\begin{aligned}
& \Rightarrow \frac{1}{(1-\alpha)^2} \frac{\alpha^2}{\left(1-\alpha^2\right)}=4 \\
& \Rightarrow \frac{\alpha}{(1-\alpha)^2}= \pm 2 \\
& \Rightarrow 2(1-\alpha)^2= \pm \alpha \\
& \left(C_1\right) 2(1-\alpha)^2=\alpha \\
& \left(C_2\right) 2(1-\alpha)^3=-\alpha \\
& 2 \alpha^2-5 \alpha+2=0 \alpha_1 \\
& 2 \alpha^2-3 \alpha+2=0 \\
& \alpha_1+\alpha_2=\frac{5}{2} \\
& \alpha \notin \mathrm{R}
\end{aligned}
$

Hence, the sum of all possible values of $\alpha$ is equal to $\frac{5}{2}$

Frequently Asked Questions (FAQs)

Q: What's the transpose of a permutation matrix?
A:
The transpose of a permutation matrix is its inverse. This is because permutation matrices are orthogonal (P^T = P^-1).
Q: What's the transpose of a Vandermonde matrix?
A:
The transpose of a Vandermonde matrix is not generally a Vandermonde matrix. However, it preserves some special properties, such as having a determinant that can be expressed as a product of differences.
Q: What's the transpose of a Toeplitz matrix?
A:
The transpose of a Toeplitz matrix (a matrix with constant diagonals) is also a Toeplitz matrix. However, the direction of the constant diagonals is reversed.
Q: How does transposition affect the Frobenius norm of a matrix?
A:
The Frobenius norm of a matrix (the square root of the sum of squares of its elements) is unchanged by transposition. This is because transposition doesn't change the values of the elements, only their positions.
Q: What's the transpose of a block matrix?
A:
To transpose a block matrix, you transpose each block and then arrange these transposed blocks in the transposed position. For example, if A = [[A11, A12], [A21, A22]], then A^T = [[A11^T, A21^T], [A12^T, A22^T]].
Q: How does transposition affect matrix exponentiation?
A:
For matrix exponentiation, (A^n)^T = (A^T)^n, where n is a positive integer. This means the transpose of a matrix raised to a power is equal to the transpose of the matrix raised to the same power.
Q: How does transposition affect the rank of a matrix?
A:
Transposition does not change the rank of a matrix. The rank of a matrix is equal to the rank of its transpose: rank(A) = rank(A^T).
Q: Can you add a matrix to its transpose?
A:
Yes, you can add a matrix to its transpose if the original matrix is square. The result will always be a symmetric matrix.
Q: What's the transpose of a diagonal matrix?
A:
The transpose of a diagonal matrix is the same as the original matrix. This is because all non-diagonal elements are zero, and remain zero after transposition.
Q: How does transposition affect the determinant of a matrix?
A:
Transposition does not change the determinant of a matrix. The determinant of a matrix is equal to the determinant of its transpose: det(A) = det(A^T).