What are the coordinates after A’ (5,6) rotate 270 degrees clockwise

1 answer

To find the coordinates of the point after rotating A' (5,6) 270 degrees clockwise, we can use the rotation formula:

x' = x * cos(theta) - y * sin(theta)
y' = x * sin(theta) + y * cos(theta)

Plugging in the values, we get:

x' = 5 * cos(-270) - 6 * sin(-270)
y' = 5 * sin(-270) + 6 * cos(-270)

Calculating the values:

x' = 5 * 0 - 6 * 1 = -6
y' = 5 * -1 + 6 * 0 = -5

Therefore, the coordinates after rotating A' (5,6) 270 degrees clockwise are (-6, -5).