
Bradford T. answered 12/20/20
Retired Engineer / Upper level math instructor
To rotate a point counter-clockwise you can use the equations:
𝜃 = 60°, (4, 1)
x' = xcos(θ)-ysin(θ)
y' = xsin(θ)+ycos(θ)
x' = 4cos(60º)-sin(60º) = 4(1/2) - (√3/2) = (4-√3)/2 = 1.1339
y' = 4sin(60º)+cos(60º)=4(√3/2)+(1/2) = (4√3+1)/2 = 3.964
(1.1339, 3.964)
If you are familiar with matrices, you can use:
[x'] [cos(θ) -sin(θ)] [x]
[y'] =[sin(θ) cos(θ)][y]