Question 74105
To plot (-6,-5) start at the origin (where the x and the y axis cross) and go 6 units to the left (-6 on the x axis) and 5 units down (-5 on the y). To plot (1,3) start at the origin and go 1 units to the right (+1 on the x axis) and 3 units up (+3 on the y). Here's where the 2 points would show up. Note: The circles are supposed to be filled in points.

{{{drawing( 300, 300, -7, 7, -7, 7,

  grid( 1 ),
  locate(-6,-5,Point(-6,-5)),
  locate(1,3,Point(1,3)),
  circle(1,3,.2),
  circle(-6,-5,.2)
  

)}}}