How does one convert the vector representation of a 3D-line to one represented as the intersection of two planes and vice versa?
$$\overline{r} = \overline{r}_0+t\overline{v}$$ $$a_1x+b_1y+c_1z=d_1\quad\text{and}\quad a_2x+b_2y+c_2z=d_2$$
They are two very different forms, and somehow I can't wrap my head around this.
From the vector representation of the line to planes:
Write $\bar r=(x,y,z)$. If $\bar r_0=(x_0,y_0,z_0)$ and $\bar v=(a_0,b_0,c_0)$, then $\bar r=\bar r_0+t\bar v$ is equivalent to three equations: \begin{align*} x&=x_0+t a_0, \\ y&=y_0+t b_0, \\ z&=z_0+t c_0. \\ \end{align*} Now, solve one of these equations for $t$ and put the result into the remaing two equations.
Example: Let the line be given by $\bar r_0=(2,-1,1)$ and $\bar v=(0,1,3)$. Then the three equations read \begin{align*} x&=2,\\ y&=-1+t, \\ z&=1+3t. \end{align*} To solve one of these equations for $t$, I choose the second one (you can also take the third, but not the first, because there is no $t$ anymore). This gives $t=y+1$, and putting this in the first and third gives \begin{align*} x=2,\qquad z=1+3(y+1)=3y+4. \end{align*} Rearrange these equations a little and obtain \begin{align*} x=2,\qquad 3y-z=-4. \end{align*} These are the equations for the planes.
From the planes to the vector representation of the line:
The two equations for the planes basically are a system of two linear equations. All you need to do is to solve this system for $x,y,z$. Since there are only two equations, two of the variables will eventually depend on the third. This third variable can now be relabeled into $t$. Now write everything as vectors, and that's it.
Example: Take the equations from the example above (we would like to check if we got correct planes) \begin{align*} x=2,\qquad 3y-z=-4. \end{align*} The first equation cannot be simplified anymore. The second can be solved for $y$ or $z$. I choose $z$, because then I don't have to divide by 3, which gives nicer numbers. But $y$ would also work. This gives $z=3y+4$. As above, we write this as vectors and obtain \begin{align*} \begin{pmatrix}x\\y\\z\end{pmatrix}=\begin{pmatrix}2\\y\\3y+4\end{pmatrix}=\begin{pmatrix}2\\0\\4\end{pmatrix}+y\begin{pmatrix}0\\1\\3\end{pmatrix}. \end{align*} Now you can relabel $y$ into $t$ if you like, but this obviously does not matter. Note that we got a different $\bar r_0$ this time, which does not matter, since the new $\bar r_0$ is also a point on the line given in the first example.
Remark: As has been pointed out in another answer, solutions to both processes are not unique (which is true as our second example shows).There are in fact infinitely many possibilities for the plane equations as well as for the line representation.