Maple system of equations in matrix

91 Views Asked by At

I have three matrices A, B and C. Set of equations like this:

$A\cdot B=C$

And I know what A and C are, but I'm looking for B.

Sorry for beginner question, but I'm trying to do this entire noon and don't have a clue. Just got maple license from uni today.

Thanks in advance.

1

There are 1 best solutions below

3
On BEST ANSWER

If $A$ is invertible (I.E. $\det(A) \neq 0 $) you can find the inverse $A^{-1}$ such that $A^{-1}A = I$. Then you will have $B=A^{-1}C$

The commands in Maple are Det(A); and Inverse(A);