Let $$A=\begin{pmatrix} 1 & 5 & -1\\ -2 & -10 & 5\\ -2 & -10 & -1\end{pmatrix}$$
and $$B=\begin{pmatrix} 0 \\ 15 \\ -15\end{pmatrix}.$$
To find a vector $U$ such that $A$ maps $U$ to $B$ then you must solve the system $AU = B$.
Isolating for U yields $U = A^{-1}B$
However, when attempting to solve the inverse of $A$ produces all $0$'s in the bottom row during matrix inversion algorithm, otherwise known as a determinant of $0$.
Yes, it is true that $\det(A)=0$. So $A^{-1}$ is meaningless. Nevertheless we can solve $Ax=b$ with $b=(0,15,-15)^T$ by, say, $x=(1,4/5,5)$. For this, we write $x=(x_1,x_2,x_3)$ and obtain three linear equations, namely $$ x_1+5x_2-x_3= - 2x_1 - 10x_2 + 5x_3 - 15= - 2x_1 - 10x_2 - x_3 + 15=0. $$ If we substitute $x_3$ from the last equation, we obtain $- x_1 - 5x_2 + 5=0$. With $x_1=5-5x_2$ all equations are satisfied.