Determine all real numbers (x) for which the vectors (x,2,0), (0,3,x), (1,2,-1) are linearly dependent.

974 Views Asked by At

I know vectors are linearly dependent if one can be written as a linear combination of it's predecessors; so I have the following three equations:

(1)ax = 1

(2)2a + 3b = 2

(3)bx = -1

By adding (1) + (3): x(a + b) = 0, so either x = 0 or a + b = 0, but x cannot be 0 since ax = 1.

By solving a + b = 0 and 2a + 3b = 2 simultaneously gives a = -2 and b = 2, hence x = -0.5.

Is x = -0.5 the only answer to this, or is there something I'm missing? Are there any more solutions?

2

There are 2 best solutions below

0
On

Consider the matrix $A=\begin{pmatrix} x&2&0\\0&3&x\\1&2&-1 \end{pmatrix}$. Then $\det(A)\neq 0$ if and only if the rows are linearly independent. Hence it suffices to calculate $\det(A)$. A short calculation yields $\det(A)=-x(2x+1)$. Hence the vectors are linearly dependent if and only if $x=0$ or $x=-\frac{1}{2}$.

0
On

Yes your answer is correct.

When x = 0. Then a = b = 0. That not satisfies equation (2).

So x = -0.5 is the only solution.