Question 89036
<pre><font size = 3><b>
Find the slope of the line passing through the points (-1, -2) and (1, 4).

The graphical way:

Plot those two points:

{{{drawing(400,400,-6,6,-6,6,

  graph(400,400,-6,6,-6,6), locate(-2.79,-1.7,"(-1,-2)o"),
locate(.87,4.25,"o(1,4)") 

 )}}}

Draw a line through them:

{{{drawing(400,400,-6,6,-6,6, 

  graph(400,400,-6,6,-6,6,3x+1), locate(-2.79,-1.7,"(-1,-2)o"),
locate(.87,4.25,"o(1,4)")   )}}} 

Start at the bottom point and draw a horizontal line until you
reach a point directly in line vertically with the other point:

{{{drawing(400,400,-6,6,-6,6, line(-1,-2,1,-2),

  graph(400,400,-6,6,-6,6,3x+1), locate(-2.79,-1.7,"(-1,-2)o"),
locate(.87,4.25,"o(1,4)") )}}} 

This line is 2 units long, as you can see by using the x-axis as
a ruler. It's length called the "change in x", which is also 
called the "horizontal change" of just the "RUN". Since to draw 
it we had to move our pencil to the RIGHT, we consider it positive, 
+2. (If we had to go left we would give
it a negative sign.). So we label the RUN as +2:

{{{drawing(400,400,-6,6,-6,6, line(-1,-2,1,-2),

  graph(400,400,-6,6,-6,6,3x+1), locate(-2.79,-1.7,"(-1,-2)o"),
locate(.87,4.25,"o(1,4)"), locate(-.9,-2.1,"RUN=+2") )}}} 

From the end of the "RUN", we draw a vertical line to the
second point.

{{{drawing(400,400,-6,6,-6,6, line(-1,-2,1,-2),

  graph(400,400,-6,6,-6,6,3x+1), locate(-2.79,-1.7,"(-1,-2)o"),
locate(.87,4.25,"o(1,4)"), line(1,-2,1,4), locate(-.9,-2.1,"RUN=+2") )}}}

This line is 6 units long, as you can see by using the y-axis as
a ruler. It's length called the "change in y", which is also 
called the "vertical change" of just the "RISE". Since to draw 
it we had to move our pencil UPWARD, we consider it positive, 
+2. (If we had to go DOWNWARD we would give
it a negative sign.). So we label the RISE as +6:

{{{drawing(400,400,-6,6,-6,6, line(-1,-2,1,-2),

  graph(400,400,-6,6,-6,6,3x+1), locate(-2.79,-1.7,"(-1,-2)o"),
locate(.87,4.25,"o(1,4)"), line(1,-2,1,4), locate(-.9,-2.1,"RUN=+2"),
locate(1.2,1,"RISE=+6") )}}} 

Now the slope is defined as {{{(RISE)/RUN}}} = {{{6/2}}} = 3.

That's the slope, m = 3

Edwin</pre>