Question 851148
  <pre><font size = 3 color = "indigo"><b>
Hi,
(3, 4) and 
(-3, -2)  {{{m[segment] = (4-(-2))/(3-(-3)) = 1}}}  {{{m =(y[2] - y[1])/(x[2] - x[1]) }}}
and midpoint is (0,1)   Midpoint Pt(x,y):  ( {{{(x[1] + x[2])/2}}}, {{{(y[1] + y[2])/2  )}}})
 perpendicular bisector of the line segment {{{m[bisector] = green(-1)}}} 
***Using point-slope form, {{{y - y[1] = m(x - x[1])}}}
 y-1 = -1(x-0)
  y = -x + 1
{{{drawing(300,300,   -6, 6, -6, 6, grid(1), 
circle(0, 1,0.2),
circle(3, 4,0.2),
circle(-3, -2,0.2),
line(3,4,-3,-2),
graph( 300, 300, -6, 6, -6, 6,0, -x+1) )}}}