Concept:Represent the system as AX=B and solve using X=A−1B.Explanation:Rewrite equations: 2x−3y=−5 and 3x+y=9.Matrix form: A=(23−31),X=(xy),B=(−59)Compute determinant: det(A)=2(1)−(−3)(3)=2+9=11.Find inverse: A−1=111(1−332).Multiply: X=A−1B=111(1−332)(−59)=111(1(−5)+3(9)−3(−5)+2(9))=111(−5+2715+18)=111(2233)=(23).Thus x=2, y=3.Answer:x=2,y=3