I am doing rotation of matrices at the moment, I know that if I want to rotate a point, let's say (2,1) 90 degrees clockwise, I have to multiply the matrix [ 2 1 ] * [0 1, -1 0] , but how do I find these points? if Iam asked for instance to rotate it 54 degrees anticlock wise, what matrix would I have to multiply it for? is there any formula for that?
2026-04-04 17:45:47.1775324747
On
Rotation of matrices
3k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
3
There are 3 best solutions below
0
On
Use http://en.wikipedia.org/wiki/Rotation_matrix and plug in the appropriate angle (in radians).
You would use the following rotation matrix, $A_\theta = \left[ \begin{matrix} \cos(\theta) & -\sin(\theta)\\ \sin(\theta) & \cos(\theta)\end{matrix} \right]$, where $\theta$ represents an anticlockwise rotation. $(2,1)$ can be represented as a vector $[\begin{matrix} 2 \\ 1\end{matrix}]$ and multiplied on the right by the rotation matrix to get your answer.