Answer :

(-5, 3)

=================

To rotate a point 90 degrees counterclockwise, you can swap the x and y coordinates and change the sign of the new x-coordinate:

  • (x, y) → (-y, x)

So, for the point (3,5), after rotation, the new coordinates would be (-5,3).

Other Questions