How to find angle after two rotations

  • Context: Graduate 
  • Thread starter Thread starter 1MileCrash
  • Start date Start date
  • Tags Tags
    Angle Rotations
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 3K views
1MileCrash
Messages
1,338
Reaction score
41
I have coordinate system A with bases a, b, c.

Say I rotate the whole system 30 degrees, so that the angle between a and a' is 30 degrees.

Then I make another rotation so that this plane of rotation is perpendicular to that of the old one.

What is the angle between a and a' now?


I am trying to find the angles to use in a tensor transformation law, but I am having problems understanding what the angles will be between the old and new axes when a transformation isn't just a single rotation in one plane of the system.

Tia
 
Physics news on Phys.org
You can write any rotation as a matrix multiplication. Then two rotations is given by the product of the two matrices.

For example, if you wrote 30 degrees around the z- axis, the rotation is given by
[tex]\begin{bmatrix} cos(30) & -sin(30) & 0 \\ sin(30) & cos(30) & 0 \\ 0 & 0 & 1\end{bmatrix}= \begin{bmatrix}\frac{\sqrt{3}}{2} & -\frac{1}{2} & 0\\ \frac{1}{2} & \frac{\sqrt{3}}{2}& 0 \\ 0 & 0 & 1\end{bmatrix}[/tex]

A rotation around the y-axis, through 30 degrees is given by
[tex]\begin{bmatrix} cos(30) & 0 &-sin(30)\\ 0 & 1 & 0 \\ sin(30) & 0 & cos(30) \end{bmatrix}= \begin{bmatrix}\frac{\sqrt{3}}{2} & 0 & -\frac{1}{2} \\ 0 & 1 & 0 \\ \frac{1}{2} & 0 & \frac{\sqrt{3}}{2}\end{bmatrix}[/tex]

The two rotations together would be given by the product of the two matrices.