How would I go about finding the symmetrical image of a 3d point $t = (t_x,t_y,t_z)$, about a 3d line given with the equation $\frac{x+1}{4}=\frac{y+1}{-3}=\frac{z-15}{16}$?
Edit: To clarify: The above illustration should show what I'm looking for. The coordinates of the point $t'$ on the graph. The purple line on the graph corresponds to the equation given above. It is a freshman linear algebra & analytic geometry exam question and a simple solution (without unneccesary differential equations or other complications) doable with pen and paper in a reasonable amount of time (of up to twenty minutes say) would be appreciated.
The point you’ve labeled $c$ is the intersection of the line with the perpendicular plane to this line through $t$. The points $t$ and $t'$ are then related via the formula $$t'=t+(c-t)+(c-t)=2c-t.$$
Since most of the other answers so far bring differential calculus to bear, I’m going to give you a more geometrical approach. The direction vector of the line is $(4,-3,16)$, so the equation of the perpendicular plane through t is $$4x-3y+16z=4t_x-3t_y+16t_z.$$ Eliminate $\lambda$ from ${x+1\over4}={y+1\over-3}={z-15\over16}=\lambda$ to get a pair of linear equations that describe two planes that contain the line, e.g., $3x+4y+7=0$ and $4x-z+19=0$. The point $c$ lies at the intersection of these three planes, i.e., is the solution to the system of the three equations, which you can find using your favorite method. (Back-substitution might be reasonably fast here because two of the equations involve only two variables each.) Once you have $c$, use the formula from the beginning of this answer to compute $t'$.
Hardmath’s answer reminded me of another geometric solution. From an equation of a line of the form ${x-x_0\over a}={y-y_0\over b}={z-z_0\over c}$, you can derive the parametric form $(x_0,y_0,z_0)+\lambda(a,b,c)$, or, more succinctly, $p_0+\lambda v$. The vector $v$ gives the direction of the line. As shown in your diagram, the point $c$ is the orthogonal projection of $t$ onto the line, which can be computed using a standard formula: $$c=p_0+{(t-p_0)\cdot d\over d\cdot d}d=p_0+{t\cdot d-p_0\cdot d\over d\cdot d}d.$$ The reflected point $t'$ is then obtained via the formula at top. Plugging in the values in your example, we have $$\begin{align}c &= (-1,-1,15)+{4t_x-3t_y+16t_z-\left((-1)(2)+(-1)(-3)+(15)(16)\right)\over 4^2+(-3)^2+16^2}(4,-3,16) \\ &=(-1,-1,15)+{4t_x-3t_y+16t_z-239\over16+9+256}(4,-3,16).\end{align}$$ The fraction in the second line should look familiar: it’s $\lambda$ from Hardmath’s answer.