14.8k views
3 votes
How can i find the midpoint of a line segment ?​

User Yngwaz
by
5.7k points

1 Answer

1 vote

Answer:

add both x coordinates and divide them by 2.

add both y coordinates and divide them by 2.

Now final product should be (x,y)

Explanation:

Example.

let's take 2 points:

(2,5) and (7, 9)

let's add both x coordinates.

2+7 = 9

now add both y coordinates.

5+9 = 14

Now divide both by 2.

Final answer should be (4.5, 7) = this is your midpoint

User Anjie
by
5.6k points