Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

like that:

eqL=[3*x+2*y==16 ,7*x+y==19]
M=matrix([[3,2],[7,1]])
V=vector
P=M*matrix([x,y]).transpose()
show(M\matrix([16,19]).transpose())

check :

solve(eqL,x,y)

not sure it is what you asked

like that:

eqL=[3*x+2*y==16 ,7*x+y==19]
M=matrix([[3,2],[7,1]])
V=vector
 P=M*matrix([x,y]).transpose()
show(M\matrix([16,19]).transpose())

check :

solve(eqL,x,y)

not sure it is what you asked