Given is a plane with the points $A = (1, 1, 1) , B = (1, 0, 1), C = (0, 1, 1)$ and their affine transformations $f(A) = (0,0), f(B) = (1, 0), f(C) = (0, 1)$
I must find all points $x$ on the plane that have the affine transformation $f(x) = (1, 1)$.
When I look at the points and their transformations I think that $x=(0,0,1)$ should be a possible solution, but how do I know if there are also other points that get mapped to $(1,1)$? I tried to use the formula $x'=a+Ax$ and find values for $A$ to get the transformation but had no success with that.
Notice that your original plane is $z=1$. So you can ignore the last coordinate. Then you have a transformation: $$\vec y= \begin{bmatrix}a & b\\c & d\end{bmatrix}\vec x+\begin{bmatrix}e\\f\end{bmatrix}$$ Now we plug in your three points (only the first two coordinates) to get the following system of equations: $$a+b+e=0\\c+d+f=0\\a+0+e=1\\c+0+f=0\\0+b+e=0\\0+d+f=1$$ From the first and third you get $b=-1$, from the second and fourth you get $d=0$. Plugging in these values in the last two equations, you have $e=1$ and $f=1$. Finally, $a=0$ and $c=-1$. So now your original transformation is $$\vec y= \begin{bmatrix}0 & -1\\-1 & 0\end{bmatrix}\vec x+\begin{bmatrix}1\\1\end{bmatrix}$$ We want points that transform into $(1,1)$. $$\begin{bmatrix}1\\1\end{bmatrix}= \begin{bmatrix}0 & -1\\-1 & 0\end{bmatrix}\vec x+\begin{bmatrix}1\\1\end{bmatrix}$$ Since the determinant of the matrix is non-zero, you get that the only solution is $\vec x=(0,0)$, or in the original plane $\vec x=(0,0,1)$