Problem 37
Question
Let \(Z\), \(Z^{\prime},\) and \(R\) be the matrices $$\begin{array}{cc}Z=\left[\begin{array}{l}x \\\y\end{array}\right] & Z^{\prime}=\left[\begin{array}{l}X \\\Y\end{array}\right] \\\R=\left[\begin{array}{ll}\cos \phi & -\sin \phi \\\\\sin \phi & \cos \phi\end{array}\right] \end{array}$$ (a) Show that the Rotation of Axes Formulas can be written as $$Z=R Z^{\prime} \quad \text { and } \quad Z^{\prime}=R^{-1} Z$$ (b) Let \(R_{1}\) and \(R_{2}\) be matrices that represent rotations through the angles \(\phi_{1}\) and \(\phi_{2}\), respectively. Show that the product matrix \(R_{1} R_{2}\) represents a rotation through an angle \(\phi_{1}+\phi_{2} .\) IHint: Use the Addition Formulas for sine and cosine to simplify the entries of the matrix \(\left.R_{1} R_{2} .\right]\)
Step-by-Step Solution
VerifiedKey Concepts
Rotation of Axes
Matrix Multiplication
\[Z = \begin{pmatrix} \cos \phi & -\sin \phi \ \sin \phi & \cos \phi \end{pmatrix} \begin{pmatrix} X \ Y \end{pmatrix} = \begin{pmatrix} X \cos \phi - Y \sin \phi \ X \sin \phi + Y \cos \phi \end{pmatrix}\]
- The first element of the result gives the new x-coordinate.
- The second element gives the new y-coordinate.
Inverse of a Matrix
\[R^{-1} = R^T = \begin{pmatrix} \cos \phi & \sin \phi \ -\sin \phi & \cos \phi \end{pmatrix}\]
To "reverse" the rotation and get back to the original coordinates, you use this inverse:
\[Z' = R^{-1}Z\]
- This operation rotates the coordinates back by the angle \(\phi\), effectively reversing the initial transformation.
Trigonometric Addition Formulas
- \(\cos(\phi_1 + \phi_2) = \cos \phi_1 \cos \phi_2 - \sin \phi_1 \sin \phi_2\)
- \(\sin(\phi_1 + \phi_2) = \sin \phi_1 \cos \phi_2 + \cos \phi_1 \sin \phi_2\)
\[R_1 R_2 = \begin{pmatrix}\cos(\phi_1 + \phi_2) & -\sin(\phi_1 + \phi_2) \ \sin(\phi_1 + \phi_2) & \cos(\phi_1 + \phi_2) \end{pmatrix}\]This demonstrates that performing multiple rotations is equivalent to a single rotation of the summed angles. It is vital in fields like navigation, robotics, and computer graphics where understanding compound movements is necessary.