Building a rotational matrix transformation

Click For Summary
SUMMARY

The discussion centers on constructing rotational transformation matrices for both counterclockwise and clockwise angles. The counterclockwise rotation matrix is defined as [cos(θ) -sin(θ); sin(θ) cos(θ)], while the clockwise rotation matrix can be derived by substituting θ with , resulting in [cos(θ) sin(θ); -sin(θ) cos(θ)]. The key insight is that the sine function is odd and the cosine function is even, which leads to the conclusion that both matrices are transposes of each other. Additionally, performing the multiplication of these matrices confirms that they yield the identity matrix, reinforcing their correctness.

PREREQUISITES
  • Understanding of linear algebra concepts, particularly rotation matrices
  • Familiarity with trigonometric functions, specifically sine and cosine
  • Knowledge of matrix multiplication
  • Basic understanding of angle measurement in radians
NEXT STEPS
  • Study the properties of even and odd functions in trigonometry
  • Learn about matrix transformations in 2D space
  • Explore the implications of rotation matrices in computer graphics
  • Practice deriving and manipulating transformation matrices for various angles
USEFUL FOR

Mathematicians, computer graphics developers, and students studying linear algebra who are interested in understanding rotational transformations and their applications.

adrs
Messages
2
Reaction score
0
I am trying to build a rotational transformation matrix both for counterclockwise and clockwise angles.

The first matrix in the picture is for counterclockwise angles and the second one for clockwise angles. The first matrix I built corresponds to the one given in my linear algebra book so it seems the building process's OK.
However, in my book there isn't one for clockwise angles and that's why I've built one. I've been searching on the Internet and it seems that the rotational matrix for clockwise angles is the same as the one for counterclokwise ones but with the sines with opposite signs.
Nevertheless, that's not the one I've obtained If I thry for example with a 24.78 clokwise angle.

So, where does my reasoning fail? Thanks!
 

Attachments

  • escanear0001.jpg
    escanear0001.jpg
    23.8 KB · Views: 546
Physics news on Phys.org
You don't really need different matrices for "clockwise" and "counterclockwise" rotattions because rotation "clockwise" is just the same as rotation counterclockwise but with negative angle.

Rotation through angle \theta, counterclockwise, is given, as you say, by the matrix
\begin{bmatrix}cos(\theta) & -sin(\theta) \\ sin(\theta) & cos(\theta) \end{bmatrix}

so that rotation through the same angle, clockwise is the same thing with \theta replaced by -\theta:
\begin{bmatrix}cos(-\theta) & -sin(-\theta) \\ sin(-\theta) & cos(-\theta) \end{bmatrix}

Perhaps what you are missing is that cosine is an even function and sine is an odd function: cos(-\theta)= cos(\theta) and sin(-\theta)= -sin(\theta) so that the previous matrix is just
\begin{bmatrix}cos(\theta) & sin(\theta) \\ -sin(\theta) & cos(\theta) \end{bmatrix}
the "transpose" of the counterclockwise rotation.

Of course, rotating cockwise by a given angle and then counterclockwise by the same angle, or vice-versa, gets you right back to where you were before so a good exercise is to do the two multiplications
\begin{bmatrix}cos(\theta) & -sin(\theta) \\ sin(\theta) & cos(\theta) \end{bmatrix}\begin{bmatrix}cos(\theta) & sin(\theta) \\ -sin(\theta) & cos(\theta)\end{bmatrix}
and
\begin{bmatrix}cos(\theta) & sin(\theta) \\ -sin(\theta) & cos(\theta) \end{bmatrix}\begin{bmatrix}cos(\theta) & -sin(\theta) \\ sin(\theta) & cos(\theta)\end{bmatrix}
and show that they both give the identity matrix.
 

Similar threads

Replies
27
Views
5K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 2 ·
Replies
2
Views
3K
  • · Replies 1 ·
Replies
1
Views
4K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 8 ·
Replies
8
Views
2K
  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 31 ·
2
Replies
31
Views
3K
  • · Replies 6 ·
Replies
6
Views
3K