Distance between two points

To find the distance between two points (in a 2D plane) we can use the pythagorean theorem:

a^2 + b^2 = c^2

Formula for distance between two points

We can derive this, however, by considering a to be the difference in the x-coordinates of the two points, b to be the difference in the y-coordinates of the two points, and c to be the distance between the two points:

(x_2 - x_1)^2 + (y_2 - y_1)^2 = d^2

Rearranging this to make d the subject gives us the formula for the distance between two points:

d = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2}

Find the distance between the points (3, 4) and (7, 1).

Find the distance between the points (-2, 5) and (4, -1).

flashcards

QuestionAnswer
What theorem is used to find the distance between two points in a 2D plane?The Pythagorean theorem: a^2 + b^2 = c^2
What is the formula for the distance d between two points (x_1, y_1) and (x_2, y_2)?d = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2}
How do you derive the distance formula from the Pythagorean theorem?Let a = x_2 - x_1, b = y_2 - y_1, and c = d. Then (x_2 - x_1)^2 + (y_2 - y_1)^2 = d^2, so d = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2}.
Find the distance between the points (3, 4) and (7, 1).d = \sqrt{(7 - 3)^2 + (1 - 4)^2} = \sqrt{4^2 + (-3)^2} = \sqrt{16 + 9} = \sqrt{25} = 5 units.
Find the distance between the points (-2, 5) and (4, -1).d = \sqrt{(4 - (-2))^2 + (-1 - 5)^2} = \sqrt{6^2 + (-6)^2} = \sqrt{36 + 36} = \sqrt{72} = 6\sqrt{2} units.