Distance Formula

Geometry
process

Also known as: coordinate distance, distance between two points

Grade 9-12

View on concept map

A formula for finding the distance between two points in the coordinate plane, derived directly from the Pythagorean theorem. Fundamental for coordinate geometry, navigation (GPS), computer graphics, and any application that measures distance between locations.

Definition

A formula for finding the distance between two points in the coordinate plane, derived directly from the Pythagorean theorem.

๐Ÿ’ก Intuition

Imagine two points on a grid. Draw a horizontal line from one and a vertical line from the other to form a right triangle. The horizontal leg is the difference in x-coordinates, the vertical leg is the difference in y-coordinates, and the hypotenuseโ€”the direct distanceโ€”comes from the Pythagorean theorem. The distance formula is just a^2 + b^2 = c^2 in coordinate clothing.

๐ŸŽฏ Core Idea

The distance formula works because any two points on a coordinate plane form the hypotenuse of a right triangle whose legs are the horizontal and vertical distances. Applying the Pythagorean theorem (a^2 + b^2 = c^2) to those legs gives the direct distance.

Example

Distance from (1, 2) to (4, 6): d = \sqrt{(4-1)^2 + (6-2)^2} = \sqrt{9 + 16} = \sqrt{25} = 5

Formula

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

Notation

d for distance; (x_1, y_1) and (x_2, y_2) are the two points

๐ŸŒŸ Why It Matters

Fundamental for coordinate geometry, navigation (GPS), computer graphics, and any application that measures distance between locations.

๐Ÿ’ญ Hint When Stuck

Label the two points (x_1, y_1) and (x_2, y_2). Subtract the x's and the y's separately, square each difference, add them, and take the square root: d = \sqrt{(x_2-x_1)^2 + (y_2-y_1)^2}. The order of subtraction does not matter because squaring removes the sign.

Formal View

d(P_1, P_2) = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2} in \mathbb{R}^2; generalization: d(P, Q) = \sqrt{\sum_{i=1}^n (q_i - p_i)^2} in \mathbb{R}^n; derived from the Pythagorean theorem

๐Ÿšง Common Stuck Point

The order of subtraction doesn't matter ((x_2 - x_1)^2 = (x_1 - x_2)^2) because squaring eliminates the sign.

โš ๏ธ Common Mistakes

  • Forgetting the square root at the end
  • Subtracting x from y instead of x from x and y from y
  • Not squaring the differences before adding them

Frequently Asked Questions

What is Distance Formula in Math?

A formula for finding the distance between two points in the coordinate plane, derived directly from the Pythagorean theorem.

What is the Distance Formula formula?

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

When do you use Distance Formula?

Label the two points (x_1, y_1) and (x_2, y_2). Subtract the x's and the y's separately, square each difference, add them, and take the square root: d = \sqrt{(x_2-x_1)^2 + (y_2-y_1)^2}. The order of subtraction does not matter because squaring removes the sign.

How Distance Formula Connects to Other Ideas

To understand distance formula, you should first be comfortable with pythagorean theorem, coordinate plane and square roots. Once you have a solid grasp of distance formula, you can move on to midpoint formula, coordinate proofs and equation of circle.