Find the value of $c$ such that $\operatorname{span}([1,2,-1],[0,1,3])$ includes $[3,-2,c]$
First thing I notice is that the vectors $[1,2,-1],[0,1,3]$, are non-parallel, and so their span will be $\mathbb{R}^3$. Thus, $c$ can attain any value since there are $\mathbb{R}^3$ possible vectors.
However my textbook says $c = -27$. This is how they got $-27$:
Let $S_1, S_2 \in \mathbb{R}$ (scalar multiples).
$S_1[1,2,-1]+S_2[0,1,3] = [3,-2,c]$
$S_1 = 3$ (equation 1)
$2S_1 + S_2 = -2$ (equation 2)
$-S_1 + 3S_2 = c$ (equation 3)
Subbing (equation 1) into (equation 2):
$2(3) + S_2 = -2$
$S_2 = -8$
Subbing $S_2 = -8$ and $S_1 = 3$ into (equation 3):
$-(3) + 3(-8) = c$
$c = -27$.
My question is, am I wrong to say $c$ can be any value? The span of the two vectors contain infinitely many vectors, correct? So why is $c$ a specific value in this case?