Determine if $v=(4,4,-3)$ is a linear combination of the vectors $u_1=(3,1,-1)$ and $u_2=(2,-2,1)$

68 Views Asked by At

Determine if $v=(4,4,-3)$ is a linear combination of the vectors $u_1=(3,1,-1)$ and $u_2=(2,-2,1)$.

2

There are 2 best solutions below

0
On

Hint: Form the matrix $A = \begin{bmatrix} u_1 & u_2 & v \end{bmatrix}$ and row reduce. If you end up with the $3 \times 3$ identity matrix, the three vectors are linearly independent, and there exists no such linear combination. If not, you can read the coefficients of the linear combination off the third column of the row-reduced matrix.

0
On

Calculate

$$ \begin{vmatrix} 3&1&-1 \\ 2&-2&1 \\ 4&4&-3 \\ \end{vmatrix}.$$

If this determinant is $0$, then the last row is a linear combination of the first two rows. Otherwise it's not.