To rotate a point 90 degrees clockwise around the origin in the coordinate plane, you can use the following transformation:
If a point has coordinates \((x, y)\), after a 90-degree clockwise rotation, its new coordinates will be \((y, -x)\).
Starting with point \(A(2, 4)\):
- \(x = 2\)
- \(y = 4\)
Applying the transformation:
- New \(x\)-coordinate: \(y = 4\)
- New \(y\)-coordinate: \(-x = -2\)
Thus, the new coordinates after the rotation are \((4, -2)\).
The correct response is: (4, -2).