

InterviewSolution
Saved Bookmarks
1. |
Find a martix X, if `X+[{:(4,6),(-3,7):}]=[{:(3,-6),(5,-8):}].` |
Answer» Let `A=[{:(4,6),(-3,7):}]" and "B=[{:(3,-6),(5,-8):}].` Then, the given matrix equation is `X+A=B.` `:." "X+A=BimpliesX=B+(-A)` `=[{:(3,-6),(5,-8):}]+[{:(-4,-6),(3,-7):}]` `=[{:(3+(-4),-6+(-6)),(5+3,-8+(-7)):}]=[{:(-1,-12),(8,-15):}].` Hence, `X=[{:(-1,-12),(8,-15):}].` |
|