Say I have a triangle with vertices $(0,0), (2,4), (4,0)$ that I want to rotate along the origin. Rotation by multiples of $90^{\circ}$ is simple. However, I want to rotate by something a bit more complicated, such as $54^{\circ}$. How do I figure out where the vertices would be then?
2026-04-08 07:34:47.1775633687
On
Rotations by degrees other than $90, 180,$ and $270$.
1k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
There are 2 best solutions below
0
On
In the answer to this question, I mentioned the formula for the rotation matrix; one merely takes the product of the rotation matrix with the coordinates (treated as 2-vectors) to get the new rotated coordinates. Note that I gave the matrix for clockwise rotation; for anticlockwise rotation, negate the angle (thus switching the sign of the two sine components).
One way is to use complex numbers. Multiplying by $\cos\theta+i\sin\theta$ rotates by $\theta$ about 0, so you could multiply $(2+4i)(\cos 54^\circ+i\sin 54^\circ)$ to get the rotation image of (2,4).