I know how to convert "plane" form of equation of a line to parametric/canonical form. Basically I know all combinations, but this one:
I have an equation of a line in parametric form:
$$\begin{cases} x = -7t + 5 \\ y = 2t - 7 \\ z = -5t + 2 \quad \quad \quad t \in \mathbb{R}\end{cases}$$
and I need to find the very same line, but in "plane" form.
By "plane" form I mean such form:
$$\begin{cases} A_{1}x+B_{1}y + C_{1}y + D_{1} = 0 \\ A_{2}x + B_{2}y + C_{2}y + D_{2} = 0\end{cases}$$
Where $A_{i}, B_{i}, C_{i}$ is corresponding plane's normal vector $\vec{n_{i}}=[A_{i},B_{i},C_{i}]$
Side information:
$$\vec{n_{1}} \times \vec{n_{2}} = [-7, 2, -5]$$
The intersection of both planes is my line.
Hint: With $$t=\frac{y+7}{2}$$ we get $$x=-\frac{7}{2}(y+7)+5$$ $$z=-\frac{5}{2}(y+7)+2$$