InterviewSolution
Saved Bookmarks
| 1. |
If A= [[-1,2,3],[5,7,9],[-2,1,1]] and B=[[-4,1,-5],[1,2,0],[-1,3,1]] then verify that (A+B)^T=A^T +B^T |
|
Answer» SOLUTION :`A-B=[[3,1,8], [4,5,9], [-1,-2,0]]` `(A-B)^T=[[3,4,-1], [1,5,-2], [8,9,0]]` `A^T-B^T=[[3,4,-1], [1,5,-2], [8,9,0]]` THEREFORE `(A-B)^T=A^T-B^T` |
|