Solved Problems on Rotation Matrix

Example 1: If A (1, -2) is rotated in the counterclockwise direction by 60°, what are the coordinate values?

Solution:

We know that, [Tex]\begin{bmatrix} x’\\ y’ \end{bmatrix}=\begin{bmatrix} cos\theta & -sin\theta \\ sin\theta & cos\theta \end{bmatrix} \begin{bmatrix} x\\ y \end{bmatrix}[/Tex]

Thus, [Tex]\begin{bmatrix} x’\\ y’ \end{bmatrix}=\begin{bmatrix} cos60 & -sin60 \\ sin60 & cos60 \end{bmatrix} \begin{bmatrix} 1\\ -2 \end{bmatrix}[/Tex]

On solving we get, (x’, y’) = (1/2 + √3, 1 + √3/2)

Example 2: If B (2, 3) is rotated in the clockwise direction by 90°, what are the coordinate values?

Solution:

We know that [Tex]\begin{bmatrix} x’\\ y’ \end{bmatrix}=\begin{bmatrix} cos\theta & -sin\theta \\ sin\theta & cos\theta \end{bmatrix} \begin{bmatrix} x\\ y \end{bmatrix}[/Tex]

Thus, [Tex]\begin{bmatrix} x’\\ y’ \end{bmatrix}=\begin{bmatrix} cos(-90) & -sin(-90) \\ sin(-90) & cos(-90) \end{bmatrix} \begin{bmatrix} 2\\ 3 \end{bmatrix}[/Tex]

[Tex]\begin{bmatrix} x’\\ y’ \end{bmatrix}=\begin{bmatrix} 0& 1\\ -1& 0 \end{bmatrix} \begin{bmatrix} 2\\ 3 \end{bmatrix}[/Tex]

On solving we get, (x’, y’) = (3, -2)

Example 3: If C (5, 2, 6) is rotated in the counterclockwise direction by 180° about the x-axis, what are the coordinate values?

Solution:

Since, [Tex]\begin{bmatrix} x’\\y’\\z’ \end{bmatrix}= \begin{bmatrix} 1 & 0 & 0 \\ 0 & cos(\gamma) & -sin(\gamma) \\ 0 & sin(\gamma) & cos(\gamma) \end{bmatrix} \begin{bmatrix} x\\y\\z \end{bmatrix}[/Tex]

Therefore, [Tex]\begin{bmatrix} x’\\y’\\z’ \end{bmatrix}= \begin{bmatrix} 1 & 0 & 0 \\ 0 & cos(180) & -sin(180) \\ 0 & sin(180) & cos(180) \end{bmatrix} \begin{bmatrix} 5\\2\\6 \end{bmatrix}[/Tex]

[Tex]\begin{bmatrix} x’\\y’\\z’ \end{bmatrix}= \begin{bmatrix} 1 & 0 & 0 \\ 0 & -1 & 0 \\ 0 &0 & -1 \end{bmatrix} \begin{bmatrix} 5\\2\\6 \end{bmatrix}[/Tex]

On solving we get (x’, y’, z’) = (5, -2, -6)

Rotation Matrix

Rotation Matrix is a matrix used to perform a rotation in a coordinate space. Rotation matrices are widely used in various fields, including computer graphics, robotics, physics, and navigation systems, to describe and manipulate the orientation of objects in space. In this article, we will discuss Rotation Matrices including 2D and 3D rotation matrices.

Table of Content

  • What is a Rotation Matrix?
    • Definition of Rotation Matrix
    • Example of Rotation using Matrix
  • Representation of Rotations in Mathematics
  • 2D Rotation Matrix
  • Derivation of the 2D Rotation Matrix
    • Rotating Points in a 2D Plane
  • 3D Rotation Matrix
  • Derivation of the 3D Rotation Matrix
    • Rotating Points in 3D Coordinates
  • Properties of Rotation Matrices
  • Euler’s Rotation Theorem
  • Applications of Rotation Matrices
  • Conclusion

Similar Reads

What is a Rotation Matrix?

A rotation matrix is a matrix used to perform a rotation in a Euclidean space. For 2D and 3D spaces, which are the most common cases in applications across different fields, rotation matrices rotate points or vectors about an origin without changing their magnitude....

Representation of Rotations in Mathematics

In mathematics, rotations can be represented in various ways, including:...

2D Rotation Matrix

The process of rotating an object with respect to an angle in a two-dimensional plane is 2D rotation. We accomplish this rotation with the help of a 2 × 2 rotation matrix that has the standard form as given below:...

Derivation of the 2D Rotation Matrix

Let G be a vector in the x-y plane with a length r and it traces out an angle v with respect to the x-axis. We now rotate G in the counter-clockwise direction by an angle θ. If (x, y) were the original coordinates of the tip of the vector G, then (x’, y’) will be the new coordinates after rotation....

3D Rotation Matrix

In 3D space, rotation can occur about the x, y, or z-axis. Such a type of rotation that occurs about any one of the axis is known as a basic or elementary rotation. Given below are the rotation matrices that can rotate a vector through an angle about any particular axis....

Derivation of the 3D Rotation Matrix

To derive the x, y, and z rotation matrices, we will follow the steps similar to the derivation of the 2D rotation matrix. A 3D rotation is defined by an angle and the rotation axis. Suppose we move a point Q given by the coordinates (x, y, z) about the x-axis to a new position given by (x’, y,’ z’)....

Properties of Rotation Matrices

Rotation matrices possess several important properties:...

Applications of Rotation Matrices

Some of the most common applications of rotation of matrices are:...

Conclusion

Rotation matrices are a fundamental concept in mathematics and have numerous applications in various fields, including computer graphics, robotics, physics, and navigation systems. Understanding the properties and representations of rotation matrices is crucial for working with spatial transformations and orientation-related problems....

Solved Problems on Rotation Matrix

Example 1: If A (1, -2) is rotated in the counterclockwise direction by 60°, what are the coordinate values?...

Practice Problems

Q1: State whether true or false: Is [Tex]\begin{bmatrix} 5 & -1\\2&0 \end{bmatrix}[/Tex] a rotation matrix....

FAQs on Rotation Matrix

What is the difference between a rotation matrix and a transformation matrix?...