Question 82168
<pre>
Determine the point A(x,y) so that the point A(x,y), B(0,3), C(1,0), D(7,2)
will be the vertices of a parallelogram. The answer is multiple choice, 
a. A(-6,1)
b. A(3,7)
c. A(5,6)
d. A(6,5)
<font size = 5><b>
Plot the three given points:

{{{ drawing(440,400,-2,9,-3,7, locate(.5,-.5,C(1,0)), locate(6,1.5,D(7,2)),
   
    locate(-.1,3.2,o), locate(.9,0.2,o), locate(6.9,2.2,o), 

       line(0,3,1,0), line(1,0,7,2),  locate(-1.5,3.2,B(0,3)),       

      graph(440,400,-2,9,-3,7) )}}} 

Suppose you connect them as above. Then notice
that to go from point C to point B, you have
to travel 1 unit left to (0,0) and then travel 
3 units up to B. Therefore, to go from D to A,
you must do the same. That is, you must travel
left 1 unit left to (6,2), and then travel up 
3 units to A,  So A's x-coordinate is 1 less 
than D's, and A's y-coordinate in 3 more than
D's.  So A is (6,5). That is choice (d).

{{{ drawing(440,400,-2,9,-3,7, locate(.5,-.5,C(1,0)), locate(6,1.5,D(7,2)),
   
    locate(-.1,3.2,o), locate(.9,0.2,o), locate(6.9,2.2,o), locate(6,5.5,A(6,5)), 

       line(0,3,1,0), line(1,0,7,2),  locate(-1.5,3.2,B(0,3)),       

       line(7,2,6,5), line(0,3,6,5),  

      graph(440,400,-2,9,-3,7) )}}}
 
That is the answer, but I though I might add 
that if you connect the three given points 
another way, like this:

{{{ drawing(440,400,-2,9,-3,7, locate(.5,-.5,C(1,0)), locate(6.5,2.9,D(7,2)),
   
    locate(-.1,3.2,o), locate(.9,0.2,o), locate(6.9,2.2,o), 

       line(0,3,1,0), line(0,3,7,2),  locate(-1.5,3.2,B(0,3)),       

      graph(440,400,-2,9,-3,7) )}}} 

then there is another possible solution.  
To get it, you notice
that to go from point B to point C, you have
to travel 3 units down to (0,0) and then travel 
1 unit right to B. Therefore, to go from D to A,
you must do the same. That is, you must travel
3 units down to (7,-1), and then travel right 
3 unit to A,  So A's y-coordinate is 3 less 
than D's, and A's x-coordinate in 1 more than
D's.  So A is (8,-1). That was not one of the
choices, but it could have been.

{{{ drawing(440,400,-2,9,-3,7, locate(.5,-.5,C(1,0)), locate(6.5,2.9,D(7,2)),
   
    locate(-.1,3.2,o), locate(.9,0.2,o), locate(6.9,2.2,o), 

       line(0,3,1,0), line(0,3,7,2),  locate(-1.5,3.2,B(0,3)),       

       line(1,0,8,-1), line(7,2,8,-1), locate(7,-1.5,A(8,-1)),

      graph(440,400,-2,9,-3,7) )}}}


Believe it or not there is still another solution!!! Can you
figure out where it would be? (Hint: you'd need to extend the
graph on the left side.)

Edwin</pre>