Given point A(2, 6) on the triangle, what are the new coordinates of the point after the triangle is rotated 180 degrees counterclockwise?

To rotate a point 180 degrees counterclockwise, we can use the following formula:

(x', y') = (-x, -y)

Applying this formula to point A(2, 6), we get:
x' = -2
y' = -6

Therefore, the new coordinates of point A after the triangle is rotated 180 degrees counterclockwise are (-2, -6).