Multiply the Matrices [[-1,3^(n+1)],[1,3^n]][[1,3],[-1,-1]]
Problem
Solution
Identify the matrix multiplication rule where the element in row
i and columnj of the resulting matrix is the dot product of rowi of the first matrix and columnj of the second matrix.Calculate the first row, first column entry by multiplying the first row of the left matrix by the first column of the right matrix.
Calculate the first row, second column entry by multiplying the first row of the left matrix by the second column of the right matrix.
Calculate the second row, first column entry by multiplying the second row of the left matrix by the first column of the right matrix.
Calculate the second row, second column entry by multiplying the second row of the left matrix by the second column of the right matrix.
Combine these entries into the resulting
2×2 matrix.
Final Answer
Want more problems? Check here!