Find the rotation matrix for +15° out of the rotation matrix +60° without using trigonometric functions. And as much as I would love to tell you what I did so far. I don't even know where to start with this exercise..
The matrix for +60° is this. $$\left[ \begin{matrix} 1/2 & -\sqrt 3/2\\ \sqrt 3/2 & 1/2 \\ \end{matrix} \right] $$
How do I even start?
There is a far simpler way of doing this, assuming that you are allowed to use the transformation that reflects across the line $y = x$ (trivially obtained, no trig involved) and the line $y = -x$.
Let's be exact. The reflection matrices across $y = x$, denoted by $R_+$, and across $y = -x$, denoted by $R_-$, are given by $$R_+ =\left(\begin{matrix} 0 & 1\\ 1 & 0 \\ \end{matrix}\right) \qquad \qquad R_- =\left(\begin{matrix} 0 & -1\\ -1 & 0 \\ \end{matrix}\right)$$ But then $R_+$ applied to the first column of the 60 degree rotation gives the first column of the 15 degree rotation, and $R_-$ applied to the second column of the 60 degree rotation gives the second column of the 15 degree rotation.
So it can be done using very little math, no challenging multiplication, and best of all, no roots of matrices. I admit, when I first looked at it, I thought only of the way that Ross wrote of.