I have that a ray of light is emitted from the point $(3,-2,-1)$ and reflected off the plane $x-2y-2z=0$. The reflected ray passes through the point $(4,-1,-6)$. I have to find the point at which the ray hit the plane.
My approach was to realise that the angle to the normal of the reflected and incident ray will be the same. Then letting the required point of incidence be $P(a,b,c)$, the given points be $A(3,-2,-1)$ and $B(4,-1,-6)$, and the normal to the plane be $n=(1,-2,-2)$ If $w$ is the angle of incidence, then $|AP|cosw = (n|AP)$ Also, $|BP|cosw = (n|BP)$ To get a third equation, we have that $P$ is on the plane so $P$ satisfies $a-2b-2c=0$
This gave me a terrible system of equations. There must be a better way around this problem. What is it?
Here's how I'd do it.
For each point $A,B$ find the intersection with the plane as you travel along $\vec{n}.$
Call these $A_p = (a_1, a_2, a_3)$ and $B_p = (b_1, b_2, b_3)$. Call the distances to the plane $d_A, d_B,$ respectively.
This is eight equations in eight unknowns, but it's not that messy. For $A_p, d_A$:
$$3 + d_A = a_1 \\ -2 - 2d_A = a_2 \\ -1 - 2d_A = a_3 \\ a_1 - 2a_2 - 2a_3 = 0$$
And for $B_p, d_B$:
$$4 + d_B = b_1 \\ -1 - 2d_B = b_2 \\ -6 - 2d_B = b_3 \\ b_1 - 2b_2 - 2b_3 = 0$$
Now, you're in a position to use similar triangles $\triangle AA_pP, \triangle BB_pP$.
The proportionality factor is $f = \left|d_A/d_B\right|$, and then find $P$ by starting at $A_p$ and going fraction $f$ of the distance to $B_p$ along the direction from $A_p$ to $B_p$.