To rotate a point 90 degrees clockwise around the origin (0, 0), you can use the following transformation rule:
If the original point is \( (x, y) \), then the coordinates of the new point after a 90-degree clockwise rotation will be \( (y, -x) \).
Given the point \( A (2, 4) \):
- Apply the transformation:
- The new x-coordinate will be the original y-coordinate: \( 4 \)
- The new y-coordinate will be the negative of the original x-coordinate: \( -2 \)
So, after rotation, the coordinates of point A become \( (4, -2) \).
Thus, the correct response is:
(4, -2).