Given point C (4,6) on the triangle what are the new coordinates of the point after the triangle is rotated 180 degrees clockwise

To find the new coordinates of point C after rotating the triangle 180 degrees clockwise, we can use the following transformation matrix:

|-1 0|
| 0 -1|

Multiplying this matrix with the coordinates of point C, we get:

|-1 0| |4| |-4|
| 0 -1| * |6| = |-6|

Therefore, the new coordinates of point C after the rotation would be (-4, -6).