Rotate the point (5, 8) on a geometric figure 180 degrees clockwise. What is the new point

To rotate a point 180 degrees clockwise, we can simply multiply its coordinates by -1.

The given point is (5, 8).

Multiply the x-coordinate by -1: 5 * -1 = -5
Multiply the y-coordinate by -1: 8 * -1 = -8

Therefore, the new point after rotating (5, 8) 180 degrees clockwise is (-5, -8).