What’s the meaning of “vectors cv lie along a line”

linear algebra

I'm reading the Linear algebra book by Gilbert Strang. In the first chapter, there's a line (see last two lines in the picture) saying that "vectors $c\mathbf{v}$ lie along a line". I am not able to understand the meaning of this line. Have we constrained (This is the paragraph containing that line.) ourselves to make v a vector of 2 dimensions here? Because, in that case, we can plot all the points and that would create a line. Is my understanding correct?

Best Answer

In this example $v = \begin{bmatrix} 1 \\ 1 \end{bmatrix}$, and we can multiply it by some constant $c$ to get $cv = \begin{bmatrix} c \\ c \end{bmatrix}$. As you've said, if you plot all of these points then you'll end up with a line, the line $y = x$.

We haven't constrained ourselves to 2 dimensions here, as an example if $v$ was instead $\begin{bmatrix} 1 \\ 1 \\ 0 \end{bmatrix}$ then we've added an extra dimension by it's still the same line.

Related Question