Message Boards Message Boards

System of equation involving matrices

Hi
I try to solve system of equations involving matrices, but the solution is empty, assist, please.
Thank you.

POSTED BY: Ahmad Rufa'i
2 Replies

They are 12 equations in 8 unknowns. There are solutions to 11 of the equations, but not to all of them:

A = {{1, 2}, {3, 4}};
B = {{5, 6}, {7, 8}};
U = {{9, 10}, {11, 12}};
X = Array[x, Dimensions[A]];
Y = Array[y, Dimensions[B]];
eqs = Thread[Flatten[{A . X - X . A, B . Y - Y . B, U - X . Y}] == 0]
Solve[Take[eqs, 11]]
Solve[eqs]
POSTED BY: Gianluca Gorni

Thank you so much, Sir.

POSTED BY: Ahmad Rufa'i
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard

Group Abstract Group Abstract