Distance between point (0,0) and (6,8)?
Given - Two points be $A(0,0)$ and $B(6,8)$
Solution- Using formula, $AB = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2}$
Substitute the coordinates:$\sqrt{(6 - 0)^2 + (8 - 0)^2} = \sqrt{36 + 64} = \sqrt{100} = 10$
Therefore, the distance between the two points is $10$ units.