Check if there is a real linear mapping with properties $L: \mathbb{R}^{3} \rightarrow \mathbb{R}^{2}$
$L\begin{pmatrix} 1\\ 1\\ 1 \end{pmatrix}=\begin{pmatrix} 1\\ 0 \end{pmatrix}$, $ \text{ }\text{ }\text{ }\text{ }\text{ }\text{ }\text{ }L\begin{pmatrix} 0\\ 1\\ 1 \end{pmatrix}=\begin{pmatrix} 0\\ 1 \end{pmatrix}$
If there exists such linear mapping, write its matrix form.
It's from an exam from 1996, can be found here (but in German):https://moodle.hu-berlin.de/mod/resource/view.php?id=91606
I unfortunately have no idea how a task like that could be solved correctly. Maybe you can show me how it's done on this example?
I know of the conditions so a mapping is linear but how to apply them here, I don't know :s
Linear mapping may be represented as a matrix. Let $$ M_L = \begin{pmatrix}x_1 & x_2 & x_3 \\ y_1 & y_2 & y_3\end{pmatrix} $$ be a matrix representating map $L$. Then we have $$ \begin{pmatrix}x_1 & x_2 & x_3 \\ y_1 & y_2 & y_3\end{pmatrix}\begin{pmatrix} 1\\ 1\\ 1\end{pmatrix}=\begin{pmatrix} 1\\ 0\end{pmatrix}, \quad \begin{pmatrix}x_1 & x_2 & x_3 \\ y_1 & y_2 & y_3\end{pmatrix}\begin{pmatrix} 0\\ 1\\ 1\end{pmatrix}=\begin{pmatrix} 0\\ 1\end{pmatrix} $$ or $$ \begin{cases} x_1 + x_2 + x_3 = 1 \\ x_2 + x_3 = 0 \end{cases},\quad \begin{cases} y_1 + y_2 + y_3 = 0 \\ y_2 + y_3 = 1 \end{cases}, $$ which implies $$ M_L = \begin{pmatrix}1 & x & -x \\ -1 & y & 1-y\end{pmatrix}, $$ where $x$ and $y$ are some real numbers.