A plane is perpendicular to both [x,y,z] = [1, -10, 8] + s[1, 2, -1] and
[x,y,z] = [2, 5, -5] + t[2, 1, -3], and contains the point P(-1, 4, -2). Determine
if the point A(7, 10, 16) is also on this plane.
- I can't figure this one out. A vector perpendicular to the two lines found by cross product is [-5,1,0], but a plane requires two vectors. Can someone give me an insight as to how this problem can be solved? Thanks.
Since the plane is perpendicular to the given lines, then the direction vector of these lines are normal to the plane. Take, for instance, the vector $\vec{N} = (1,2,-1)$. We know the point $P(-1,4,-2)$ lies in the plane. Pick arbitrary $X(x,y,z)$ in our plane. Then, the equation of our plane is given by
$$ \vec{N} \cdot \vec{PX} = 0 \iff (1,2,-1)\cdot(x+1,y-4,z+2)=0$$
Which is equivalent to $x+2y-z-11=0$. Now, $7+2(10)-16-11 = 0$, which means that the point $(7,10,16)$ lies in the plane.