I am trying to convert the explicit solution of a linear system back to its implicit form.
I am given the following system of equations:
$$ \begin{cases} x + y + z = 0 \\ x - y + 2z = 1 \end{cases} $$
We can solve the system using gaussian elemination to obtain the explicit solution:
$$ (x,y,z) = \left(\frac{1}{2}-\frac{3}{2}t,\ -\frac{1}{2}+\frac{1}{2}t,\ t\right) \text{ where } t \in \mathbb{R} $$
Now we can describe the solution set of this system in 2 ways:
Implicit solution:
$$ \{ \ \left(x,y,z\right) \ | \ x + y + z = 0 \text{ and } x - y + 2z = 1 \ \} $$
Explicit solution:
$$ (x,y,z) = \left(\frac{1}{2}-\frac{3}{2}t,\ -\frac{1}{2}+\frac{1}{2}t,\ t\right) \text{ where } t \in \mathbb{R} $$
From the above, we know how to convert from the implicit to the explicit solution. But I do not know how to convert from the explicit to implicit solution. Could somebody please advise me?