How to find angle after two rotations

  • Thread starter Thread starter 1MileCrash
  • Start date Start date
  • Tags Tags
    Angle Rotations
AI Thread Summary
To find the angle between the original axis and the rotated axis after two rotations, one can represent each rotation as a matrix multiplication. The first rotation of 30 degrees around the z-axis can be expressed with a specific rotation matrix, while the second rotation around the y-axis has its own matrix. The combined effect of these two rotations is obtained by multiplying the two matrices together. This method allows for precise calculation of the angles between the old and new axes. Utilizing quaternions is also suggested as an alternative approach for spatial rotation calculations.
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
 
Mathematics 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
\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}

A rotation around the y-axis, through 30 degrees is given by
\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}

The two rotations together would be given by the product of the two matrices.
 
Thread 'Video on imaginary numbers and some queries'
Hi, I was watching the following video. I found some points confusing. Could you please help me to understand the gaps? Thanks, in advance! Question 1: Around 4:22, the video says the following. So for those mathematicians, negative numbers didn't exist. You could subtract, that is find the difference between two positive quantities, but you couldn't have a negative answer or negative coefficients. Mathematicians were so averse to negative numbers that there was no single quadratic...
Insights auto threads is broken atm, so I'm manually creating these for new Insight articles. In Dirac’s Principles of Quantum Mechanics published in 1930 he introduced a “convenient notation” he referred to as a “delta function” which he treated as a continuum analog to the discrete Kronecker delta. The Kronecker delta is simply the indexed components of the identity operator in matrix algebra Source: https://www.physicsforums.com/insights/what-exactly-is-diracs-delta-function/ by...
Thread 'Unit Circle Double Angle Derivations'
Here I made a terrible mistake of assuming this to be an equilateral triangle and set 2sinx=1 => x=pi/6. Although this did derive the double angle formulas it also led into a terrible mess trying to find all the combinations of sides. I must have been tired and just assumed 6x=180 and 2sinx=1. By that time, I was so mindset that I nearly scolded a person for even saying 90-x. I wonder if this is a case of biased observation that seeks to dis credit me like Jesus of Nazareth since in reality...
Back
Top