Transpose (2,-1),[[1,1],[1,4],[1,-2]]
Problem
Solution
Identify the objects to be transposed. The first is a
1×2 row vector and the second is a3×2 matrix.Apply the transpose to the row vector by converting its row into a column.
Apply the transpose to the matrix by switching its rows and columns. The element at row
i columnj moves to rowj columni Rewrite the
3×2 matrix as a2×3 matrix.
Final Answer
Want more problems? Check here!