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