Yaw,Pitch and Roll Multiplication

abubakr
Messages
2
Reaction score
0
If I have (α1,β1,γ1) and (α2,β2,γ2) as two set of rotation angles in radians.Where α is Yaw of α about z axis, β is pitch about y-axis and γ is roll about x axis. My question is when I multiply the two rotation sets what would be the result? Would it be simple addition of angles if I extract the angle information from result i-e (α1+α2,β1+β2,γ1+γ2)?
 
Physics news on Phys.org
No. It doesn't work like that.
 
You need to multiply the matrices representing the rotations.
A rotation of angle \alpha about the z axis is given by
\begin{bmatrix}cos(\alpha) & -sin(\alpha) & 0 \\ sin(\alpha) & cos(\alpha) & 0 \\ 0 & 0 & 1\end{bmatrix}

A rotation of angle \beta about the y-axis is given by
\begin{bmatrix}cos(\beta) & 0 & sin(\beta)\\ 0 & 1 & 0 \\ -sin(\beta) & 0 & cos(\beta)\end{bmatrix}

A rotation of angle \gamma about the x-axis is given by
\begin{bmatrix}1 & 0 & 0 \\ 0 & cos(\gamma) & -sin(\gamma)\\0 & sin(\gamma) & cos(\gamma)\end{bmatrix}

A rotation of "Yaw of α about z axis, β is pitch about y-axis and γ is roll about x axis" is given by the product of those three matrice and the combination of two such rotations is the product of the two rotation matrices or of all six matrices.
 
Halls, I fixed the math in your post.

abubakr, there are different conventions regarding which sine term in those matrices Halls posted is negated and the order in which the matrices are multiplied. If you want a combined yaw, pitch, roll sequence that is equivalent to your pair of yaw, pitch, roll sequence, there are algorithms to go from a matrix back to an Euler sequence. They are non-trivial and messy.
 
Thanks for answering.Halls, I exactly followed the sequence and I have check it for different values and changing order etc but its not the same.

I would like to ask (1) Is there any relationship between the final answer and initial angle values i-e if not addition then what? (2) Can we use Euler angle or Quaternion (Having no idea) or any other coordinate transformation, so that the final answer is simple addition of the angle. (I suspect that after first set of rotation,the second set of rotation apply to the 1st rotation rather than initial point.That is why they are not simply added).(3) Is it possible to apply Yaw of α about z axis and then β is pitch about y-axis but the y-axis is not transformed from 1st rotation etc.
 
##\textbf{Exercise 10}:## I came across the following solution online: Questions: 1. When the author states in "that ring (not sure if he is referring to ##R## or ##R/\mathfrak{p}##, but I am guessing the later) ##x_n x_{n+1}=0## for all odd $n$ and ##x_{n+1}## is invertible, so that ##x_n=0##" 2. How does ##x_nx_{n+1}=0## implies that ##x_{n+1}## is invertible and ##x_n=0##. I mean if the quotient ring ##R/\mathfrak{p}## is an integral domain, and ##x_{n+1}## is invertible then...
The following are taken from the two sources, 1) from this online page and the book An Introduction to Module Theory by: Ibrahim Assem, Flavio U. Coelho. In the Abelian Categories chapter in the module theory text on page 157, right after presenting IV.2.21 Definition, the authors states "Image and coimage may or may not exist, but if they do, then they are unique up to isomorphism (because so are kernels and cokernels). Also in the reference url page above, the authors present two...
When decomposing a representation ##\rho## of a finite group ##G## into irreducible representations, we can find the number of times the representation contains a particular irrep ##\rho_0## through the character inner product $$ \langle \chi, \chi_0\rangle = \frac{1}{|G|} \sum_{g\in G} \chi(g) \chi_0(g)^*$$ where ##\chi## and ##\chi_0## are the characters of ##\rho## and ##\rho_0##, respectively. Since all group elements in the same conjugacy class have the same characters, this may be...
Back
Top