Given point A(2, 6) on the triangle, where would the new point on the triangle be after a rotation of 90 degrees clockwise?

To rotate a point 90 degrees clockwise, we can use the formula:

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

For point A(2, 6), applying this formula gives:

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

Therefore, the new point on the triangle after a rotation of 90 degrees clockwise would be (6, -2).