#2) 3*x-2*y==4, 5*x+y==13
a=matrix([(3,1,-1),(-3,2,4),(4,-2,-3)])
b=matrix([(2,3,-1),(-1,-3,4),(1,4,-3)])
c=matrix([(2,1,3),(-1,2,-3),(1,-2,4)])
d=matrix([(2,1,-1),(-1,2,4),(1,-2,-3)])
x=det(a)/det(d)
y=det(b)/det(d)
z=det(c)/det(d)
show(a)
show(b)
show(c)
show(d)
show('x=')
show(x)
show('y=')
show(y)
show('z=')
show(z)