Say I have a parametric line such as
$$x=4+t$$ $$y=-5-t$$ $$z=4+2t$$
How would I go about finding two planes that intersect that line? So far I have separated the line into a point and its direction
$$P(4,-5,4), v=<1,-1,2>$$
I am not sure on how to proceed from here. Please help?
To define a plane you need a normal vector and a point on the plane.
$\mathbf n = (1,1,0), p=(4,-5,4)$ will do.
$n\cdot(x,y,z) = n\cdot p$ will define one plane.
$x + y = -1$
$\mathbf n = (0,2,1), p=(4,-5,4)$ can be used for the second
$2y + z = -6$
Alternative.
you can find a non-parallel vector.
$(x,y,z) = (4,-5,4) + t(1,-1,2) + s(1,1,1)$ and either leave it in vector form, or convert it to a parametric form.