I want to know if these vectors are linearly independent? The vector space is 3 dimension R, like (1,0,0) type of vectors.
The three vectors are (8,9,1), (1,4,5), (0,7,2).
How can I check if the vector are linearly independent?
I know two vectors are linearly independent if one is not scalar multiple of the other vector.
How can I check linear independence for three vectors?
Consider the system
$$\begin{pmatrix} 8 & 1 & 0 \\ 9 & 4 & 7 \\ 1 & 5 & 2\end{pmatrix}\begin{pmatrix} x_1 \\ x_2 \\ x_3\end{pmatrix}=\begin{pmatrix} 0 \\ 0 \\ 0\end{pmatrix}$$
How many solution does the sysem have?
If the system has exactly one solution, then it is linearly independent. Otherwise, it is not.