

InterviewSolution
Saved Bookmarks
1. |
Solve the following system of equations using Cramers rule.`5x-7y+z=11 , 6x-8y-z=15 and 3x+2y-6z=7` |
Answer» `D= |(5,-7,1),(6,-8,-1),(3,2,-6)| = 55` `D_1 = |(11,-7,1),(15,-8,-1),(7,2,-6)|= 55` `D_2 = |(5,11,1),(6,15,-1),(3,7,-6)|= -55` `D_3 = |(5,-7,11),(6,-8,15),(3,2,7)|= -55` `x= D/D_1 = 55/55 = 1` `y= 55/-55 = -1` `z= 55/-55=-1` `x=1; y=-1; z=-1` Answer |
|