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 (x, y) 180 degrees counterclockwise, we can use the following formulas:

New x = -x
New y = -y

Therefore, after rotating point A (2, 6) 180 degrees counterclockwise:

New x = -2
New y = -6

Therefore, the new coordinates of point A after the rotation are (-2, -6).