Question: Matrix 2 linear equation

Hello,

I was wondering if there is any function to represent matrices into linear equations. For an example,

if A=Matrix([[1,2],[2,3]]) , B=Matrix([[x[1]], [x[2]]]) and C=Matrix([[constant[1]],[constant[2]]]), then I want to get these into

x[1]+2*x[2]+constant[1]=0 and 2*x[1]+3*x[2]+constant[2]=0 form. Any idea how to do this?

Thank you,

Vin

Please Wait...