For example, for matrix A, B, I know that when I use LinearSolve[A,B] that means it will solve for x which fulfill Ax=B.
However, what if xA=B case. I was trying to inverse A and B and make B^-1x=A^-1 but the A is not invertible so how I solve is..
Solve[{{x1 + x2 + x3, 5 x1 + 6 x2 + 11 x3}, {y1 + y2 + y3, 5 y1 + 6 y2 + 11 y3}} ==
{{1, 0}, {0, 1}}, {x1, x2, x3, y1, y2, y3}]
But it doesn't make sense and if matrix x is 5x5 or something like that, it would be very hard.
Can anyone tell me or suggest for a better way to solve this kind of problem? Thank you!

