Subject:  Linear Algebra

Transpose of [[1, 2, 3], [4, 5, 6]]

Swap the rows and columns of a 2×3 matrix.

Answer [[1, 4], [2, 5], [3, 6]]

Solution

  1. Matrix A 2×3 [[1, 2, 3], [4, 5, 6]]
  2. Rule The transpose Aᵀ swaps rows and columns: (Aᵀ)ᵢⱼ = Aⱼᵢ.
  3. Transpose Aᵀ 3×2 [[1, 4], [2, 5], [3, 6]]

Try a similar problem yourself

Use the Matrix Transpose to solve a similar problem with your own values.

Open the solver