I would like to find matrix of linear transformation $f$, which projects vectors like this:
$$f((x, y, z)^T)= (a, b, c, d, e)^T$$
How Can I find this matrix ? I am confused that vectors have different amount of elements.
Can you provide please minimal explanation / proof why your solution works ?
Thank you for help
As @Lukas suggested the matrix can be found using the bases, or direct computation. Let's assume that the matrix that we are looking for is M then, M is 5x3 (since it transforms a 3x1 vector to 5x1) and let assume that
$$ M=\begin{bmatrix} c_1 & c_2 & c_3 \\ \end{bmatrix} $$
where $c_i$ is the columns of M and each of them is 5x1
$$ M \begin{pmatrix} 1 \\ 0 \\0 \\ \end{pmatrix} = \begin{bmatrix} c_1 & c_2 & c_3 \\ \end{bmatrix} \begin{pmatrix} 1 \\ 0 \\0 \\ \end{pmatrix} = c_1 = \begin{pmatrix} 3 \\ 5 \\7 \\ 9 \\ 6\end{pmatrix} $$
$$ M \begin{pmatrix} 1 \\ 2 \\0 \\ \end{pmatrix} = \begin{bmatrix} c_1 & c_2 & c_3 \\ \end{bmatrix} \begin{pmatrix} 1 \\ 2 \\0 \\ \end{pmatrix} = c_1 + 2 c_2 =\begin{pmatrix} 2 \\ 3 \\4 \\ 5 \\ 1\end{pmatrix} $$
Hence,
$$ c_2 = 1/2\left( \begin{pmatrix} 2 \\ 3 \\4 \\ 5 \\ 1\end{pmatrix} - \begin{pmatrix} 3 \\ 5 \\7 \\ 9 \\ 6\end{pmatrix}\right) = \begin{pmatrix} -.5 \\ -1 \\-1.5 \\ -2 \\ -2.5\end{pmatrix} $$
$$ M \begin{pmatrix} 1 \\ 2 \\3 \\ \end{pmatrix} = \begin{bmatrix} c_1 & c_2 & c_3 \\ \end{bmatrix} \begin{pmatrix} 1 \\ 2 \\3 \\ \end{pmatrix} =c_1 + 2c_2 + 3c_3 = \begin{pmatrix} 1\\2 \\ 3 \\4 \\ 5 \end{pmatrix} $$
Hence,
$$ c_3 = 1/3\left( \begin{pmatrix} 1 \\ 2 \\ 3 \\4 \\ 5 \end{pmatrix} - \begin{pmatrix} 2 \\ 3 \\4 \\ 5 \\ 1\end{pmatrix}\right) = \begin{pmatrix} -1/3 \\ -1/3 \\-1/3 \\ -1/3 \\ 4/3\end{pmatrix} $$