

InterviewSolution
Saved Bookmarks
1. |
Find the value of x and y that satisfy the equations `[(3,-2),(3,0),(2,4)] [(y,y),(x,x)]=[(3,3),(3y,3y),(10,10)]` |
Answer» Given `[(3,-2),(3,0),(2,4)] [(y,y),(x,x)]=[(3,3),(3y,3y),(10,10)]` or `[(3y-2x,3y-2x),(3y,3y),(2y+4x,2y+4x)]=[(3,3),(3y,3y),(10,10)]` Comparing elements we have `3y-2x=3` `2y+4x+10` Solving (1) and (2), we get `x=3//2, y=2` |
|