Find the vector that meets the following criteria

88 Views Asked by At

I want to find the vector $X$ by the following lines:
$$(1,-3,5) \cdot X=49$$ $$(4,1,-1) \cdot X = 0$$ $$(2,0,-3)\cdot X=-9$$ I would like to get some advice how to find him.
Thanks!

2

There are 2 best solutions below

1
On BEST ANSWER

Hint: Assume the vector $X=(x,y,z)$ and then solve the system of equations.

2
On

$b=\begin{pmatrix}49\\0\\-9\end{pmatrix}$,

$A=\begin{pmatrix}1&-3&5\\4&1&-1\\2&0&-3\end{pmatrix}$,

$x=A^{-1}*b$

$So, x=\begin{pmatrix}3\\-7\\5\end{pmatrix}$.