point -3,3 is rotated 270 degrees clockwise. what is the new point

To rotate a point 270 degrees clockwise, we can think of it as 90 degrees counterclockwise.

To rotate a point (x, y) 90 degrees counterclockwise, the new coordinates are (-y, x).

So for the point (-3, 3), if we rotate it 270 degrees clockwise, the new point would be:

(-3, 3) -> (-3, -3)

Therefore, the new point is (-3, -3).