I was wondering if there was an efficient method that could solve these types of problems.
Here is the problem:
Plot the points K = (0,0), L = (7,-1), M = (9,3), P = (6,7), Q = (10,5), and R = (1,2). You will see that the triangles KLM and RPQ are congruent. Find coordinates for the point in triangle KLM that corresponds to (3,4) in triangle RPQ.
What helps is to know the general form for an isometry of the Euclidean plane: \begin{align*}f(x,y) &= (x,y) \begin{pmatrix} a & b \\ c & d \end{pmatrix} + (e,f) \\ &= (ax+cy+e,bx+dy+f) \end{align*} such that the matrix $\begin{pmatrix} a & b \\ c & d \end{pmatrix}$ is is orthonormal, meaning that $a^2+b^2=1$, $c^2+d^2=1$ and $ac+bd=0$. In addition to these three equations, you get three more equations $f(K)=R$, $f(L)=P$, $f(M)=Q$ by plugging in the coordinates of $K,L,M,R,P,Q$. You can then solve for the six unknowns $a,b,c,d,e,f$. Substituting those back into the formula for $f(x,y)$, you can then compute $f(3,4)$.