To find the midpoint of the line segment between points X(5, -2) and Y(3, 0), you can use the midpoint formula, which is:
Midpoint = ((x1 + x2) / 2, (y1 + y2) / 2)
In this case:
Midpoint = ((5 + 3) / 2, (-2 + 0) / 2)
Midpoint = (8 / 2, -2 / 2)
Midpoint = (4, -1)
So, the midpoint of the line segment XY is (4, -1).