To rotate a point (x, y) counterclockwise about the origin by 270 degrees, you can use the following transformation of coordinates:
- Rotate 90 degrees counterclockwise: (x, y) → (-y, x)
- Rotate 180 degrees counterclockwise: (x, y) → (-x, -y)
- Rotate 270 degrees counterclockwise: (x, y) → (y, -x)
For the point (5, 8):
- Rotate 270 degrees counterclockwise:
- New x-coordinate: y = 8
- New y-coordinate: -x = -5
So the new point after rotating (5, 8) by 270 degrees counterclockwise about the origin is (8, -5).
Thus, the correct answer is: (8, -5).