How To Calculate Distance Between Two Points?

Short tutorial that explains you on how to calculate distance between two points given the coordinates of the ordered pairs.

Finding Distance Between Two Points

To find the distance between two points (x1,y1) and (x2,y2), use the coordinates of the ordered pairs and apply on the distance formula formulated by Pythagorean Theorem.
How To Calculate Distance Between Two Points
Formula:

Distance Between Two Points = (x2-x1)2 + (y2 - y1)2
Distance Between Two Points Formula
In this short tutorial, let us learn how to calculate distance between two points from the coordinates of the ordered pairs given with simple steps.
Example: Given the coordinates (2, 3) and the point (4, 6). How to Calculate Distance Between Two Points?
Given:
x1,y1 = (2, 3)
x2,y2 = (4, 6)
Distance Between Two Points Example
Solution:
Applying the values in the distance formula,
Distance between two points = (x2-x1)2 + (y2 - y1)2
Distance between two points = (4-2)2 + (6 - 3)2
Distance between two points = 13

Distance between two points = 3.60

Distance Between Two Points Result


Related Topics