Answer:
distance = 3.2
Explanation:
Input Data :
Point 1 (xA, yA) = (9, 5)
Point 2 (xB, yB) = (8, 2)
Objective :
Find the distance between two given points on a line?
Formula :
Distance between two points = √(xB − xA) ^ 2 + (yB − yA) ^ 2
Solution :
Distance between two points = √ (8 − 9)^2 + (2− 5) ^ 2
= √(-1)^2 + (-3)^2
= √1 + 9
= √10
= 3.1623
Distance between the two points is 3.1623
3.1623 rounded to the nearest tenth is 3.2
hope this helps and is right :)