Matrix transform question about angle of rotation

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
5 replies · 3K views
Gregg
Messages
452
Reaction score
0
[itex]\left(<br /> \begin{array}{ccc}<br /> 0 & 1 & 0 \\<br /> 0 & 0 & 1 \\<br /> 1 & 0 & 0<br /> \end{array}<br /> \right)[/itex] represents a rotation.

(a) find the axis of the rotation

[itex] \left(<br /> \begin{array}{ccc}<br /> 0 & 1 & 0 \\<br /> 0 & 0 & 1 \\<br /> 1 & 0 & 0<br /> \end{array}<br /> \right)<br /> \left(<br /> \begin{array}{c}<br /> x \\<br /> y \\<br /> z<br /> \end{array}<br /> \right) = \left(<br /> \begin{array}{c}<br /> y \\<br /> z \\<br /> x<br /> \end{array}<br /> \right)[/itex]

[itex] \Rightarrow y=x=z[/itex]
(b) what is the angle of rotation

I found a perpendicular vector.

[itex] \left(<br /> \begin{array}{c}<br /> 1 \\<br /> 1 \\<br /> 1<br /> \end{array}\right) \times \left(<br /> \begin{array}{c}<br /> -1 \\<br /> 1 \\<br /> 1<br /> \end{array}<br /> \right) = 0 \Rightarrow \theta = 90[/itex]

Transform the perpendicular vector.


[itex]\left(<br /> \begin{array}{ccc}<br /> 0 & 1 & 0 \\<br /> 0 & 0 & 1 \\<br /> 1 & 0 & 0<br /> \end{array}<br /> \right)\left(<br /> \begin{array}{c}<br /> -1 \\<br /> 1 \\<br /> 1<br /> \end{array}<br /> \right)<br /> = \left(<br /> \begin{array}{c}<br /> 1 \\<br /> 1 \\<br /> -1<br /> \end{array}<br /> \right)[/itex]

Product of the perpendicular and transformed perpendicular

[itex] \left(<br /> \begin{array}{c}<br /> -1 \\<br /> 1 \\<br /> 1<br /> \end{array}<br /> \right) \times<br /> \left(<br /> \begin{array}{c}<br /> 1 \\<br /> 1 \\<br /> -1<br /> \end{array}<br /> \right) = -2i-2k[/itex]

this does not indicate the 120 degree rotation that i need.

[itex] \left(<br /> \begin{array}{c}<br /> -1 \\<br /> 1 \\<br /> 1<br /> \end{array}<br /> \right)\left(<br /> \begin{array}{c}<br /> 1 \\<br /> 1 \\<br /> -1<br /> \end{array}<br /> \right) = -1 = \sqrt{3}\cos\theta \Rightarrow \theta = 109[/itex]

Is the perpendicular vector wrong? Am I trying to solve this correctly?
 
Physics news on Phys.org
The perpendicular vector is wrong. You want to solve (1,1,1).(a,b,c)=0 to find a perpendicular. The DOT product. Then you want to find the dot product of the perpendicular with the transformed perpendicular. No cross products necessary.
 
Last edited:
Dick said:
The perpendicular vector is wrong. You want to solve (1,1,1).(a,b,c)=0 to find a perpendicular. The DOT product. Then you want to find the dot product of the perpendicular with the transformed perpendicular. No cross products necessary.

[itex] \left(<br /> \begin{array}{c}<br /> 1 \\<br /> 1 \\<br /> 1<br /> \end{array}<br /> \right).\left(<br /> \begin{array}{c}<br /> x \\<br /> y \\<br /> z<br /> \end{array}<br /> \right)=0[/itex]

[itex] <br /> \Rightarrow x+y+z=0<br /> [/itex]


[itex]b=\left(<br /> \begin{array}{c}<br /> -1 \\<br /> 0 \\<br /> 1<br /> \end{array}<br /> \right)[/itex]

[itex] <br /> \left(<br /> \begin{array}{ccc}<br /> 0 & 1 & 0 \\<br /> 0 & 0 & 1 \\<br /> 1 & 0 & 0<br /> \end{array}<br /> \right)\left(<br /> \begin{array}{c}<br /> -1 \\<br /> 0 \\<br /> 1<br /> \end{array}<br /> \right)=\left(<br /> \begin{array}{c}<br /> 0 \\<br /> 1 \\<br /> -1<br /> \end{array}<br /> \right)[/itex]


[itex] \left(<br /> \begin{array}{c}<br /> -1 \\<br /> 0 \\<br /> 1<br /> \end{array}<br /> \right).\left(<br /> \begin{array}{c}<br /> 0 \\<br /> 1 \\<br /> -1<br /> \end{array}<br /> \right) = -1[/itex]


[itex]-1 = \sqrt{2}\sqrt{2}\cos \theta[/itex]

[itex]\Rightarrow \theta = 120[/itex]
 
Last edited:
b=(-1,0,1) is a good perpendicular. But the transformed perpendicular isn't (1,0,-1) is it? There's another mistake in the dot product that makes me think you just copied it wrong.
 
Dick said:
b=(-1,0,1) is a good perpendicular. But the transformed perpendicular isn't (1,0,-1) is it? There's another mistake in the dot product that makes me think you just copied it wrong.

Ah, I see you fixed it. Much better.
 
Dick said:
Ah, I see you fixed it. Much better.

Yep made an error.Thanks for the help.