Point (2, 6) on triangle where would new point be after rotation of 90 degrees clockwise

To rotate a point 90 degrees clockwise, we need to swap the x and y coordinates and negate the new x coordinate.

Given the point (2, 6), let's apply these steps to find the new point after rotating it 90 degrees clockwise:

1. Swap the x and y coordinates: (6, 2)
2. Negate the new x coordinate: (-6, 2)

So, the new point after a 90 degrees clockwise rotation would be (-6, 2).