1. 問題の内容
点とを原点のまわりにだけ回転させたときの座標を求めます。
2. 解き方の手順
原点のまわりに角度だけ回転させる回転行列は
\begin{pmatrix}
\cos{\theta} & -\sin{\theta} \\
\sin{\theta} & \cos{\theta}
\end{pmatrix}
で表されます。今回はなので、回転行列は
\begin{pmatrix}
\cos{(-\frac{\pi}{3})} & -\sin{(-\frac{\pi}{3})} \\
\sin{(-\frac{\pi}{3})} & \cos{(-\frac{\pi}{3})}
\end{pmatrix}
=
\begin{pmatrix}
\cos{(\frac{\pi}{3})} & \sin{(\frac{\pi}{3})} \\
-\sin{(\frac{\pi}{3})} & \cos{(\frac{\pi}{3})}
\end{pmatrix}
=
\begin{pmatrix}
\frac{1}{2} & \frac{\sqrt{3}}{2} \\
-\frac{\sqrt{3}}{2} & \frac{1}{2}
\end{pmatrix}
となります。
点をだけ回転させた点をとすると
\begin{pmatrix}
x_1 \\ y_1
\end{pmatrix}
=
\begin{pmatrix}
\frac{1}{2} & \frac{\sqrt{3}}{2} \\
-\frac{\sqrt{3}}{2} & \frac{1}{2}
\end{pmatrix}
\begin{pmatrix}
1 \\ 2
\end{pmatrix}
=
\begin{pmatrix}
\frac{1}{2} + \sqrt{3} \\
-\frac{\sqrt{3}}{2} + 1
\end{pmatrix}
よって、を回転させた点の座標はです。
点をだけ回転させた点をとすると
\begin{pmatrix}
x_2 \\ y_2
\end{pmatrix}
=
\begin{pmatrix}
\frac{1}{2} & \frac{\sqrt{3}}{2} \\
-\frac{\sqrt{3}}{2} & \frac{1}{2}
\end{pmatrix}
\begin{pmatrix}
-2 \\ -2
\end{pmatrix}
=
\begin{pmatrix}
-1 - \sqrt{3} \\
\sqrt{3} - 1
\end{pmatrix}
よって、を回転させた点の座標はです。
3. 最終的な答え
をだけ回転させた点の座標は
をだけ回転させた点の座標は