asked 165k views
2 votes
Which methods could you use to calculate the y-coordinate of the midpoint of a vertical line segment with endpoints at (0, 0) and (0, 15?

asked
User Kik
by
7.9k points

1 Answer

6 votes
The y-coordinate of the midpoint of a line segment is the average of the y-coordinates of the endpoints of the line segment.

This is: call y1 the y-coordinate of one endpoint and y2 the y-coordinate of the other endpoint of the line segment, then the midpoint is [y1 + y2] / 2.

The method, then, is to add the two y-coordinates and divide by 2.

For the vertical line segment with endpoints (0,0) and (0,15) theprocedure is [0 + 15] / 2 = 15/2 = 7.5, and the result is 7.5
answered
User Udayan
by
8.6k points

No related questions found