I am struggling to relearn some concepts, please help me understand where my logic is incorrect regarding that the Column space and Null Space should only have the zero vector in common.
If we look at Matrix A:
$$ A= \begin{bmatrix} 1 & 2 \\ 2 & 4 \end{bmatrix}$$
And consider the phrase "The column space of a matrix consists of all linear combinations of its column vectors".
Since the columns are multiples of each other, the column space can be represented as the span of the first column. $$ C(A) = \begin{bmatrix} 1 \\ 2 \end{bmatrix} $$
If I skip the working, the null space can be calculated to be: $$ N(A) ={ x2 \begin{bmatrix} -2 \\ 1 \end{bmatrix} } $$
I understand that the null space is all the multiples of the above vector. However, returning to the statement from before: "The column space of a matrix consists of all linear combinations of its column vectors",
Isn't this an appropriate linear combination of the column vectors, i.e why isnt this in the column space?
$$ -2 \begin{bmatrix} 1 \\ 2 \end{bmatrix} + 1 \begin{bmatrix} 2 \\ 4 \end{bmatrix} = 0 $$