It is about the matrix equation AX=B, where a, b c in A and B are independent elements, X should be made of constants.
Case 1
A=[a b 0;0 0 c];
B=[a b 0 0;0 0 c c];
The solution is X=[1 0 0 0;0 1 0 0;0 0 1 1];
It seems to be unique. But how to prove it?
Case 2
A=[a b 0 0;0 0 c c];
B=[a b;c c];
The solution is X=[1 0;0 1;0 0;1 1], or [1 0;0 1;1 1;0 0], or [1 0;0 1;1 0;0 1], or [1 0;0 1;0 1;1 0] ;
Apparently, in this case, the solution is not unique. But how to prove it?
This seems to be simple but really confuses me.