

InterviewSolution
Saved Bookmarks
1. |
If `A=[(1,2),(3,4),(5,6)]` and `B=[(-3,-2),(1,-5),(4,3)]`, then find `D=[(p,q),(r,s),(t,u)]` such that `A+B-D=O`. |
Answer» Here `A+B-D=O` `:. D=A+B` `implies [(p,q),(r,s),(t,u)]=[(1,2),(3,4),(5,6)]+[(-3,-2),(1,-5),(4,3)]` `= [(1-3,2-2),(3+1,4-5),(5+4,6+3)]=[(-2,0),(4,-1),(9,9)]` `D=[(-2,0),(4,-1),(9,9)]` |
|