A line segment has endpoints (2, - 1) and (5, - 4) What are the new endpoints after rotating the segment 90 deg clockwise? (point)

To rotate a point (x, y) 90 degrees clockwise, we can use the following formulas:

New_x = y
New_y = -x

Applying these formulas to the endpoints of the line segment:
New_x1 = -1
New_y1 = -2

New_x2 = -4
New_y2 = -5

Therefore, the new endpoints after rotating the segment 90 degrees clockwise are (-1, -2) and (-4, -5).