To rotate a point 90 degrees counterclockwise around the origin, you can use the transformation rule:
If the original point is (x, y), then after a 90 degrees counterclockwise rotation, the new coordinates (x', y') will be:
\[ x' = -y \] \[ y' = x \]
For point A (2, 4):
- \( x' = -y = -4 \)
- \( y' = x = 2 \)
So, after the rotation, the new point A' is (-4, 2).
Therefore, the new point is (-4, 2).