Okay so say we're given the points (2,4) and (-3,12).
1. Find the distance between the two points
d=sqrt((x1-x2)^2 + (y1-y2)^2)
= sqrt((2-(-3))^2 + (4-12)^2)
= sqrt(25 +64) = sort(89) = 9.4
2. What is the point that bisects the line formed by the two points listed (aka what is the midpoint)
midpoint = ((x1+x2)/2),((y1+y2)/2)
= (((2+(-3))/2),((4+12)/2))
=(-1/2,8)