"

3.2 Midpoint and Distance Between Points

Finding the Distance Between Two Points

The logic used to find the distance between two data points on a graph involves the construction of a right triangle using the two data points and the Pythagorean theorem (a2+b2=c2) to find the distance.

To do this for the two data points (x1,y1) and (x2,y2), the distance between these two points (d) will be found using Δx=x2x1 and Δy=y2y1.

Using the Pythagorean theorem, this will end up looking like:

d2=Δx2+Δy2

The distance between (x1, y1) and (x2, y2) is the length of the hypotenuse.

or, in expanded form:

d2=(x2x1)2+(y2y1)2

 

Delta x = x2 minus x1 (bottom leg). Delta y = y2 minus y1 (right leg).

On graph paper, this looks like the following. For this illustration, both Δx and Δy are 7 units long, making the distance d2=72+72 or d2=98.

Triangle d sup 2, delta y sup 2, delta x sup 2

The square root of 98 is approximately 9.899 units long.

Example 3.2.1

Find the distance between the points (6,4) and (6,5).

Start by identifying which are the two data points (x1,y1) and (x2,y2). Let (x1,y1) be (6,4) and (x2,y2) be (6,5).

Now:

Δx2=(x2x1)2 or [6(6)]2 and Δy2=(y2y1)2 or [5(4)]2.

This means that

d2=[6(6)]2+[5(4)]2

or

d2=[12]2+[9]2

which reduces to

d2=144+81

or

d2=225

Taking the square root, the result is d=15.

Finding the Midway Between Two Points (Midpoint)

The logic used to find the midpoint between two data points (x1,y1) and (x2,y2) on a graph involves finding the average values of the x data points (x1,x2) and the of the y data points (y1,y2). The averages are found by adding both data points together and dividing them by 2.

In an equation, this looks like:

xmid=x2+x12 and ymid=y2+y12

Example 3.2.2

Find the midpoint between the points (2,3) and (6,9).

Triangle with midpoint formual x sup 2 + x sup1/2 plus y sup 2 + y sup 1 over 2

We start by adding the two x data points (x1+x2) and then dividing this result by 2.

xmid=(2+6)2

or

42=2

The midpoint’s y-coordinate is found by adding the two y data points (y1+y2) and then dividing this result by 2.

ymid=(9+3)2

or

122=6

The midpoint between the points (2,3) and (6,9) is at the data point (2,6).

Questions

For questions 1 to 8, find the distance between the points.

  1.  (−6, −1) and (6, 4)
  2. (1, −4) and (5, −1)
  3. (−5, −1) and (3, 5)
  4. (6, −4) and (12, 4)
  5. (−8, −2) and (4, 3)
  6. (3, −2) and (7, 1)
  7. (−10, −6) and (−2, 0)
  8. (8, −2) and (14, 6)

For questions 9 to 16, find the midpoint between the points.

  1. (−6, −1) and (6, 5)
  2. (1, −4) and (5, −2)
  3. (−5, −1) and (3, 5)
  4. (6, −4) and (12, 4)
  5. (−8, −1) and (6, 7)
  6. (1, −6) and (3, −2)
  7. (−7, −1) and (3, 9)
  8. (2, −2) and (12, 4)

Answer Key 3.2