How do you find the distance and midpoint between two points in the coordinate plane?

2 answers

d = √(x2-x1)^2 + (y2-y1)^2
m = ((x1+x2)/2,(y1+y2)/2)

a web search (or a look at your text) will provide many examples
Thank you so much for the help