

InterviewSolution
Saved Bookmarks
1. |
Solve system of linear equations, using matrix method,`5x + 2y = 3" "``3x + 2y = 5` |
Answer» `A = [(5,2),(3,2)]` `X= [(x),(y)]` `b= [(3),(5)]` `|A|= |(5,2),(3,2)|` `=10-6=4 cancel(=) 0` `A^-1 = 1/4 [(2,-2),(-3,5)]` `X= A^-1B` `[(x), (y)] = [(4/2, -1/2),(-3/4, 5/4)][(3),(5)]` `= [(3/2,-5/2), (-9/4, 25/4)]` answer |
|