Find the intersection of linear span with a coordinate subspace $x_2 = 0$

linear algebra

Find the intersection of the linear span of $\langle~1,1,1~\rangle$ and $\langle~0,1,-1,~\rangle$ in $\mathbb{R}^3$ with the coordinate subspace $x_2 = 0$. Exhibit this intersection as a linear span.

  • Does the coordinate subspace mean any 3d vector such that we have $(x_1, 0, x_3)$ for any vector?

  • With two scalars of $1$ and $-1$, then one of the vectors in the linear span would be

$$
(1)\begin{pmatrix} 1 \\ 1 \\ 1 \end{pmatrix} +
(-1)\begin{pmatrix} 0 \\ 1 \\ -1\end{pmatrix} =
\begin{pmatrix} 1 \\ 0 \\ 2\end{pmatrix}
$$

Is this the correct way to show the intersection as a linear span?

Best Answer

Yes, the subspace with $x_2= 0$ is the set or all vectors of the form $\left<x_1, 0, x_3\right>$. The subspace spanned by {<1, 1, 1>, <0, 1, -1>} is the set of all vectors of the form $a\left<1, 1, 1\right>+ b\left<0, 1, -1\right>= \left<a, a+b, a-b\right>$. A vector in the intersection of those must satisfy $x_1= a$, $x_3= a-b$, and $a+ b= 0$. From the last equation, $b= -a$. Then $x_3= a-b= 2a$ so $\left<x_1, 0, x_3\right>= \left< a, 0, 2a\right>= a\left<1, 0, 2\right>$. The intersection of the two subspaces is the one-dimensional subspace spanned by $\left<1, 0, 2\right>$.

Related Question