To rotate a point 180 degrees clockwise, you can negate both the x and y coordinates of the point.
For the point (5, 8):
- Negating the x-coordinate: -5
- Negating the y-coordinate: -8
Thus, the new point after a 180-degree clockwise rotation of (5, 8) is (-5, -8).
So the correct response is: (−5, −8).