To rotate a point 180 degrees clockwise around the origin (0, 0), you can use the transformation (x, y) → (-x, -y).
Given the point (5, 8), applying the transformation:
- Take the x-coordinate: 5 becomes -5.
- Take the y-coordinate: 8 becomes -8.
So the new point after a 180-degree clockwise rotation of (5, 8) is (-5, -8).
Therefore, the correct response is:
(−5, −8)