Matrix Transpose Calculator

Transposes any matrix (up to 6x6) instantly. Swap rows and columns and explore symmetric and orthogonal matrix properties.

×

Matrix A

Step-by-Step Row Working

What is a Matrix Transpose?

The transpose of a matrix is one of the simplest operations in linear algebra. When you transpose a matrix, you rotate it across its main diagonal, effectively flipping the grid. The rows of the original matrix become the columns of the transposed matrix, and the columns of the original matrix become the rows of the transposed matrix.

If A is an m x n matrix, then its transpose, denoted AT, is an n x m matrix. Formally, we define the elements of AT as:

ATi,j = Aj,i

Worked Example of a Matrix Transpose

Let's find the transpose of a 2x3 matrix A:

123
456

By swapping rows and columns, the first row [1, 2, 3] becomes the first column, and the second row [4, 5, 6] becomes the second column. The resulting 3x2 transposed matrix AT is:

14
25
36

Properties of the Transpose Operation

The transpose operation satisfies several algebraic properties that are useful in matrix proofs and computational simplifications:

If a square matrix is equal to its own transpose (A = AT), the matrix is called symmetric. If a matrix is equal to the negative of its transpose (A = -AT), it is called skew-symmetric.

Frequently Asked Questions

What is a transpose of a matrix?

The transpose of a matrix is formed by swapping its rows and columns. The element at row i, column j is moved to row j, column i.

How does matrix multiplication work?

Matrix multiplication involves taking the dot product of rows from the first matrix with columns of the second matrix. The column size of A must equal the row size of B.

How does the matrix inverse relate to RREF?

To find the inverse of a square matrix A, you augment it with the Identity matrix [A | I] and compute the RREF. If A is invertible, the left side reduces to the Identity matrix, leaving the inverse A^-1 on the right side: [I | A^-1].

What is the determinant of a matrix?

The determinant is a scalar value that measures the factor by which linear transformations scale volume. A matrix is invertible if and only if its determinant is non-zero. It can be computed exactly using Gaussian elimination.