First of all, I am not sure the correct word is "affine" in english however it is "affin" in Swedish and I can't find the english counterpart. Affine form is basically the non-parametric equation of a plane: a
$$ax + by + cz + d = 0$$
I am given three points:
$$P:(1,2,0)$$ $$Q:(-1,3,1)$$ $$R:(-1,1,2)$$
and asked to find the "non-parametric" equation for the plane.
My attempt is to simply solve the system of equations: $$ax + by + cz + d = 0$$
$$\begin{cases} a + 2b + d = 0 \\ -a + 3b + c + d = 0 \\ -a+b+2c+d = 0 \end{cases}$$
The process is quite tedious so I won't bore you with it, but I know it's correct and I end up with:
$$ \begin{cases} a = -2b-d \\ b = ? \\c=2b \\ d=-\frac{7}{2}b \end{cases} $$
There is too many unknown variables too solve the system of equations, but in my book the author simply assigns $b = 2$ and solves it. Why can this be done?