To rotate a point (x, y) around the origin (0, 0) by 270 degrees clockwise, you can use the following transformation:
\[ (x, y) \rightarrow (y, -x) \]
So for the point (5, 8):
- \( x = 5 \)
- \( y = 8 \)
Applying the transformation:
\[ (5, 8) \rightarrow (8, -5) \]
Thus, the new point after rotating (5, 8) by 270 degrees clockwise is (8, -5).
The correct answer is:
(8, −5)