Simplify the Matrix
Problem
Solution
Identify the matrix multiplication rule for two
2×2 matrices, where the element in rowi and columnj is the dot product of thei th row of the first matrix and thej th column of the second matrix.Calculate the top-left element by multiplying the first row of the first matrix by the first column of the second matrix.
Calculate the top-right element by multiplying the first row of the first matrix by the second column of the second matrix.
Calculate the bottom-left element by multiplying the second row of the first matrix by the first column of the second matrix.
Calculate the bottom-right element by multiplying the second row of the first matrix by the second column of the second matrix.
Apply the Pythagorean identity
sin2(x)+cos2(x)=1 and simplify the terms that subtract to zero.
Final Answer
Want more problems? Check here!