Matrix Transpose Calculator

Swap rows and columns of a matrix with visual element mapping and step-by-step solution.

Enter Matrix

Result

Transposed Matrix (AT)
--
Original Size --
Transposed Size --
Is Symmetric? --

Element Mapping

(AT)ij = Aji

What is a Matrix Transpose?

The transpose of a matrix is an operator that flips a matrix over its diagonal. It switches the row and column indices of the matrix, so the element at position (i, j) in the original matrix becomes the element at position (j, i) in the transposed matrix. If A is an m x n matrix, then AT is an n x m matrix.

Transpose Properties

Double Transpose

Transposing twice returns the original matrix.

(AT)T = A

Sum Rule

The transpose distributes over matrix addition.

(A + B)T = AT + BT

Product Rule

The transpose of a product reverses the order.

(AB)T = BTAT

Scalar Rule

Scalars pass through the transpose.

(cA)T = cAT

Determinant

A matrix and its transpose have the same determinant.

det(AT) = det(A)

Symmetric Matrix

A matrix equals its transpose if and only if it is symmetric.

A = AT ⇔ symmetric

Special Types of Transpose

Symmetric Matrices

A square matrix A is symmetric if A = AT. Symmetric matrices have real eigenvalues and orthogonal eigenvectors. They appear frequently in physics, statistics (covariance matrices), and optimization.

Skew-Symmetric Matrices

A matrix A is skew-symmetric (or antisymmetric) if AT = -A. All diagonal elements of a skew-symmetric matrix are zero. These matrices appear in cross products and rotational mechanics.

Applications

Matrix transposition is fundamental in solving systems of linear equations, computing dot products, least squares fitting, data science (reshaping data frames), image processing (rotating images), and machine learning (neural network backpropagation).