Transpose [[cos(x),-sin(x)],[sin(x),cos(x)]]
Problem
Solution
Identify the definition of the transpose of a matrix, which involves swapping the rows and columns.
Swap the element at row 1, column 2 with the element at row 2, column 1.
Rewrite the first row of the original matrix as the first column of the new matrix.
Rewrite the second row of the original matrix as the second column of the new matrix.
Final Answer
Want more problems? Check here!