Suppose $A$ is some matrix
I am trying to prove the following relation:
Im$(A)$ = span{$\begin{bmatrix} 0\\1\\0\\ 1 \end{bmatrix}$, $\begin{bmatrix} 1\\0\\1\\0 \end{bmatrix}$) = $\{x \in \mathbb{R}^4: x_1 - x_3 = 0, x_2 - x_4 = 0\}$
How did the last equality came from? I can't see how they were able to put the image into constraint form.
Attempt:
span{$\begin{bmatrix} 0\\1\\0\\ 1 \end{bmatrix}$, $\begin{bmatrix} 1\\0\\1\\0 \end{bmatrix}$) = $c_1\begin{bmatrix} 0\\1\\0\\ 1 \end{bmatrix}$ + $c_2\begin{bmatrix} 1\\0\\1\\0 \end{bmatrix}$ = $\begin{bmatrix} x_1\\x_2\\x_3\\x_4 \end{bmatrix}$
Then $\begin{bmatrix} c_2\\c_1\\c_2\\c_1 \end{bmatrix}$ = $\begin{bmatrix} x_1\\x_2\\x_3\\x_4 \end{bmatrix}$
So $x_1 = x_3, x_2 = x_4$, then $x_1 - x_3 = 0, x_2-x_4 = 0$
Am I right?
Let $x=\begin{bmatrix}x_1\\x_2\\x_3\\x_4\end{bmatrix}\in\text{Im}(A)$, there exist real numbers $a$ and $b$ such that
$$a\begin{bmatrix}1\\0\\1\\0\end{bmatrix}+b\begin{bmatrix}0\\1\\0\\1\end{bmatrix}=\begin{bmatrix}x_1\\x_2\\x_3\\x_4\end{bmatrix}\qquad\text{i.e.}\qquad\begin{bmatrix}1&0\\0&1\\1&0\\0&1\end{bmatrix}\begin{bmatrix}a\\b\end{bmatrix}=\begin{bmatrix}x_1\\x_2\\x_3\\x_4\end{bmatrix}$$ By taking the augmented matrix and performing elemental row operations we get $$\left[ \begin{array}{cc|r} 1 & 0 & x_1 \\ 0 & 1 & x_2 \\ 1 & 0 & x_3 \\ 0 & 1 & x_4 \end{array} \right]\sim \left[ \begin{array}{cc|c} 1 & 0 & x_1 \\ 0 & 1 & x_2 \\ 0 & 0 & x_3-x_1 \\ 0 & 0 & x_4-x_2 \end{array} \right] $$ Which has solutions iff $x_3-x_1=x_4-x_2=0$.