How do I rotate a linear function around the z-axis?

AI Thread Summary
To rotate a linear function around the z-axis, the transformation involves applying a rotation matrix to the coordinates. The function f(x', y') = C in the rotated system can be expressed in the original (x, y) coordinates, where the gradient is defined as 1/tan(α). The shift in the x-coordinate is determined to be C/cos(α). To verify that the function remains constant in the (x', y') system, visualizing the line f(x', y') = C before and after rotation is essential. This process highlights the need for understanding how parameters change under rotation.
Niles
Messages
1,834
Reaction score
0

Homework Statement


I have two coordinate system (x, y), (x', y') that differ by a rotation around the z-axis by an angle \alpha. In the coordinate system (x', y') I have a function f(x', y') = C, where C is a constant.

I would like to express f in the coordinate system (x,y), where it is a linear function x\nabla +y_0. The gradient \nabla of this function is 1/\tan(\alpha).


The Attempt at a Solution


I need to find the shift in x now. I get that this is C/\cos(\alpha). Is there a way for me to test that this function indeed is constant in the coordinate system (x', y')?
 
Physics news on Phys.org
Draw a picture of f(x',y') = C in your x'-y' coordinate system. Now imagine that this coordinate system is rotated about the origin by an angle alpha. What happens to the line f(x',y') = C? Don't you need more than one parameter to express this line in the (x,y) system?
 
Rotation about the z-axis through an angle \alpha is given by the matrix
\begin{bmatrix}cos(\alpha) & -sin(\alpha) & 0 \\ sin(\alpha) & cos(\alpha) & 0 \\ 0 & 0 & 1\end{bmatrix}
 
I picked up this problem from the Schaum's series book titled "College Mathematics" by Ayres/Schmidt. It is a solved problem in the book. But what surprised me was that the solution to this problem was given in one line without any explanation. I could, therefore, not understand how the given one-line solution was reached. The one-line solution in the book says: The equation is ##x \cos{\omega} +y \sin{\omega} - 5 = 0##, ##\omega## being the parameter. From my side, the only thing I could...
Back
Top