To calculate the distance between the points (1, 4) and (6, 2), we use the distance formula derived from the Pythagorean theorem. The formula for the distance (
d) between two points (x1, y1) and (x2, y2) in a 2D plane is:
d = √((x2 – x1)² + (y2 – y1)²)
Substituting our points into the formula, we have:
- x1 = 1, y1 = 4
- x2 = 6, y2 = 2
d = √((6 – 1)² + (2 – 4)²)
Calculating the differences:
- (6 – 1) = 5
- (2 – 4) = -2
Now square these differences:
- 5² = 25
- (-2)² = 4
Now, sum these squares:
25 + 4 = 29
Finally, take the square root of this sum:
d = √29
The exact distance between the points (1, 4) and (6, 2) is thus
√29, which is approximately 5.39 when calculated to two decimal places.