Rotate a point on a line at (-4,6) 180 degrees counterclockwise. What is the result point?

To rotate a point 180 degrees counterclockwise, we simply change the sign of both the x-coordinate and the y-coordinate of the point.

Given the point (-4, 6), rotating it 180 degrees counterclockwise would result in the point:

(-(-4), -(6)) = (4, -6)

The result point after rotating is (4, -6).