Context:
From this video(timestamped), making sense of null spaces:
I understand:
- First statement from the left that we turned $x_2 = \begin{bmatrix}1 \\ 0\end{bmatrix} = s$ (yellow column).
- second statement in green, $x_1 + x_2 = \begin{bmatrix}1 \\ 0\end{bmatrix} + \begin{bmatrix}1 \\ 0\end{bmatrix} = 0$
- My Question: But I don't get how it became $\begin{bmatrix}x_1 \\ x_2\end{bmatrix}$, wouldn't that notation mean $\begin{bmatrix}\begin{bmatrix}1 \\ 0\end{bmatrix} \\ \begin{bmatrix}1 \\ 0\end{bmatrix}\end{bmatrix}$ and it to making sense at all?
- I also know that we can sub $x_1 + x_2$ replacing $x_2 = s$, into $s = -x_1$, resulting in $s\cdot\begin{bmatrix}-1 \\ 1\end{bmatrix} $, which means all values of the span of $\begin{bmatrix}-1 \\ 1\end{bmatrix} $ (a line) is the answer(aka values that will become 0 or null)
I just don't understand point 3 and how it translates, how to write $\begin{bmatrix}x_1 \\ x_2\end{bmatrix}$ in numbers, please help me, and help pinpoint my knowledge gaps? LA is hard to teach one self...!
Let us consider real matrices only for simplicity. From the definition of null spaces, the null space of a matrix $A \in \mathbb{R}^{m \times n}$ is the set of vectors $\{x \in \mathbb{R}^n: Ax = 0\}$. Therefore, each vector $x$ in the null space of $A$ satisfies that $$\sum_{j \in [n]} A_{ij} * x_j = 0, \forall i \in [m].$$ For OP's example, since the second row consist of $0$'s only, we only need to care about the first row, which gives $$1 * x_1 + 1*x_2 = 0$$
In particular, I don't think the first point OP wrote is correct, and that was why OP misunderstood the whole process.