1

If matrices AX=B, and A = 3x3, B=3x1, and A is singular, and B has non zero numbers. Solve for X

Is this possible to solve for?

How can you solve for X in MATLAB, is it possible to solve this by hand?

I know that is A is singular because det(A) = 0 and there is no inverse, but are these problems solvable or simply unsolvable?

Adriaan
  • 17,741
  • 7
  • 42
  • 75
user4999605
  • 431
  • 1
  • 5
  • 14

1 Answers1

2

You can use the pseudo inverse:

X = pinv(A) * B
tashuhka
  • 5,028
  • 4
  • 45
  • 64