Find the distance between points B(2, 5) and A(2, 2).
To find the distance between two points in a coordinate plane, we can use the distance formula:
d = √((x2 - x1)^2 + (y2 - y1)^2)
In this case, x1 = 2, y1 = 5, x2 = 2, and y2 = 2.
d = √((2 - 2)^2 + (2 -
Show more…