Question: Solving a matrix equation

Dear All,

I'm stuck in a question, perhaps somebody can help. I have to solve the following equation: 

restart;
with(LinearAlgebra);
A := Matrix(3, 3, [[1, 3, 2], [4, 5, 1], [3, 7, 2]]);
      
M := IdentityMatrix(3);
   
eq := A^2*a+A*b+M*c;
K:= A^-2
Set := {seq(eq[i] = K[i], i = 1 .. nops(eq))};

 

But now I want to solve for a, b and c. I tried this with the solve function, but I gives an error. What do I have to do now?

Math


                            

 

Please Wait...