Michael K. answered 04/26/19
PhD professional for Math, Physics, and CS Tutoring and Martial Arts
Given we are looking to solve Ax = b for a given A matrix and a b vector, we can first determine the determinant of the matrix A to see if a solution is possible...
det(A) = -3*3 - (3*3) = -18 ≠ 0
Therefore a solution can be found provided what vector b represents (b1,b2)T
If (b1,b2)T = (0,0)T, then we would be finding the null space of matrix A. In general we can apply the systems of linear equations to find...
-3x1 + 3x2 = b1
3x1 + 3x2 = b2
Solving we get -->
x2 = (b1 + 3x1)/3
Pushing into the second equation -->
3x1 + (b1 + 3x1) = b2
6x1 = b2 - b1
x1 = (b2 - b1)/6
Back-substituting into the first equation gives the solution for x2
x2 = (b1 + 3x1)/3 --> (b1 + (b2 - b1)/2)/3 --> (b2 + b1)/6
therefore the solution vector (x1,x2)T = 1/6 * (b2 - b1, b2 + b1)T
Given values of (b1,b2)T you can now determine the solution for (x1,x2)T