Question is
Show that the line of intersection of the planes $$ x + 2y + 3z = 8 \quad\text{and}\quad 2x + 3y + 4z = 11 $$ is coplanar with the line $$\frac{x+1}{1}=\frac{y+1}{2}=\frac{z+1}{3}$$
Also find the equation of the plane containing them.
$\text{Any hint how could I proceed ?}$
I know how to find the vector the line of intersection would be parallel to , which is given by cross product of the normal vectors of the two planes .
But that does not help in finding the equation of the line of intersection .
What I know is that to prove that two lines are coplanar we have to show that they intersect i.e the shortest distance between them is zero .
But unfortunately this formula again requires one point through which the line of intersection would pass which is unknown.
ps - I am in school yet :)
This might not be optimal, but here's a program you can follow:
1) Use the equations of your first and second lines to produce vectors which are contained in those lines.
2) Compute $\vec{n}$ the cross product of these vectors.
3) Using $\vec{n}$, find an equation of a plane containing one of the lines. Check to see that it contains both.
Let me know if you have trouble!
EDIT: I'll give you more information about 1). To get an equation of the first line, subtrace 2 times the first equation from the second. So we have $$\begin{array}{lll} &2x+3x+4z=11\\ -&2[x+2y+3z=8]\\\hline &0+-y-2z=-5 \end{array}$$ So, if you choose a $y$-coordinate, the $z-$coordinate of the point on the line with your chosen $y$ is $z=(-5+y)/-2$. Plugging this into equation 2, you get $2+3y+4[(-5+y)/-2]=11$ which gives $x=(21-5y)/2$. In particular, you notice that we have a parametrization for the line by $$y\mapsto (21/2-5/2y,y,5/2-2y)$$ with vector $\langle -5/2,1,-2\rangle$