Simplify the Matrix
Problem
[[1,−1,0],[0,1,0],[0,0,1]]*[[0,1,0],[1,0,0],[0,0,1]]*[[1,0,0],[0,1,0],[0,0,−2]]
Solution
Multiply the first two matrices together using the standard row-by-column rule.
[[1,−1,0],[0,1,0],[0,0,1]]*[[0,1,0],[1,0,0],[0,0,1]]=[[(1)*(0)+(−1)*(1)+(0)*(0),(1)*(1)+(−1)*(0)+(0)*(0),(1)*(0)+(−1)*(0)+(0)*(1)],[(0)*(0)+(1)*(1)+(0)*(0),(0)*(1)+(1)*(0)+(0)*(0),(0)*(0)+(1)*(0)+(0)*(1)],[(0)*(0)+(0)*(1)+(1)*(0),(0)*(1)+(0)*(0)+(1)*(0),(0)*(0)+(0)*(0)+(1)*(1)]]
Simplify the resulting intermediate matrix.
[[−1,1,0],[1,0,0],[0,0,1]]
Multiply this intermediate matrix by the third matrix.
[[−1,1,0],[1,0,0],[0,0,1]]*[[1,0,0],[0,1,0],[0,0,−2]]=[[(−1)*(1)+(1)*(0)+(0)*(0),(−1)*(0)+(1)*(1)+(0)*(0),(−1)*(0)+(1)*(0)+(0)*(−2)],[(1)*(1)+(0)*(0)+(0)*(0),(1)*(0)+(0)*(1)+(0)*(0),(1)*(0)+(0)*(0)+(0)*(−2)],[(0)*(1)+(0)*(0)+(1)*(0),(0)*(0)+(0)*(1)+(1)*(0),(0)*(0)+(0)*(0)+(1)*(−2)]]
Simplify the final entries to obtain the resulting matrix.
[[−1,1,0],[1,0,0],[0,0,−2]]
Final Answer
[[1,−1,0],[0,1,0],[0,0,1]]*[[0,1,0],[1,0,0],[0,0,1]]*[[1,0,0],[0,1,0],[0,0,−2]]=[[−1,1,0],[1,0,0],[0,0,−2]]
Want more problems? Check here!