Problem 183
Question
The matrix \(\boldsymbol{R}(t)\) is defined by \(R(t)=\left[\begin{array}{cc}\cos t & \sin t \\ -\sin t & \cos t\end{array}\right]\). Show that \(\boldsymbol{R}(\mathbf{s}) \boldsymbol{R}(\boldsymbol{t})=\boldsymbol{R}(\mathbf{s}+\boldsymbol{t})\).
Step-by-Step Solution
Verified Answer
The matrix multiplication \(R(s) \cdot R(t)\) simplifies to \(R(s+t)\), hence showing the required result.
1Step 1: Define The Matrices
Define two matrices \(R(s)\) and \(R(t)\) as stated in the exercise. Now, \(R(s)\) equals \(\begin{bmatrix} \cos s & \sin s \\ -\sin s & \cos s \end{bmatrix}\) and \(R(t)\) equals \(\begin{bmatrix} \cos t & \sin t \\ -\sin t & \cos t \end{bmatrix}\).
2Step 2: Multiply the Matrices
Multiply these matrices just as you would multiply any other matrices: row by column. The (i,j) entry of the resulting matrix is found by multiplying elements of the i-th row of the first matrix by corresponding elements of the j-th column of the second matrix, then summing those products.
3Step 3: Simplify using Trigonometric Identities
While simplifying, you will encounter terms like \(\cos(s) \cdot \cos(t) + \sin(s) \cdot \sin(t)\) and \(\cos(s) \cdot \sin(t) - \sin(s) \cdot \cos(t)\). Use the cosine and sine addition identities, which are \(\cos(x+y) = \cos(x) \cdot \cos(y) - \sin(x) \cdot \sin(y)\) and \(\sin(x+y) = \sin(x) \cdot \cos(y) + \cos(x) \cdot \sin(y)\) respectively. This will simplify the resulting matrix which will look like the \(R(s+t)\) defined above.
4Step 4: Write the Final Result
Upon simplification, the resulting matrix will look exactly like \(R(s+t)\), which completes the exercise.
Key Concepts
Trigonometric IdentitiesRotation MatricesCosine and Sine Addition Formulas
Trigonometric Identities
Trigonometric identities are equations involving trigonometric functions like sine and cosine, which are true for all the values of the variable(s) involved. These identities are very helpful in simplifying and solving trigonometric problems.
Some of the commonly used trigonometric identities include:
Some of the commonly used trigonometric identities include:
- Pythagorean Identity: \( \sin^2 x + \cos^2 x = 1 \)
- Angle Sum Identities: - Cosine Addition Identity: \( \cos(x + y) = \cos x \cos y - \sin x \sin y \)
- Sine Addition Identity: \( \sin(x + y) = \sin x \cos y + \cos x \sin y \) - Double Angle Formulas: - \( \cos(2x) = \cos^2 x - \sin^2 x \)
Rotation Matrices
Rotation matrices are used to rotate points in a plane or in space. They are a fundamental tool in linear algebra, especially within the field of computer graphics and robotics.
Consider the 2D rotation matrix:
The important feature of rotation matrices is that they preserve the length of vectors and the angle between vectors. Thus, they are a form of orthogonal matrix, ensuring that the transformation is purely a rotation, with no scaling or shearing. Using matrices for rotation is powerful because they can be easily composed by multiplying them together—offering an easy way to combine multiple rotations.
Consider the 2D rotation matrix:
- \( R(\theta) = \begin{bmatrix} \cos \theta & \sin \theta \ -\sin \theta & \cos \theta \end{bmatrix} \)
The important feature of rotation matrices is that they preserve the length of vectors and the angle between vectors. Thus, they are a form of orthogonal matrix, ensuring that the transformation is purely a rotation, with no scaling or shearing. Using matrices for rotation is powerful because they can be easily composed by multiplying them together—offering an easy way to combine multiple rotations.
Cosine and Sine Addition Formulas
The cosine and sine addition formulas are specific trigonometric identities that help in finding the cosine and sine of the sum of two angles. These formulas break down a complex expression into simpler components that can be easily evaluated.
The formulas are:
In the context of the original exercise, when multiplying two rotation matrices, the cosine and sine addition formulas allow for the simplification of terms in the resulting matrix. This ultimately shows that multiplying two rotation matrices is equivalent to a single rotation by the sum of the angles—demonstrating the practical applicability of these formulas.
The formulas are:
- Cosine Addition Formula:
\(\cos(x + y) = \cos(x) \cdot \cos(y) - \sin(x) \cdot \sin(y)\) - Sine Addition Formula:
\(\sin(x + y) = \sin(x) \cdot \cos(y) + \cos(x) \cdot \sin(y)\)
In the context of the original exercise, when multiplying two rotation matrices, the cosine and sine addition formulas allow for the simplification of terms in the resulting matrix. This ultimately shows that multiplying two rotation matrices is equivalent to a single rotation by the sum of the angles—demonstrating the practical applicability of these formulas.
Other exercises in this chapter
Problem 181
If \(A=\left[\begin{array}{cc}0 & 1 \\ 1 & 1\end{array}\right], B=\left[\begin{array}{cc}0 & -1 \\ 1 & 0\end{array}\right]\), show that \((A+B)(A-B) \neq A^{2}-
View solution Problem 182
If \(A=\left[\begin{array}{ll}1 & 2 \\ 3 & 4\end{array}\right], B=\left[\begin{array}{ll}2 & 1 \\ 4 & 2\end{array}\right], C=\left[\begin{array}{ll}5 & 1 \\ 7 &
View solution Problem 184
If \(A=\left[\begin{array}{cc}\cos \alpha & -\sin \alpha \\ \sin \alpha & \cos \alpha\end{array}\right], B=\left[\begin{array}{cc}\cos \beta & -\sin \beta \\\ \
View solution Problem 185
If \(a, b, c, d\) are real numbers and \(A=\left[\begin{array}{ll}a & b \\ c & d\end{array}\right]\), prove that \(A^{2}-(a+d) A+(a d-b c) I=O\).
View solution